From dd32e345e79588076ffe49c454304cfb9fbbd86b Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Wed, 10 Aug 2016 23:07:20 +0200 Subject: [PATCH] Added libfile-mimeinfo-perl as dependency, we really need this, a recommendation is not enough. Thanks tsujan. Bumped standards to 3.9.8, no changes needed Bump years in copyright Added README to debian/docs Added hardening=+all Exported LC_ALL=C.UTF-8 - define language settings for reproducible builds Fixed VCS-fields, use https and plain /git/ Fixed copyrights Format field to https --- debian/changelog | 15 +++++++++++++++ debian/control | 9 +++++---- debian/copyright | 6 +++--- debian/docs | 1 + debian/rules | 8 +++++++- 5 files changed, 31 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 193049f..cfd963a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +libqtxdg (1.3.0-4) unstable; urgency=medium + + * Added libfile-mimeinfo-perl as dependency, we really need this, a + recommendation is not enough. Thanks tsujan. + * Bumped standards to 3.9.8, no changes needed + * Bump years in copyright + * Added README to debian/docs + * Added hardening=+all + * Exported LC_ALL=C.UTF-8 - define language settings for + reproducible builds + * Fixed VCS-fields, use https and plain /git/ + * Fixed copyrights Format field to https + + -- Alf Gaida Wed, 10 Aug 2016 23:06:12 +0200 + libqtxdg (1.3.0-3) unstable; urgency=medium * Remove dbg package in favor of dbgsym. diff --git a/debian/control b/debian/control index 595b4bd..47363aa 100644 --- a/debian/control +++ b/debian/control @@ -12,16 +12,17 @@ Build-Depends: cmake (>= 3.0.2), qtbase5-private-dev, qttools5-dev, qttools5-dev-tools -Standards-Version: 3.9.6 -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/libqtxdg.git/?h=debian/sid -Vcs-Git: git://anonscm.debian.org/pkg-lxqt/libqtxdg.git -b debian/sid +Standards-Version: 3.9.8 +Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/libqtxdg.git/?h=debian/sid +Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/libqtxdg.git -b debian/sid Homepage: https://github.com/lxde/libqtxdg Package: libqt5xdg1 Architecture: any Multi-Arch: same Depends: ${shlibs:Depends}, - ${misc:Depends} + ${misc:Depends}, + libfile-mimeinfo-perl Pre-Depends: ${misc:Pre-Depends} Provides: libqt5xdg Description: Implementation of the XDG Specifications for Qt, libs diff --git a/debian/copyright b/debian/copyright index ec3ee77..41d1fef 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: libqtxdg Source: https://github.com/lxde/libqtxdg @@ -12,8 +12,8 @@ Copyright: 2013 Digia Plc and/or its subsidiary(-ies) License: LGPL-2.1-or-3-with-Digia-1.1-exception Files: debian/* -Copyright: 2014-2015 ChangZhuo Chen (陳昌倬) - 2013-2015 Alf Gaida +Copyright: 2014-2016 ChangZhuo Chen (陳昌倬) + 2013-2016 Alf Gaida 2015 Andrew Lee (李健秋) License: LGPL-2.1+ diff --git a/debian/docs b/debian/docs index 62deb04..6d22dc0 100644 --- a/debian/docs +++ b/debian/docs @@ -1 +1,2 @@ AUTHORS +README \ No newline at end of file diff --git a/debian/rules b/debian/rules index 9b24d4d..d310e6d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,10 +1,16 @@ #!/usr/bin/make -f #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 \ --parallel \ --fail-missing + +override_dh_auto_configure: + dh_auto_configure -- \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo +