Merge lp:~timo-jyrinki/ubuntu-ui-toolkit/inline-gles-copy into lp:ubuntu-ui-toolkit

Proposed by Timo Jyrinki
Status: Merged
Merged at revision: 1295
Proposed branch: lp:~timo-jyrinki/ubuntu-ui-toolkit/inline-gles-copy
Merge into: lp:ubuntu-ui-toolkit
Diff against target: 598 lines (+488/-70) (has conflicts)
5 files modified
debian/bileto_convert_to_gles (+17/-0)
debian/changelog (+100/-0)
debian/control (+140/-70)
debian/control.gles (+198/-0)
debian/rules.gles (+33/-0)
Text conflict in debian/changelog
Text conflict in debian/control
To merge this branch: bzr merge lp:~timo-jyrinki/ubuntu-ui-toolkit/inline-gles-copy
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Needs Fixing
Ubuntu SDK team Pending
Review via email: mp+291400@code.launchpad.net

Commit message

Inline GLES packaging.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added file 'debian/bileto_convert_to_gles'
--- debian/bileto_convert_to_gles 1970-01-01 00:00:00 +0000
+++ debian/bileto_convert_to_gles 2016-04-08 18:13:18 +0000
@@ -0,0 +1,17 @@
1#!/bin/sh
2
3# This script converts the debian/ packaging into an alternate source package
4# which builds with GLES. You should copy the source tree into a new directory
5# before running this script (so you have one copy for GLES and one copy for
6# regular GL).
7
8set -eu
9
10mv --verbose debian/control.gles debian/control
11mv --verbose debian/rules.gles debian/rules
12
13sed --in-place 's/^ubuntu-ui-toolkit /ubuntu-ui-toolkit-gles /g' debian/changelog
14
15for gles in libubuntutoolkit5-gles-dev.install libubuntugestures5-gles-dev.install libubuntugestures5-gles.install libubuntutoolkit5-gles.install qml-module-ubuntu-components-gles.install qml-module-ubuntu-components-gles.lintian-overrides; do
16 mv --verbose debian/"$(echo $gles | sed 's/-gles//')" debian/$gles
17done
018
=== modified file 'debian/changelog'
--- debian/changelog 2016-04-08 15:23:50 +0000
+++ debian/changelog 2016-04-08 18:13:18 +0000
@@ -1,3 +1,4 @@
1<<<<<<< TREE
1ubuntu-ui-toolkit (1.3.1918+16.04.20160404-0ubuntu1) xenial; urgency=medium2ubuntu-ui-toolkit (1.3.1918+16.04.20160404-0ubuntu1) xenial; urgency=medium
23
3 [ Benjamin Zeller ] 4 [ Benjamin Zeller ]
@@ -96,6 +97,105 @@
9697
97 -- Zoltan Balogh <zoltan.balogh@canonical.com> Mon, 04 Apr 2016 04:47:18 +000098 -- Zoltan Balogh <zoltan.balogh@canonical.com> Mon, 04 Apr 2016 04:47:18 +0000
9899
100=======
101ubuntu-ui-toolkit (1.3.1918+16.04.20160404-0ubuntu1) xenial; urgency=medium
102
103 [ Benjamin Zeller ]
104 * Register expected warning messages in the tree testcase.
105 * Add testsuite for Tree. Fixes LP: #1549171.
106 * Compile with Qt 5.6. Fixes LP: #1540356
107 * More Qt 5.6 fixes.
108
109 [ Michael Terry ]
110 * Add grabGesture field to SwipeArea.
111 * This field controls whether the SwipeArea takes ownership of the gestures it
112 observes. Fixes LP: #1527387.
113
114 [ Timo Jyrinki ]
115 * Add a test for blocking if packaging not sorted and clean.
116 * More package name transitioning, wrap and sort, fix debian/copyright syntax,
117 update standards-version, fix devel package sections and add/fix
118 lintian-overrides.
119
120 [ Olivier Tilloy ]
121 * Fix dependencies of the transitional dummy package
122 qtdeclarative5-ubuntu-ui-toolkit-plugin. Fixes LP: #1553551.
123
124 [ Christian Dywan ]
125 * Rename qtdeclarative5-*-plugin to qml-module-*. Fixes LP: #1342031.
126 * Require a qtdeclarative5 known to have the tab fence patch.
127 * Reset previous theme version and use UbuntuTestCase in tst_animator.
128 * BottomEdge(Hint) focus and close via keyboard. Fixes LP: #1523825
129 * Add 1.3 version of UbuntuTestCase.
130 * No gdb when running unit tests on armv7l.
131 * Build-depend on python3-debian for wrap-and-sort.
132
133 [ XiaoGuo Liu ]
134 * Fix AdaptivePageLayout documentation.
135
136 [ Tim Peeters ]
137 * Properly disable left/right arrows on sections when at the beginning/end of
138 the list. Fixes LP: #1551356.
139 * Sections and old AppHeader landscape mode. Fixes LP: #1551341.
140 * Set the window color as soon as the window is available, to avoid a
141 flickering background when it is updated later.
142 Fixes LP: #1439133, LP: #1554897
143 * Add theme, style and styleName properties to Dialog and Popover.
144 Fixes LP: #1555548
145 * Update the gallery script to use the new name of the export script.
146 * Export the full list of library paths.
147 * Prevent Page geometry changes in APL when changing Pages in a column.
148 * Fix typo in DatePickerStyle. Fixes: LP #1561440.
149
150 [ Zsombor Egri ]
151 * ListItem focus navigation in ListView and other views.
152 Fixes LP: #1523815, LP: #1536679, LP: #1549733, LP: #1549743
153 * BorromEdge.preloadContent. Fixes LP: #1540454.
154 * Asynchronous loader (AsyncLoader) using incubator, prerequisite for
155 BottomEdge preloading its content. Fixes LP: #1540454.
156 * ListView proxy should not consume up/down key events. Fixes LP: #1554447
157 * Pick up the right style. Fixes LP: #1555797
158 * Label makes sure the color alteration is known by the theming.
159 Fixes LP: #1555784
160 * Fix AsyncLoader tests so they create slightly less amount of elements.
161 * AdaptivePageLayout removes all pages pushed to next columns when
162 addPageToNextColumn() is called. Fixes LP: #1544745
163 * Fix BottomEdge content discarding.
164 * Disconnect enabled signal in Label in destructor, so functor call will not
165 be handled when QQuickItem triggers enabled change. Fixes LP: #1560044.
166
167
168 [ Andrea Bernabei ]
169 * UI Gallery: fix vertical alignment of labels in left panel list items.
170 * ScrollView: add horizontalScrollbar and verticalScrollbar properties to
171 allow custom properties and styling of scrollbars.
172 * Change Scrollbar default top and bottom anchor margins. Tests included.
173
174 [ Albert Astals Cid ]
175 * Use "/" instead of QDir::separator for building paths that will be passed
176 to Qt.
177 * Some string optimizations in the icon searching code
178 * Improve icon file searching. Leave searching in hicolor to the end. Do not
179 search on icon themes we've already searched.
180
181 [ Zoltán Balogh ]
182 * Clean up examples.
183 * Improve unit test plan tool
184
185 [ Florian Boucault ]
186 * Properly disable PerformanceMonitor for toolkit tests only. Re-enable it for
187 everything else.
188
189 [ Pierre Bertet ]
190 * Fix the lists style in the offline documentation. Fixes LP: #1557472.
191 * Make export_qml_dir.sh compatible with ZSH.
192
193 [ CI Train Bot ]
194 * No-change rebuild.
195
196 -- Zoltan Balogh <zoltan.balogh@canonical.com> Mon, 04 Apr 2016 04:47:18 +0000
197
198>>>>>>> MERGE-SOURCE
99ubuntu-ui-toolkit (1.3.1872+16.04.20160330.2-0ubuntu1) xenial; urgency=medium199ubuntu-ui-toolkit (1.3.1872+16.04.20160330.2-0ubuntu1) xenial; urgency=medium
100200
101 [ Tim Peeters ]201 [ Tim Peeters ]
102202
=== modified file 'debian/control'
--- debian/control 2016-04-08 14:07:07 +0000
+++ debian/control 2016-04-08 18:13:18 +0000
@@ -76,76 +76,146 @@
76 suru-icon-theme,76 suru-icon-theme,
77 ttf-ubuntu-font-family,77 ttf-ubuntu-font-family,
78 ubuntu-ui-toolkit-theme (= ${binary:Version}),78 ubuntu-ui-toolkit-theme (= ${binary:Version}),
79 ${misc:Depends},79<<<<<<< TREE
80 ${shlibs:Depends},80 ${misc:Depends},
81Conflicts: qt-components-ubuntu,81 ${shlibs:Depends},
82Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),82Conflicts: qt-components-ubuntu,
83Replaces: qt-components-ubuntu,83Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
84 qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),84Replaces: qt-components-ubuntu,
85Provides: qt-components-ubuntu,85 qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
86Description: Qt Components for Ubuntu - Components QML plugin86Provides: qt-components-ubuntu,
87 Qt Components for Ubuntu offers a set of reusable user interface87Description: Qt Components for Ubuntu - Components QML plugin
88 components for Qt Quick 2 / QML.88 Qt Components for Ubuntu offers a set of reusable user interface
89 .89 components for Qt Quick 2 / QML.
90 This package contains the Ubuntu Components QML plugin.90 .
9191 This package contains the Ubuntu Components QML plugin.
92Package: qml-module-ubuntu-layouts92
93Architecture: any93Package: qml-module-ubuntu-layouts
94Multi-Arch: same94Architecture: any
95Pre-Depends: dpkg (>= 1.15.6~),95Multi-Arch: same
96 ${misc:Pre-Depends},96Pre-Depends: dpkg (>= 1.15.6~),
97Depends: ${misc:Depends},97 ${misc:Pre-Depends},
98 ${shlibs:Depends},98Depends: ${misc:Depends},
99Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),99 ${shlibs:Depends},
100Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),100Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
101Description: Qt Components for Ubuntu - Layouts QML plugin101Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
102 Qt Components for Ubuntu offers a set of reusable user interface102Description: Qt Components for Ubuntu - Layouts QML plugin
103 components for Qt Quick 2 / QML.103 Qt Components for Ubuntu offers a set of reusable user interface
104 .104 components for Qt Quick 2 / QML.
105 This package contains the Ubuntu Layouts QML plugin.105 .
106106 This package contains the Ubuntu Layouts QML plugin.
107Package: qml-module-ubuntu-test107
108Architecture: any108Package: qml-module-ubuntu-test
109Multi-Arch: same109Architecture: any
110Pre-Depends: dpkg (>= 1.15.6~),110Multi-Arch: same
111 ${misc:Pre-Depends},111Pre-Depends: dpkg (>= 1.15.6~),
112Depends: qml-module-qttest | qtdeclarative5-test-plugin,112 ${misc:Pre-Depends},
113 qml-module-ubuntu-components,113Depends: qml-module-qttest | qtdeclarative5-test-plugin,
114 ${misc:Depends},114 qml-module-ubuntu-components,
115 ${shlibs:Depends},115 ${misc:Depends},
116Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),116 ${shlibs:Depends},
117Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),117Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
118Description: Qt Components for Ubuntu - Test QML plugin118Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
119 Qt Components for Ubuntu offers a set of reusable user interface119Description: Qt Components for Ubuntu - Test QML plugin
120 components for Qt Quick 2 / QML.120 Qt Components for Ubuntu offers a set of reusable user interface
121 .121 components for Qt Quick 2 / QML.
122 This package contains the Ubuntu Test QML plugin.122 .
123123 This package contains the Ubuntu Test QML plugin.
124Package: qml-module-ubuntu-performancemetrics124
125Architecture: any125Package: qml-module-ubuntu-performancemetrics
126Multi-Arch: same126Architecture: any
127Pre-Depends: dpkg (>= 1.15.6~),127Multi-Arch: same
128 ${misc:Pre-Depends},128Pre-Depends: dpkg (>= 1.15.6~),
129Depends: ${misc:Depends},129 ${misc:Pre-Depends},
130 ${shlibs:Depends},130Depends: ${misc:Depends},
131Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),131 ${shlibs:Depends},
132Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),132Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
133Description: Qt Components for Ubuntu - PerformanceMetrics QML plugin133Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
134 Qt Components for Ubuntu offers a set of reusable user interface134Description: Qt Components for Ubuntu - PerformanceMetrics QML plugin
135 components for Qt Quick 2 / QML.135 Qt Components for Ubuntu offers a set of reusable user interface
136 .136 components for Qt Quick 2 / QML.
137 This package contains the Ubuntu PerformanceMetrics QML plugin.137 .
138138 This package contains the Ubuntu PerformanceMetrics QML plugin.
139Package: qtdeclarative5-ubuntu-ui-toolkit-plugin139
140Architecture: any140Package: qtdeclarative5-ubuntu-ui-toolkit-plugin
141Section: oldlibs141Architecture: any
142Depends: qml-module-ubuntu-components,142Section: oldlibs
143 qml-module-ubuntu-layouts,143Depends: qml-module-ubuntu-components,
144 qml-module-ubuntu-performancemetrics,144 qml-module-ubuntu-layouts,
145 qml-module-ubuntu-test,145 qml-module-ubuntu-performancemetrics,
146 ${misc:Depends},146 qml-module-ubuntu-test,
147Description: Transitional dummy package for Ubuntu UI Toolkit QML plugin147 ${misc:Depends},
148 This package contains the Ubuntu Components QML plugin.148Description: Transitional dummy package for Ubuntu UI Toolkit QML plugin
149 This package contains the Ubuntu Components QML plugin.
150=======
151 ${misc:Depends},
152 ${shlibs:Depends},
153Conflicts: qt-components-ubuntu,
154Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
155Replaces: qt-components-ubuntu,
156 qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
157Provides: qt-components-ubuntu,
158Description: Qt Components for Ubuntu - Components QML plugin
159 Qt Components for Ubuntu offers a set of reusable user interface
160 components for Qt Quick 2 / QML.
161 .
162 This package contains the Ubuntu Components QML plugin.
163
164Package: qml-module-ubuntu-layouts
165Architecture: any
166Multi-Arch: same
167Pre-Depends: dpkg (>= 1.15.6~),
168 ${misc:Pre-Depends},
169Depends: ${misc:Depends},
170 ${shlibs:Depends},
171Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
172Description: Qt Components for Ubuntu - Layouts QML plugin
173 Qt Components for Ubuntu offers a set of reusable user interface
174 components for Qt Quick 2 / QML.
175 .
176 This package contains the Ubuntu Layouts QML plugin.
177
178Package: qml-module-ubuntu-test
179Architecture: any
180Multi-Arch: same
181Pre-Depends: dpkg (>= 1.15.6~),
182 ${misc:Pre-Depends},
183Depends: qml-module-qttest | qtdeclarative5-test-plugin,
184 qml-module-ubuntu-components,
185 ${misc:Depends},
186 ${shlibs:Depends},
187Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
188Description: Qt Components for Ubuntu - Test QML plugin
189 Qt Components for Ubuntu offers a set of reusable user interface
190 components for Qt Quick 2 / QML.
191 .
192 This package contains the Ubuntu Test QML plugin.
193
194Package: qml-module-ubuntu-performancemetrics
195Architecture: any
196Multi-Arch: same
197Pre-Depends: dpkg (>= 1.15.6~),
198 ${misc:Pre-Depends},
199Depends: ${misc:Depends},
200 ${shlibs:Depends},
201Replaces: qtdeclarative5-ubuntu-ui-toolkit-plugin (<< ${source:Version}),
202Description: Qt Components for Ubuntu - PerformanceMetrics QML plugin
203 Qt Components for Ubuntu offers a set of reusable user interface
204 components for Qt Quick 2 / QML.
205 .
206 This package contains the Ubuntu PerformanceMetrics QML plugin.
207
208Package: qtdeclarative5-ubuntu-ui-toolkit-plugin
209Architecture: any
210Section: oldlibs
211Depends: qml-module-ubuntu-components,
212 qml-module-ubuntu-layouts,
213 qml-module-ubuntu-performancemetrics,
214 qml-module-ubuntu-test,
215 ${misc:Depends},
216Description: Transitional dummy package for Ubuntu UI Toolkit QML plugin
217 This package contains the Ubuntu Components QML plugin.
218>>>>>>> MERGE-SOURCE
149219
150Package: libubuntugestures5220Package: libubuntugestures5
151Architecture: any221Architecture: any
152222
=== added file 'debian/control.gles'
--- debian/control.gles 1970-01-01 00:00:00 +0000
+++ debian/control.gles 2016-04-08 18:13:18 +0000
@@ -0,0 +1,198 @@
1Source: ubuntu-ui-toolkit-gles
2Priority: optional
3Section: libs
4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5Build-Depends: accountsservice,
6 dbus,
7 dbus-test-runner,
8 debhelper (>= 9.0.0),
9 devscripts,
10 gdb,
11 language-pack-en-base,
12 libdbus-1-dev,
13 libfontconfig1-dev,
14 libfreetype6-dev,
15 libgles2-mesa-dev,
16 libglib2.0-dev,
17 libinput-dev,
18 liblttng-ust-dev,
19 libmtdev-dev,
20 libnih-dbus-dev,
21 libqt5gui5-gles,
22 libqt5organizer5,
23 libqt5quick5-gles,
24 libqt5quickparticles5-gles,
25 libqt5quickwidgets5-gles,
26 libqt5sql5-sqlite,
27 libqt5svg5-dev,
28 libudev-dev,
29 libx11-dev[!armhf],
30 libxcb1-dev[!armhf],
31 libxi-dev[!armhf],
32 libxkbcommon-dev,
33 libxrender-dev,
34 locales,
35 python-autopilot (>= 1.4),
36 python3-sphinx,
37 python3:any,
38 python:any,
39 qml-module-qt-labs-settings,
40 qml-module-qtgraphicaleffects,
41 qml-module-qtqml-models2,
42 qml-module-qtquick-layouts,
43 qml-module-qtquick-localstorage,
44 qml-module-qtquick-window2,
45 qml-module-qtquick2,
46 qml-module-qttest,
47 qtbase5-dev-tools,
48 qtbase5-gles-dev,
49 qtbase5-private-gles-dev,
50 qtdeclarative5-dev-tools,
51 qtdeclarative5-doc-html,
52 qtdeclarative5-private-dev,
53 qtdeclarative5-qtfeedback-plugin,
54 qtdeclarative5-unity-action-plugin (>= 1.1.0),
55 qtmultimedia5-doc-html,
56 qtpim5-dev,
57 qtscript5-doc-html,
58 qtsvg5-doc-html,
59 qtwebkit5-doc-html,
60 suru-icon-theme,
61 unity-action-doc,
62 uuid-runtime,
63 xvfb,
64Standards-Version: 3.9.7
65Homepage: https://launchpad.net/ubuntu-ui-toolkit
66
67Package: qtdeclarative5-ubuntu-ui-toolkit-plugin-gles
68Section: oldlibs
69Architecture: amd64 i386
70Multi-Arch: same
71Depends: qml-module-ubuntu-components-gles,
72 ${misc:Depends},
73Description: Transitional package for Qt Components for Ubuntu, OpenGLES
74 Qt Components for Ubuntu offers a set of reusable user interface
75 components for Qt Quick 2 / QML.
76 .
77 This is a transitional package that is safe to remove.
78 .
79 This is the OpenGL ES version for amd64 and i386.
80
81Package: qml-module-ubuntu-components-gles
82Architecture: amd64 i386
83Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin-gles (<< ${source:Version}),
84Conflicts: qml-module-ubuntu-components,
85 qtdeclarative5-ubuntu-ui-toolkit-plugin,
86Replaces: qml-module-ubuntu-components,
87 qtdeclarative5-ubuntu-ui-toolkit-plugin,
88 qtdeclarative5-ubuntu-ui-toolkit-plugin-gles (<< ${source:Version}),
89Provides: qml-module-ubuntu-components,
90Multi-Arch: same
91Pre-Depends: dpkg (>= 1.15.6~),
92 ${misc:Pre-Depends},
93Depends: libqt5svg5,
94 libubuntugestures5-gles (= ${binary:Version}),
95 libubuntutoolkit5-gles (= ${binary:Version}),
96 qml-module-qtfeedback,
97 qml-module-qtgraphicaleffects,
98 qml-module-qtquick-layouts,
99 qml-module-qtquick-window2,
100 qml-module-qtquick2,
101 qtdeclarative5-unity-action-plugin (>= 1.1.0),
102 suru-icon-theme,
103 ttf-ubuntu-font-family,
104 ubuntu-ui-toolkit-theme,
105 ${misc:Depends},
106 ${shlibs:Depends},
107Description: Qt Components for Ubuntu - QML plugin - GLES
108 Qt Components for Ubuntu offers a set of reusable user interface
109 components for Qt Quick 2 / QML.
110 .
111 This package contains the Ubuntu Components QML plugin (built with
112 the OpenGLES backend).
113
114Package: qml-module-ubuntu-performancemetrics-gles
115Architecture: amd64 i386
116Breaks: qtdeclarative5-ubuntu-ui-toolkit-plugin-gles (<< ${source:Version}),
117Conflicts: qml-module-ubuntu-performancemetrics,
118Replaces: qml-module-ubuntu-performancemetrics,
119 qtdeclarative5-ubuntu-ui-toolkit-plugin-gles (<< ${source:Version}),
120Provides: qml-module-ubuntu-performancemetrics,
121Multi-Arch: same
122Pre-Depends: dpkg (>= 1.15.6~),
123 ${misc:Pre-Depends},
124Depends: ${misc:Depends},
125 ${shlibs:Depends},
126Description: Qt Components for Ubuntu - PerformanceMetrics QML plugin - GLES
127 Qt Components for Ubuntu offers a set of reusable user interface
128 components for Qt Quick 2 / QML.
129 .
130 This package contains the Ubuntu PerformanceMetrics QML plugin.
131 .
132 This is the OpenGL ES version for amd64 and i386.
133
134Package: libubuntugestures5-gles
135Architecture: amd64 i386
136Conflicts: libubuntugestures5,
137Replaces: libubuntugestures5,
138Provides: libubuntugestures5,
139Multi-Arch: same
140Pre-Depends: dpkg (>= 1.15.6~),
141 ${misc:Pre-Depends},
142Depends: ${misc:Depends},
143 ${shlibs:Depends},
144Description: Gestures library for Ubuntu UI Toolkit - GLES
145 Library supporting Gesture recognition for Ubuntu UI Toolkit
146 Classes for SwipeArea, and for Ubuntu Gestures in general.
147 .
148 This is the OpenGL ES version for amd64 and i386.
149
150Package: libubuntugestures5-gles-dev
151Architecture: amd64 i386
152Conflicts: libubuntugestures5-dev,
153Replaces: libubuntugestures5-dev,
154Provides: libubuntugestures5-dev,
155Multi-Arch: same
156Section: libdevel
157Pre-Depends: dpkg (>= 1.15.6~),
158 ${misc:Pre-Depends},
159Depends: ${misc:Depends},
160 ${shlibs:Depends},
161Description: Ubuntu gestures library development files - GLES
162 This package contains the development files for
163 Ubuntu gestures library with SwipeArea
164 .
165 This is the OpenGL ES version for amd64 and i386.
166
167Package: libubuntutoolkit5-gles
168Architecture: amd64 i386
169Multi-Arch: same
170Conflicts: libubuntutoolkit5,
171Replaces: libubuntutoolkit5,
172Provides: libubuntutoolkit5,
173Pre-Depends: dpkg (>= 1.15.6~),
174 ${misc:Pre-Depends},
175Depends: ${misc:Depends},
176 ${shlibs:Depends},
177Description: Ubuntu toolkit common library for Ubuntu UI Toolkit - GLES
178 Contains components and helper classes that are shared between the
179 Ubuntu QML plugins
180 .
181 This is the OpenGL ES version for amd64 and i386.
182
183Package: libubuntutoolkit5-gles-dev
184Architecture: amd64 i386
185Multi-Arch: same
186Section: libdevel
187Conflicts: libubuntutoolkit5-dev,
188Replaces: libubuntutoolkit5-dev,
189Provides: libubuntutoolkit5-dev,
190Pre-Depends: dpkg (>= 1.15.6~),
191 ${misc:Pre-Depends},
192Depends: ${misc:Depends},
193 ${shlibs:Depends},
194Description: Ubuntu toolkit common library development files - GLES
195 This package contains the development files for
196 Ubuntu toolkit common library
197 .
198 This is the OpenGL ES version for amd64 and i386.
0199
=== added file 'debian/rules.gles'
--- debian/rules.gles 1970-01-01 00:00:00 +0000
+++ debian/rules.gles 2016-04-08 18:13:18 +0000
@@ -0,0 +1,33 @@
1#!/usr/bin/make -f
2
3# Uncomment this to turn on verbose mode.
4# export DH_VERBOSE=1
5export QT_SELECT := qt5
6export DPKG_GENSYMBOLS_CHECK_LEVEL=4
7export QMAKEFEATURES=$(CURDIR)/features
8DEB_HOST_MULTI_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_MULTIARCH)
9DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
10
11CONFIGURE_SWITCHES = "-r" \
12 "ROOT_SOURCE_DIR=$(CURDIR)" \
13 "ROOT_BUILD_DIR=$(CURDIR)"
14
15%:
16 dh $@ --parallel
17
18override_dh_auto_configure:
19 qmake -r
20 #dh_auto_configure -- $(CONFIGURE_SWITCHES)
21
22override_dh_auto_test:
23ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
24 mkdir -p debian/tmp/home/run
25 chmod +x tests/xvfb.sh
26 tests/xvfb.sh dh_auto_test || exit $?
27endif
28
29override_dh_auto_install:
30 dh_auto_install --destdir=debian/tmp
31
32override_dh_shlibdeps:
33 dh_shlibdeps -l/usr/lib/$(DEB_HOST_MULTI_ARCH)/

Subscribers

People subscribed via source and target branches

to status/vote changes: