diff --git a/debian/changelog b/debian/changelog index 6e41450..c56cb76 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +lxqt-policykit (0.10.0-4) unstable; urgency=medium + + * Preparing the upcoming release, switch to experimental + * Added build dependency libqt5xdgiconloader-dev, set + minimum versions + * Bump Standards to 3.9.8, no changes needed + * Fixed VCS fields, using https and plain /git/ + * Added Recommends lxqt-policykit-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 + * Added README.md to docs + * Added manpages + + -- Alf Gaida Mon, 18 Jul 2016 00:24:10 +0200 + lxqt-policykit (0.10.0-3) unstable; urgency=medium * Remove dbg package in favor of dbgsym. diff --git a/debian/control b/debian/control index e09a449..67dff40 100644 --- a/debian/control +++ b/debian/control @@ -8,25 +8,29 @@ Section: x11 Priority: optional Build-Depends: debhelper (>= 9), cmake (>= 3.0.2), - libpolkit-agent-1-dev, - libx11-dev, - pkg-config, + gcc (>= 4:6), + g++ (>= 4:6), libkf5windowsystem-dev, - liblxqt0-dev (>= 0.10.0), + liblxqt0-dev (>= 0.10.96~), + libpolkit-agent-1-dev, libpolkit-qt5-1-dev, 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 -Standards-Version: 3.9.6 -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/lxqt-policykit.git -Vcs-Git: git://anonscm.debian.org/pkg-lxqt/lxqt-policykit.git +Standards-Version: 3.9.8 +Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/lxqt-policykit.git +Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/lxqt-policykit.git Homepage: https://github.com/lxde/lxqt-policykit Package: lxqt-policykit Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} +Recommends: lxqt-policykit-l10n Description: LXQt authentication agent for PolicyKit The lxqt-policykit D-Bus session bus service that is used to bring up authentication dialogs used for obtaining privileges. diff --git a/debian/copyright b/debian/copyright index 67b7a27..ba0c576 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,14 +1,14 @@ -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-policykit Source: https://github.com/lxde/lxqt-policykit Files: * -Copyright: 2012-2015 LXQt team +Copyright: 2012-2016 LXQt team 2010-2012 Razor team License: LGPL-2.1+ Files: debian/* -Copyright: 2014-2015 Alf Gaida +Copyright: 2014-2016 Alf Gaida 2015 Yukiharu YABUKI License: LGPL-2.1+ diff --git a/debian/docs b/debian/docs index 62deb04..0b6e0f3 100644 --- a/debian/docs +++ b/debian/docs @@ -1 +1,2 @@ AUTHORS +README.md diff --git a/debian/lintian-overrides b/debian/lintian-overrides deleted file mode 100644 index 2582e9d..0000000 --- a/debian/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# there will be no manpage in a foreseable future -lxqt-policykit: binary-without-manpage usr/bin/lxqt-policykit-agent - diff --git a/debian/manpages b/debian/manpages new file mode 100644 index 0000000..730ddc8 --- /dev/null +++ b/debian/manpages @@ -0,0 +1 @@ +man/lxqt-policykit-agent.1 diff --git a/debian/rules b/debian/rules index e8abf41..5858ca7 100755 --- a/debian/rules +++ b/debian/rules @@ -1,8 +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