--- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/copyright +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/copyright @@ -0,0 +1,35 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: unity-webapps-qml +Upstream-Contact: WebApps Team +Source: https://launchpad.net/unity-webapps-qml + +Files: examples/*.png +Copyright: 2013 Canonical Ltd. +License: CC-BY-SA 3.0 + This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 + Unported License. To view a copy of this license, visit + http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative + Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. + +Files: * +Copyright: 2013 Canonical Ltd. +License: GPL-3 + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +License: GPL-3.0 + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + 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 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 General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/unity-webapps-qml-autopilot.install +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/unity-webapps-qml-autopilot.install @@ -0,0 +1,3 @@ +tests/integration/autopilot/html/* usr/share/unity-webapps-qml/autopilot-tests/html/ +tests/integration/autopilot/qml/* usr/share/unity-webapps-qml/autopilot-tests/qml/ +usr/lib/python* --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/unity-webapps-qml.install +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/unity-webapps-qml.install @@ -0,0 +1,3 @@ +usr/bin/unity-webapps-qml-launcher +usr/lib/*/qt5/qml/Ubuntu/UnityWebApps/* +usr/share/applications/unitywebappsqmllauncher.desktop --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/unity-webapps-qml-doc.install +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/unity-webapps-qml-doc.install @@ -0,0 +1 @@ +usr/share/unity-webapps-qml/doc --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/control +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/control @@ -0,0 +1,75 @@ +Source: unity-webapps-qml +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +Build-Depends: debhelper (>= 9), + gdb, + libmessaging-menu-dev, + libnotify-dev, + libqt5webkit5-dev, + libunity-action-qt1-dev, + pkg-config, + python (>= 2.7), + python-setuptools, + qt5-default, + qt5-qmake, + qtbase5-dev, + qtdeclarative5-dev, + qtdeclarative5-test-plugin, + libunity-dev, +Standards-Version: 3.9.4 +Homepage: https://launchpad.net/unity-webapp-qml +# If you aren't a member of ~webapps but need to upload packaging changes, +# just go ahead. ~webapps will notice and sync up the code again. +Vcs-Bzr: https://code.launchpad.net/~webapps/unity-webapps-qml/trunk + +Package: unity-webapps-qml +Architecture: any +Multi-Arch: same +Depends: libqt5webkit5-qmlwebkitplugin, + qtdeclarative5-unity-action-plugin, + qtdeclarative5-qtquick2-plugin, + ${misc:Depends}, + ${shlibs:Depends}, +Description: Unity Webapps QML component + Unity Webapps QML is a QML component that binds to a QML WebView and allows + running javascript code to access Ubuntu stack components. + +Package: unity-webapps-qml-examples +Section: libs +Architecture: any +Depends: unity-webapps-qml (>= ${binary:Version}), + qtdeclarative5-window-plugin, + ${misc:Depends}, + ${shlibs:Depends}, +Description: Example usage of Unity Webapps QML component + Some examples demonstrating the webapps QML component. + +Package: unity-webapps-qml-doc +Section: doc +Architecture: all +Depends: ${misc:Depends}, + ${shlibs:Depends}, +Suggests: unity-webapps-qml-examples, +Description: Documentation for Unity Webapps QML - documentation + Unity Webapps QML component + . + This package contains developer documentation. + +Package: unity-webapps-qml-autopilot +Architecture: all +Depends: dpkg-dev, + libautopilot-qt, + libqt5test5, + python-gobject, + qmlscene, + qtdeclarative5-unity-action-plugin, + qtdeclarative5-window-plugin, + unity-autopilot, + unity-webapps-qml (>= ${source:Version}), + ${misc:Depends}, + ${python:Depends}, +Description: Autopilot tests for the Unity Webapps QML + Unity Webapps QML is a QML component that binds to a QML WebView and allows + running javascript code to access Ubuntu stack components. This package + contains autopilot tests for it. --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/compat +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/compat @@ -0,0 +1 @@ +9 \ No newline at end of file --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/rules +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ --with python2 + +override_dh_install: + # install autopilot tests + cd tests/integration/autopilot; \ + set -ex; for python in $(shell pyversions -r); do \ + $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \ + done; \ + cd $(CURDIR) + dh_install -X'*.pyc' --fail-missing --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/unity-webapps-qml-examples.install +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/unity-webapps-qml-examples.install @@ -0,0 +1,5 @@ +usr/share/applications/unity-webapps-qml-basic-example.desktop +usr/share/applications/unity-webapps-qml-bbcnews-example.desktop +usr/share/applications/unity-webapps-qml-model-example.desktop +usr/share/applications/unity-webapps-qml-facebookmessenger-example.desktop +usr/share/unity-webapps-qml/examples --- unity-webapps-qml-0.1+13.10.20130926.2.orig/debian/changelog +++ unity-webapps-qml-0.1+13.10.20130926.2/debian/changelog @@ -0,0 +1,211 @@ +unity-webapps-qml (0.1+13.10.20130926.2-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Add python-gobject dep to autopilot package. (LP: #1228196) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 71 + + -- Ubuntu daily release Thu, 26 Sep 2013 22:06:36 +0000 + +unity-webapps-qml (0.1+13.10.20130926.1-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Fix desktop id for containers w/ APP_ID. (LP: #1230376) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 69 + + -- Ubuntu daily release Thu, 26 Sep 2013 18:03:50 +0000 + +unity-webapps-qml (0.1+13.10.20130924.4-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * ensure_unity_is_running should not be used on touch. (LP: #1228208) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 67 + + -- Ubuntu daily release Tue, 24 Sep 2013 22:03:45 +0000 + +unity-webapps-qml (0.1+13.10.20130919.4-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Add startupwmclass to desktop file generation. + * Disable some tests on phone since the backends are not there yet. + * Remove all references to inputs (unecessary anyway) to run on touch. + (LP: #1227412) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 65 + + -- Ubuntu daily release Thu, 19 Sep 2013 22:03:24 +0000 + +unity-webapps-qml (0.1+13.10.20130917.1-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Make sure that the qmllauncher desktop file is not discoverable thru + the dash. (LP: #1222956) + * Fix webapps search path set in the model instead of allowing all + paths to be set. Improve the documentation in this regard. + * Remove uneeded build dependency on qt5multimedia-plugin. (LP: + #1206268) + * fix application raising. + * small raise fix. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 61 + + -- Ubuntu daily release Tue, 17 Sep 2013 22:04:15 +0000 + +unity-webapps-qml (0.1+13.10.20130907-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Simplify/fix autopilot tests; Handle better local usage of webapps + component (for local apps). + * Fix icon name generation. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 55 + + -- Ubuntu daily release Sat, 07 Sep 2013 02:04:08 +0000 + +unity-webapps-qml (0.1+13.10.20130904.2-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Fix static actions. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 52 + + -- Ubuntu daily release Wed, 04 Sep 2013 15:58:42 +0000 + +unity-webapps-qml (0.1+13.10.20130829.2-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Add webapp chrome selection from the manifest file. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 50 + + -- Ubuntu daily release Thu, 29 Aug 2013 10:04:20 +0000 + +unity-webapps-qml (0.1+13.10.20130828-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Encode webapp name in base64. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 48 + + -- Ubuntu daily release Wed, 28 Aug 2013 10:04:20 +0000 + +unity-webapps-qml (0.1+13.10.20130827.2-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Fix issues w/ init; update autopilot tests; add mediaplayer. + * Add per webapps url matching, Fix autopilot tests (typos). + * Add --app-id to exec line for webbrowser-app. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 46 + + -- Ubuntu daily release Tue, 27 Aug 2013 22:03:59 +0000 + +unity-webapps-qml (0.1+13.10.20130822.2-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Fix typo in desktop file Exec. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 42 + + -- Ubuntu daily release Thu, 22 Aug 2013 14:04:21 +0000 + +unity-webapps-qml (0.1+13.10.20130820.3-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Fix hud autopilot script. + * Add maximized launch to facebook example & caps to qml-launcher. + * fix facebook example useragent, when using the mobile safari one + (ipad/iphone) it seems that facebook does not update its messages + asyncrhonously anymore which render the webapp messaging menu + binding quite moot. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 40 + + -- Ubuntu daily release Tue, 20 Aug 2013 14:04:22 +0000 + +unity-webapps-qml (0.1+13.10.20130816.1-0ubuntu1) saucy; urgency=low + + [ Víctor R. Ruiz ] + * Create ./local/share/applications when not available. (LP: #1211352) + + [ Alexandre Abreu ] + * Fix race condition in webapps bridge creation Fix issues in + messaging menu Add facebookmessenger full example Fix initialization + of backends Only inject API in top frame Fix issue with absence of + 'unsafeWindow'. + * Add unitytestcase base class, seems to fix some dbus setup issues + that some had + * Remove unecessary unity property (already provided) + + [ Łukasz 'sil2100' Zemczak ] + * Revert back to using Arch: any instead of explicitly listing out all + architectures. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 36 + + -- Ubuntu daily release Fri, 16 Aug 2013 10:04:26 +0000 + +unity-webapps-qml (0.1+13.10.20130731-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * hud support. + * fix unit tests add signal clean up when bindee is disconnected. + * Use new Unity Actions API; Fix tests; Add import statement to qml- + launcher for local autopilot testing. + * fix messaging menu support fix examples. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 30 + + -- Ubuntu daily release Wed, 31 Jul 2013 05:01:56 +0000 + +unity-webapps-qml (0.1+13.10.20130723-0ubuntu1) saucy; urgency=low + + * Automatic snapshot from revision 25 + + -- Ubuntu daily release Tue, 23 Jul 2013 05:02:04 +0000 + +unity-webapps-qml (0.1+13.10.20130722-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Fix autopilot tests depends . (LP: #1203086) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 24 + + -- Ubuntu daily release Mon, 22 Jul 2013 05:01:48 +0000 + +unity-webapps-qml (0.1+13.10.20130719-0ubuntu1) saucy; urgency=low + + [ Alexandre Abreu ] + * Initial release. + * Automatic snapshot from revision 17 (bootstrap) + * Automatic update of url to webapp homepage. + * Examples have been stripped of their unnecessary native coating (no + more native stuff), and common data files have been bundled + together. I also added desktop files and simple bash script to + launch the sample apps, . (LP: #1201892) + + [ Robert Bruce Park ] + * Minor packaging fixes. + * Packaging fixes. + + [ Ubuntu daily release ] + * Automatic snapshot from revision 22 + + -- Ubuntu daily release Fri, 19 Jul 2013 05:01:32 +0000