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
This commit is contained in:
parent
3e662bc8e7
commit
dd32e345e7
15
debian/changelog
vendored
15
debian/changelog
vendored
@ -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 <agaida@siduction.org> Wed, 10 Aug 2016 23:06:12 +0200
|
||||||
|
|
||||||
libqtxdg (1.3.0-3) unstable; urgency=medium
|
libqtxdg (1.3.0-3) unstable; urgency=medium
|
||||||
|
|
||||||
* Remove dbg package in favor of dbgsym.
|
* Remove dbg package in favor of dbgsym.
|
||||||
|
9
debian/control
vendored
9
debian/control
vendored
@ -12,16 +12,17 @@ Build-Depends: cmake (>= 3.0.2),
|
|||||||
qtbase5-private-dev,
|
qtbase5-private-dev,
|
||||||
qttools5-dev,
|
qttools5-dev,
|
||||||
qttools5-dev-tools
|
qttools5-dev-tools
|
||||||
Standards-Version: 3.9.6
|
Standards-Version: 3.9.8
|
||||||
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/libqtxdg.git/?h=debian/sid
|
Vcs-Browser: https://anonscm.debian.org/git/pkg-lxqt/libqtxdg.git/?h=debian/sid
|
||||||
Vcs-Git: git://anonscm.debian.org/pkg-lxqt/libqtxdg.git -b debian/sid
|
Vcs-Git: https://anonscm.debian.org/git/pkg-lxqt/libqtxdg.git -b debian/sid
|
||||||
Homepage: https://github.com/lxde/libqtxdg
|
Homepage: https://github.com/lxde/libqtxdg
|
||||||
|
|
||||||
Package: libqt5xdg1
|
Package: libqt5xdg1
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Multi-Arch: same
|
Multi-Arch: same
|
||||||
Depends: ${shlibs:Depends},
|
Depends: ${shlibs:Depends},
|
||||||
${misc:Depends}
|
${misc:Depends},
|
||||||
|
libfile-mimeinfo-perl
|
||||||
Pre-Depends: ${misc:Pre-Depends}
|
Pre-Depends: ${misc:Pre-Depends}
|
||||||
Provides: libqt5xdg
|
Provides: libqt5xdg
|
||||||
Description: Implementation of the XDG Specifications for Qt, libs
|
Description: Implementation of the XDG Specifications for Qt, libs
|
||||||
|
6
debian/copyright
vendored
6
debian/copyright
vendored
@ -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
|
Upstream-Name: libqtxdg
|
||||||
Source: https://github.com/lxde/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
|
License: LGPL-2.1-or-3-with-Digia-1.1-exception
|
||||||
|
|
||||||
Files: debian/*
|
Files: debian/*
|
||||||
Copyright: 2014-2015 ChangZhuo Chen (陳昌倬) <czchen@debian.org>
|
Copyright: 2014-2016 ChangZhuo Chen (陳昌倬) <czchen@debian.org>
|
||||||
2013-2015 Alf Gaida <agaida@siduction.org>
|
2013-2016 Alf Gaida <agaida@siduction.org>
|
||||||
2015 Andrew Lee (李健秋) <ajqlee@debian.org>
|
2015 Andrew Lee (李健秋) <ajqlee@debian.org>
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
|
|
||||||
|
1
debian/docs
vendored
1
debian/docs
vendored
@ -1 +1,2 @@
|
|||||||
AUTHORS
|
AUTHORS
|
||||||
|
README
|
8
debian/rules
vendored
8
debian/rules
vendored
@ -1,10 +1,16 @@
|
|||||||
#!/usr/bin/make -f
|
#!/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_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||||
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh ${@} --buildsystem cmake \
|
dh ${@} --buildsystem cmake \
|
||||||
--parallel \
|
--parallel \
|
||||||
--fail-missing
|
--fail-missing
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
dh_auto_configure -- \
|
||||||
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user