From fa91bb20710fcf3b25c17b655ced289a7ab6526d Mon Sep 17 00:00:00 2001 From: Alf Gaida Date: Sun, 15 Feb 2015 18:41:04 +0100 Subject: [PATCH] new version 0.9.0 packages renamed debian $foo fixed source/options added --- debian/changelog | 14 ++---------- debian/control | 48 +++++++++++++++++++++++++++++----------- debian/copyright | 4 ++-- debian/lintian-overrides | 2 +- debian/rules | 6 ++--- debian/source/options | 2 ++ 6 files changed, 44 insertions(+), 32 deletions(-) create mode 100644 debian/source/options diff --git a/debian/changelog b/debian/changelog index 6f793cc..939baf6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,15 +1,5 @@ -lxqt-runner (0.8.0-1) unstable; urgency=medium - - * Upstream version 0.8.0 - * bump standards to 3.9.6 - * Min liblxqt-* version 0.8.0 - * Min Qt version 5.3.2 - * lintian-override for missed manpage added - - -- Alf Gaida Sun, 19 Oct 2014 16:12:51 +0200 - -lxqt-runner (0.7.96-1) unstable; urgency=low +lxqt-runner (0.9.0-1) experimental; urgency=low * Initial release (Closes: #747613) - -- Alf Gaida Mon, 24 Feb 2014 23:41:30 +0100 + -- Alf Gaida Sun, 15 Feb 2015 18:41:53 +0100 diff --git a/debian/control b/debian/control index c9f2e46..727e650 100644 --- a/debian/control +++ b/debian/control @@ -1,17 +1,20 @@ Source: lxqt-runner Section: x11 Priority: optional -Maintainer: Alf Gaida +Maintainer: Debian LXQt Maintainers +Uploaders: + Alf Gaida Build-Depends: - cmake, + cmake (>= 3.0.2), debhelper (>= 9), libx11-dev, pkg-config, - liblxqt-qt5-0-dev (>= 0.8.0), - liblxqt-globalkeys-qt5-0-dev (>= 0.8.0), - liblxqt-globalkeys-ui-qt5-0-dev (>= 0.8.0), + libkf5windowsystem-dev (>= 5.5.0), + liblxqt0-dev (>= 0.9.0), + liblxqt-globalkeys0-dev (>= 0.9.0), + liblxqt-globalkeys-ui0-dev (>= 0.9.0), libqt5x11extras5-dev (>= 5.3.2), - libqt5xdg-dev (>= 1.0.0), + libqt5xdg-dev (>= 1.1.0), qtbase5-private-dev (>= 5.3.2), qtscript5-dev (>= 5.3.2), qttools5-dev (>= 5.3.2), @@ -21,12 +24,10 @@ Homepage: https://github.com/lxde/lxqt-runner #Vcs-Git: git://anonscm.debian.org/collab-maint/lxqt-runner.git #Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/lxqt-runner.git;a=summary -Package: lxqt-runner-qt5 +Package: lxqt-runner Architecture: any -Breaks: - lxqt-runner, -Replaces: - lxqt-runner, +Breaks: lxqt-runner-qt5 (<< 0.9.0) +Replaces: lxqt-runner-qt5 (<< 0.9.0) Depends: ${misc:Depends}, ${shlibs:Depends}, @@ -35,14 +36,35 @@ Description: LXQt program launcher . This package contain LXQt runner. -Package: lxqt-runner-qt5-dbg +Package: lxqt-runner-dbg Architecture: any Section: debug Priority: extra +Breaks: lxqt-runner-qt5-dbg (<< 0.9.0) +Replaces: lxqt-runner-qt5-dbg (<< 0.9.0) Depends: ${misc:Depends}, - lxqt-runner-qt5 (= ${binary:Version}), + lxqt-runner (= ${binary:Version}), Description: LXQt program launcher (debug) Tool used to launch programs quickly by typing their names . This package contain the debugging symbols. + +# ---- to be removed in 2016 ---- + +Package: lxqt-runner-qt5 +Depends: lxqt-runner, ${misc:Depends} +Priority: extra +Section: oldlibs +Architecture: all +Description: lxqt-runner transitional package + Empty package to facilitate upgrades, can be safely removed. + +Package: lxqt-runner-qt5-dbg +Depends: lxqt-runner-dbg, ${misc:Depends} +Priority: extra +Section: oldlibs +Architecture: all +Description: lxqt-runner transitional package (dbg) + Empty package to facilitate upgrades, can be safely removed. + diff --git a/debian/copyright b/debian/copyright index 927750e..d33f12b 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,12 +3,12 @@ Upstream-Name: lxqt-runner Source: https://github.com/lxde/lxqt-panel Files: * -Copyright: 2012-2014 LXQt team +Copyright: 2012-2015 LXQt team 2010-2012 Razor team License: GPL-2.0+ and LGPL-2.1+ Files: debian/* -Copyright: 2014 Alf Gaida +Copyright: 2014-2015 Alf Gaida License: LGPL-2.1+ License: GPL-2.0+ diff --git a/debian/lintian-overrides b/debian/lintian-overrides index 93880fa..cd19093 100644 --- a/debian/lintian-overrides +++ b/debian/lintian-overrides @@ -1,3 +1,3 @@ # there will be no manpage in a foreseable future -lxqt-runner-qt5: binary-without-manpage usr/bin/lxqt-runner +lxqt-runner: binary-without-manpage usr/bin/lxqt-runner diff --git a/debian/rules b/debian/rules index 04797bc..47be3c6 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,5 @@ #!/usr/bin/make -f - #export DH_VERBOSE=1 -export USE_QT5=1 %: @@ -9,7 +7,7 @@ export USE_QT5=1 override_dh_auto_install: - dh_auto_install -- DESTDIR=$(CURDIR)/debian/lxqt-runner-qt5 + dh_auto_install -- DESTDIR=$(CURDIR)/debian/lxqt-runner override_dh_strip: - dh_strip --dbg-package=lxqt-runner-qt5-dbg + dh_strip --dbg-package=lxqt-runner-dbg diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..be5dabe --- /dev/null +++ b/debian/source/options @@ -0,0 +1,2 @@ +tar-ignore=.gitignore +