--- gsettings-qt-0.0+13.10.20130720.orig/debian/copyright +++ gsettings-qt-0.0+13.10.20130720/debian/copyright @@ -0,0 +1,21 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: gsettings-qt +Source: https://launchpad.net/gsettings-qt + +Files: * +Copyright: 2013 Canonical Ltd. +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; version 3. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the complete text of the GNU Lesser General + Public License can be found in "/usr/share/common-licenses/LGPL-3". --- gsettings-qt-0.0+13.10.20130720.orig/debian/control +++ gsettings-qt-0.0+13.10.20130720/debian/control @@ -0,0 +1,28 @@ +Source: gsettings-qt +Priority: extra +Maintainer: Ubuntu Desktop Team +Build-Depends: debhelper (>= 9), + pkg-config, + libglib2.0-dev, + qtchooser, + qt5-qmake, + qtbase5-dev, + qtdeclarative5-dev, + qtdeclarative5-test-plugin, + qtdeclarative5-qtquick2-plugin, + xvfb, +Standards-Version: 3.9.4 +Section: libs +Homepage: https://launchpad.net/gsettings-qt +# If you aren't a member of ~system-settings-touch but need to upload packaging +# changes, just go ahead. A member of ~system-settings-touch will notice and +# sync up the code again. +Vcs-Bzr: https://code.launchpad.net/~system-settings-touch/gsettings-qt/trunk + +Package: qtdeclarative5-gsettings1.0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, +Description: QML Bindings for GSettings + Expose QML bindings for GSettings --- gsettings-qt-0.0+13.10.20130720.orig/debian/compat +++ gsettings-qt-0.0+13.10.20130720/debian/compat @@ -0,0 +1 @@ +9 --- gsettings-qt-0.0+13.10.20130720.orig/debian/rules +++ gsettings-qt-0.0+13.10.20130720/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +export QT_SELECT=qt5 + +override_dh_install: + rm -rf debian/*/usr/tests + dh_install --fail-missing + +override_dh_auto_test: + xvfb-run -a dh_auto_test + +%: + dh $@ --- gsettings-qt-0.0+13.10.20130720.orig/debian/changelog +++ gsettings-qt-0.0+13.10.20130720/debian/changelog @@ -0,0 +1,112 @@ +gsettings-qt (0.0+13.10.20130720-0ubuntu1) saucy; urgency=low + + [ Lars Uebernickel ] + * Don't abort when calling schema.choices() for an unknown key. Also + adds a test for accessing an unknown key from the settings object. + * Clean up tests and add some more testing. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 26 + + -- Ubuntu daily release Sat, 20 Jul 2013 07:01:48 +0000 + +gsettings-qt (0.0+13.10.20130717-0ubuntu1) saucy; urgency=low + + [ Lars Uebernickel ] + * Add GSettings.schema.choices A function that takes the name of a key + and returns the possible values the key may assume. The values are + returned in a QVariantList, so they can be used as qml models (with + the modelData role). This breaks API: the settings schema must now + be set with "schema.id" and the path with "schema.path". + + [ Ubuntu daily release ] + * Automatic snapshot from revision 23 + + -- Ubuntu daily release Wed, 17 Jul 2013 16:55:56 +0000 + +gsettings-qt (0.0+13.10.20130716-0ubuntu1) saucy; urgency=low + + [ Iain Lane ] + * Add a testcase for the onChanged signal. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 21 + + -- Ubuntu daily release Tue, 16 Jul 2013 07:01:42 +0000 + +gsettings-qt (0.0+13.10.20130713-0ubuntu1) saucy; urgency=low + + [ Lars Uebernickel ] + * Add 'changed' signal There's a 'valueChanged' on QQmlPropertyMap, + but that is not emitted when values are inserted via insert(). + 'changed' is always emitted, except when the values are first read. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 19 + + -- Ubuntu daily release Sat, 13 Jul 2013 07:01:43 +0000 + +gsettings-qt (0.0+13.10.20130701-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 17 + + -- Ubuntu daily release Mon, 01 Jul 2013 07:01:01 +0000 + +gsettings-qt (0.0+13.10.20130630-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 16 + + -- Ubuntu daily release Sun, 30 Jun 2013 07:00:59 +0000 + +gsettings-qt (0.0+13.10.20130629-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 15 + + -- Ubuntu daily release Sat, 29 Jun 2013 07:01:00 +0000 + +gsettings-qt (0.0+13.10.20130628.1-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 14 + + -- Ubuntu daily release Fri, 28 Jun 2013 19:40:37 +0000 + +gsettings-qt (0.0+13.10.20130628-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 13 + + -- Ubuntu daily release Fri, 28 Jun 2013 07:01:01 +0000 + +gsettings-qt (0.0+13.10.20130627-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 12 + + -- Ubuntu daily release Thu, 27 Jun 2013 07:01:01 +0000 + +gsettings-qt (0.0+13.10.20130626.1-0ubuntu1) saucy; urgency=low + + [ Ken VanDine ] + * build depend on qtdeclarative5-test-plugin . + + [ Lars Uebernickel ] + * gsettings-qt: gsettings bindings for qml + * Merge initial packaging From lp:~ken-vandine/gsettings-qt/packaging + * Add basic testing + * Remove QtGui dependency qmake adds this by default. Note that this + does not remove the dependency from `make check`, qtquicktests + depends on it. + * debian: run `make check` under xvfb-run + * Merge trunk + * debian: run xvfb with -a + * Don't install tests Merged from lp:~ken-vandine/gsettings- + qt/no_install_tests + + [ Ubuntu daily release ] + * Automatic snapshot from revision 11 + + -- Ubuntu daily release Wed, 26 Jun 2013 19:36:35 +0000 + +gsettings-qt (0.0-0ubuntu1) saucy; urgency=low + + * Initial package + + -- Ken VanDine Fri, 21 Jun 2013 14:35:13 -0400