diff options
author | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2013-03-25 11:53:28 -0400 |
---|---|---|
committer | Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> | 2013-03-25 11:53:28 -0400 |
commit | 09c56ca779a8d5411633f9be426c2b534040e578 (patch) | |
tree | c895f501c4462b6c6729abf6918a763fba41dedb /debian | |
parent | 46f476e45c53d0d1f1db17c71f80d5a7f1ff45de (diff) | |
download | qmenumodel-09c56ca779a8d5411633f9be426c2b534040e578.tar.gz qmenumodel-09c56ca779a8d5411633f9be426c2b534040e578.tar.bz2 qmenumodel-09c56ca779a8d5411633f9be426c2b534040e578.zip |
* debian/control:
- Add Vcs-Browser, add comment to developers.
- Update Vcs-Bzr.
* debian/rules:
- Override dh_install to use --fail-missing.
* debian/copyright: should be LGPL-3, not LGPL-3+.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 11 | ||||
-rw-r--r-- | debian/control | 6 | ||||
-rw-r--r-- | debian/copyright | 10 | ||||
-rwxr-xr-x | debian/rules | 3 |
4 files changed, 23 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog index e483b98..b1978cb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +qmenumodel (0.2.6-0ubuntu1) UNRELEASED; urgency=low + + * debian/control: + - Add Vcs-Browser, add comment to developers. + - Update Vcs-Bzr. + * debian/rules: + - Override dh_install to use --fail-missing. + * debian/copyright: should be LGPL-3, not LGPL-3+. + + -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Mon, 25 Mar 2013 11:50:07 -0400 + qmenumodel (0.2.6) quantal; urgency=low * Updated to qt5 final. diff --git a/debian/control b/debian/control index 7dd7c8f..5081063 100644 --- a/debian/control +++ b/debian/control @@ -17,7 +17,11 @@ Build-Depends: debhelper (>= 9.0.0), libgles2-mesa-dev, libgl-dev, Standards-Version: 3.9.3 -Vcs-Bzr: lp:qmenumodel +# If you aren't a member of ~phablet-team but need to upload +# packaging changes, just go ahead. ~phablet-team will notice +# and sync up the code again. +Vcs-Bzr: https://code.launchpad.net/~phablet-team/qmenumodel/trunk +Vcs-Browser: https://bazaar.launchpad.net/~phablet-team/qmenumodel/trunk/files Package: libqmenumodel0 Section: libs diff --git a/debian/copyright b/debian/copyright index 998deae..d4625ab 100644 --- a/debian/copyright +++ b/debian/copyright @@ -2,13 +2,12 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Files: * Copyright: 2013 Canonical Ltd. -License: LGPL-3+ +License: LGPL-3 -License: LGPL-3+ +License: LGPL-3 This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the - License, or (at your option) any later version. + it under the terms of the GNU Lesser General Public License, version 3 + as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -18,7 +17,6 @@ License: LGPL-3+ You should have received a copy of the GNU Lesser General Public License along with this package. If not, see . - . On Debian systems the full text of the GNU Lesser General Public License, version 3 can be found in the file '/usr/share/common-licenses/LGPL-3'. diff --git a/debian/rules b/debian/rules index 62e4b21..86a82dd 100755 --- a/debian/rules +++ b/debian/rules @@ -8,3 +8,6 @@ export DPKG_GENSYMBOLS_CHECK_LEVEL=4 override_dh_makeshlibs: dh_makeshlibs -Xlibqmenumodel-qml.so + +override_dh_install: + dh_install --fail-missing |