Preparing the upcoming release, switch to experimental
Added new build dependendies: - gcc (>= 4:6) - g++ (>= 4:6) - libqt5xdgiconloader-dev (>= 1.3.1~) Minimum versions added Added Recommends lxqt-powermanagement-l10n Exported LC_ALL=C.UTF-8, make builds reproducible Added translation control to rules Set CMAKE_BUILD_TYPE=RelWithDebInfo Exported LC_ALL=C.UTF-8, make builds reproducible
This commit is contained in:
parent
59b51e5bcc
commit
c40287d8aa
16
debian/changelog
vendored
16
debian/changelog
vendored
@ -1,3 +1,19 @@
|
|||||||
|
lxqt-powermanagement (0.10.0-5) experimental; urgency=medium
|
||||||
|
|
||||||
|
* Preparing the upcoming release, switch to experimental
|
||||||
|
* Added new build dependendies:
|
||||||
|
- gcc (>= 4:6)
|
||||||
|
- g++ (>= 4:6)
|
||||||
|
- libqt5xdgiconloader-dev (>= 1.3.1~)
|
||||||
|
* Minimum versions added
|
||||||
|
* Added Recommends lxqt-powermanagement-l10n
|
||||||
|
* Exported LC_ALL=C.UTF-8
|
||||||
|
* Added translation control to rules
|
||||||
|
* Set CMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
* Exported LC_ALL=C.UTF-8, make builds reproducible
|
||||||
|
|
||||||
|
-- Alf Gaida <agaida@siduction.org> Mon, 18 Jul 2016 23:58:20 +0200
|
||||||
|
|
||||||
lxqt-powermanagement (0.10.0-4) unstable; urgency=medium
|
lxqt-powermanagement (0.10.0-4) unstable; urgency=medium
|
||||||
|
|
||||||
* Added Recommends: upower (Closes: #828697)
|
* Added Recommends: upower (Closes: #828697)
|
||||||
|
14
debian/control
vendored
14
debian/control
vendored
@ -7,12 +7,15 @@ Section: x11
|
|||||||
Priority: optional
|
Priority: optional
|
||||||
Build-Depends: debhelper (>= 9),
|
Build-Depends: debhelper (>= 9),
|
||||||
cmake (>= 3.0.2),
|
cmake (>= 3.0.2),
|
||||||
|
gcc (>= 4:6),
|
||||||
|
g++ (>= 4:6),
|
||||||
libkf5solid-dev,
|
libkf5solid-dev,
|
||||||
libkf5windowsystem-dev,
|
libkf5windowsystem-dev,
|
||||||
liblxqt0-dev (>= 0.10.0),
|
liblxqt0-dev (>= 0.10.96~),
|
||||||
libqt5svg5-dev,
|
libqt5svg5-dev,
|
||||||
libqt5x11extras5-dev,
|
libqt5x11extras5-dev,
|
||||||
libqt5xdg-dev (>= 1.3.0),
|
libqt5xdg-dev (>= 1.3.1~),
|
||||||
|
libqt5xdgiconloader-dev (>= 1.3.1~),
|
||||||
libx11-dev,
|
libx11-dev,
|
||||||
libx11-xcb-dev,
|
libx11-xcb-dev,
|
||||||
libxcb-dpms0-dev,
|
libxcb-dpms0-dev,
|
||||||
@ -22,15 +25,16 @@ Build-Depends: debhelper (>= 9),
|
|||||||
qttools5-dev,
|
qttools5-dev,
|
||||||
qttools5-dev-tools
|
qttools5-dev-tools
|
||||||
Standards-Version: 3.9.8
|
Standards-Version: 3.9.8
|
||||||
Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lxqt-powermanagement.git/?h=debian/sid
|
Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lxqt-powermanagement.git/?h=debian/experimental
|
||||||
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-powermanagement.git -b debian/sid
|
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-powermanagement.git -b debian/experimental
|
||||||
Homepage: https://github.com/lxde/lxqt-powermanagement
|
Homepage: https://github.com/lxde/lxqt-powermanagement
|
||||||
|
|
||||||
Package: lxqt-powermanagement
|
Package: lxqt-powermanagement
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends},
|
Depends: ${misc:Depends},
|
||||||
${shlibs:Depends}
|
${shlibs:Depends}
|
||||||
Recommends: upower
|
Recommends: lxqt-powermanagement-l10n,
|
||||||
|
upower
|
||||||
Description: power management module for LXQt
|
Description: power management module for LXQt
|
||||||
The Power management module for LXQt.
|
The Power management module for LXQt.
|
||||||
.
|
.
|
||||||
|
2
debian/gbp.conf
vendored
2
debian/gbp.conf
vendored
@ -1,4 +1,4 @@
|
|||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
debian-branch = debian/sid
|
debian-branch = debian/experimental
|
||||||
upstream-branch = upstream/latest
|
upstream-branch = upstream/latest
|
||||||
pristine-tar = True
|
pristine-tar = True
|
||||||
|
13
debian/rules
vendored
13
debian/rules
vendored
@ -1,9 +1,16 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
#export DH_VERBOSE=1
|
# export DH_VERBOSE=1
|
||||||
|
|
||||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
export LC_ALL=C.UTF-8
|
||||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh ${@} --buildsystem cmake \
|
dh ${@} --buildsystem cmake\
|
||||||
--parallel
|
--parallel
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
dh_auto_configure -- \
|
||||||
|
-DPULL_TRANSLATIONS=OFF\
|
||||||
|
-DUPDATE_TRANSLATIONS=OFF\
|
||||||
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user