Bump Standards to 3.9.7
Secured VCS-Fields Fix years in copyright Add hardening=+all Fix new grep behaviour in LXQtTranslateDesktop.cmake
This commit is contained in:
parent
3e328b47c6
commit
36b39f450e
10
debian/changelog
vendored
10
debian/changelog
vendored
@ -1,3 +1,13 @@
|
||||
qps (1.10.16+20151210-2) unstable; urgency=medium
|
||||
|
||||
* Bump Standards to 3.9.7
|
||||
* Secured VCS-Fields
|
||||
* Fix years in copyright
|
||||
* Add hardening=+all
|
||||
* Fix new grep behaviour in LXQtTranslateDesktop.cmake
|
||||
|
||||
-- Alf Gaida <agaida@siduction.org> Thu, 25 Feb 2016 23:37:08 +0100
|
||||
|
||||
qps (1.10.16+20151210-1) unstable; urgency=medium
|
||||
|
||||
* Cherry-picking upstream version 1.10.16+20151210.
|
||||
|
6
debian/control
vendored
6
debian/control
vendored
@ -11,9 +11,9 @@ Build-Depends: cmake (>= 3.0.2),
|
||||
libqt5x11extras5-dev,
|
||||
qttools5-dev,
|
||||
qttools5-dev-tools
|
||||
Standards-Version: 3.9.6
|
||||
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/qps.git/?h=debian/sid
|
||||
Vcs-Git: git://anonscm.debian.org/pkg-lxqt/qps.git -b debian/sid
|
||||
Standards-Version: 3.9.7
|
||||
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-lxqt/qps.git/?h=debian/sid
|
||||
Vcs-Git: https://anonscm.debian.org/cgit/pkg-lxqt/qps.git -b debian/sid
|
||||
Homepage: https://github.com/qtdesktop/qps
|
||||
|
||||
Package: qps
|
||||
|
4
debian/copyright
vendored
4
debian/copyright
vendored
@ -35,8 +35,8 @@ Copyright: 2003 Justin Karneges
|
||||
License: LGPL-2.1+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2015 Alf Gaida <agaida@siduction.org>
|
||||
2015 ChangZhuo Chen (陳昌倬) <czchen@debian.org>
|
||||
Copyright: 2015-2016 Alf Gaida <agaida@siduction.org>
|
||||
2015-2016 ChangZhuo Chen (陳昌倬) <czchen@debian.org>
|
||||
License: GPL-2.0+
|
||||
|
||||
License: GPL-2.0
|
||||
|
23
debian/patches/fix-grep-behaviour.patch
vendored
Normal file
23
debian/patches/fix-grep-behaviour.patch
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
Description: fix the new grep behaviour
|
||||
No need to care about upstream, i fixed it in upstream some days ago
|
||||
Author: Alf Gaida <agaida@siduction.org>
|
||||
|
||||
--- qps-1.10.16+20151210.orig/cmake/LXQtTranslateDesktop.cmake
|
||||
+++ qps-1.10.16+20151210/cmake/LXQtTranslateDesktop.cmake
|
||||
@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT)
|
||||
if (_translations)
|
||||
list(SORT _translations)
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
- COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
- COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
|
||||
+ COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
+ COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile}
|
||||
COMMENT "Generating ${_fileName}${_fileExt}"
|
||||
)
|
||||
else()
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
- COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
+ COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
COMMENT "Generating ${_fileName}${_fileExt}"
|
||||
)
|
||||
endif()
|
1
debian/patches/series
vendored
Normal file
1
debian/patches/series
vendored
Normal file
@ -0,0 +1 @@
|
||||
fix-grep-behaviour.patch
|
1
debian/rules
vendored
1
debian/rules
vendored
@ -1,6 +1,7 @@
|
||||
#!/usr/bin/make -f
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
%:
|
||||
|
Loading…
x
Reference in New Issue
Block a user