diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 14 | ||||
-rw-r--r-- | debian/control | 27 | ||||
-rw-r--r-- | debian/copyright | 10 | ||||
-rwxr-xr-x | debian/rules | 3 |
4 files changed, 41 insertions, 13 deletions
diff --git a/debian/changelog b/debian/changelog index e483b98..d56c213 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +qmenumodel (0.2.6-0ubuntu1) UNRELEASED; urgency=low + + * debian/control: + - Add Vcs-Browser, add comment to developers. + - Update Vcs-Bzr. + - Move libgl-dev as an alternate Build-Depends to libgles2-mesa-dev. + - Add Homepage field. + - Extend binary packages descriptions. + * 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..7539ff0 100644 --- a/debian/control +++ b/debian/control @@ -14,10 +14,14 @@ Build-Depends: debhelper (>= 9.0.0), python3-gi, gir1.2-glib-2.0, dbus-test-runner, - libgles2-mesa-dev, - libgl-dev, + libgles2-mesa-dev | libgl-dev, Standards-Version: 3.9.3 -Vcs-Bzr: lp:qmenumodel +Homepage: https://launchpad.net/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 @@ -27,7 +31,11 @@ Depends: ${shlibs:Depends}, Pre-Depends: ${misc:Pre-Depends} Description: Qt binding for GMenuModel - shared library Qt binding for GMenuModel that allows connecting to a menu model exposed on - D-Bus and presents it as a list model. + D-Bus and presents it as a list model. It can be used to expose indicator or + application menus for applications using the Qt framework. + . + This package contains the shared library required by applications using + QMenuModel. Package: libqmenumodel-dev Section: libdevel @@ -37,7 +45,8 @@ Depends: ${shlibs:Depends}, libqmenumodel0 (= ${binary:Version}), Description: Qt binding for GMenuModel - development files Qt binding for GMenuModel that allows connecting to a menu model exposed on - D-Bus and presents it as a list model. + D-Bus and presents it as a list model. It can be used to expose indicator or + application menus for applications using the Qt framework. . This package contains the development headers for libqmenumodel. @@ -48,6 +57,10 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, libqmenumodel0 (= ${binary:Version}), Description: Qt binding for GMenuModel - QML module - QML module that allows connecting to a menu model exposed on D-Bus and presents - it as a list model. + Qt binding for GMenuModel that allows connecting to a menu model exposed on + D-Bus and presents it as a list model. It can be used to expose indicator or + application menus for applications using the Qt framework. + . + This package contains the QML module for building applications using the + QMenuModel library. 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 |