diff --git a/debian/changelog b/debian/changelog index 840ff6d..8c1c1b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +lxqt-openssh-askpass (0.10.0-7) experimental; urgency=medium + + * Preparing the upcoming release, switch to experimental + * Added build dependency libqt5xdgiconloader-dev, set + minimum versions + * Added Recommends lxqt-notificationd-l10n + * Fixed copyright Format field + * Bumped copyright years + * Added translation control to rules + * Set CMAKE_BUILD_TYPE=RelWithDebInfo + * Exported LC_ALL=C.UTF-8, make builds reproducible + + -- Alf Gaida Sun, 17 Jul 2016 20:16:25 +0200 + lxqt-openssh-askpass (0.10.0-6) unstable; urgency=medium * Added debian/{postinst,prerm} (Closes: 827912) diff --git a/debian/control b/debian/control index d5f60b3..7cd92d3 100644 --- a/debian/control +++ b/debian/control @@ -9,17 +9,20 @@ Section: x11 Priority: optional Build-Depends: debhelper (>= 9), cmake (>= 3.0.2), + gcc (>= 4:6), + g++ (>= 4:6), libkf5windowsystem-dev, - liblxqt0-dev (>= 0.10.0), + liblxqt0-dev (>= 0.10.96~), libqt5x11extras5-dev, - libqt5xdg-dev (>= 1.3.0), + libqt5xdg-dev (>= 1.3.1~), + libqt5xdgiconloader-dev (>= 1.3.1~), libx11-dev, pkg-config, qttools5-dev, - qttools5-dev-tools, + qttools5-dev-tools Standards-Version: 3.9.8 -Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lxqt-openssh-askpass.git/?h=debian/sid -Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-openssh-askpass.git -b debian/sid +Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lxqt-openssh-askpass.git/?h=debian/experimental +Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-openssh-askpass.git -b debian/experimental Homepage: https://github.com/lxde/lxqt-openssh-askpass Package: lxqt-openssh-askpass @@ -27,6 +30,7 @@ Architecture: any Provides: ssh-askpass Depends: ${misc:Depends}, ${shlibs:Depends}, +Recommends: lxqt-openssh-askpass-l10n Description: OpenSSH user/password GUI dialog for LXQt This module handles openssh security password access for LXQt. The openssh askpass module, will perform security tast over scale access privilegies. diff --git a/debian/copyright b/debian/copyright index 154f461..1f01d75 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lxqt-openssh-askpass Source: https://github.com/lxde/lxqt-openssh-askpass diff --git a/debian/rules b/debian/rules index 056be6c..5858ca7 100755 --- a/debian/rules +++ b/debian/rules @@ -1,9 +1,16 @@ #!/usr/bin/make -f -#export DH_VERBOSE=1 +# export DH_VERBOSE=1 +export LC_ALL=C.UTF-8 export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed export DEB_BUILD_MAINT_OPTIONS = hardening=+all %: - dh ${@} --buildsystem cmake \ + dh ${@} --buildsystem cmake\ --parallel + +override_dh_auto_configure: + dh_auto_configure -- \ + -DPULL_TRANSLATIONS=OFF\ + -DUPDATE_TRANSLATIONS=OFF\ + -DCMAKE_BUILD_TYPE=RelWithDebInfo