[Python-modules-commits] r28706 - in packages/pyotherside/trunk (9 files)
zyga-guest at users.alioth.debian.org
zyga-guest at users.alioth.debian.org
Mon Apr 28 22:39:51 UTC 2014
Date: Monday, April 28, 2014 @ 22:39:50
Author: zyga-guest
Revision: 28706
[svn-inject] Applying Debian modifications (1.2.0-1) to trunk
Added:
packages/pyotherside/trunk/debian/
packages/pyotherside/trunk/debian/changelog
packages/pyotherside/trunk/debian/compat
packages/pyotherside/trunk/debian/control
packages/pyotherside/trunk/debian/copyright
packages/pyotherside/trunk/debian/rules
packages/pyotherside/trunk/debian/source/
packages/pyotherside/trunk/debian/source/format
packages/pyotherside/trunk/debian/watch
Property changes on: packages/pyotherside/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/pyotherside/trunk/debian/changelog
===================================================================
--- packages/pyotherside/trunk/debian/changelog (rev 0)
+++ packages/pyotherside/trunk/debian/changelog 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1,5 @@
+pyotherside (1.2.0-1) UNRELEASED; urgency=medium
+
+ * Initial release. (Closes: #746294)
+
+ -- Zygmunt Krynicki <zygmunt.krynicki at canonical.com> Mon, 28 Apr 2014 21:16:40 +0200
Added: packages/pyotherside/trunk/debian/compat
===================================================================
--- packages/pyotherside/trunk/debian/compat (rev 0)
+++ packages/pyotherside/trunk/debian/compat 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1 @@
+9
Added: packages/pyotherside/trunk/debian/control
===================================================================
--- packages/pyotherside/trunk/debian/control (rev 0)
+++ packages/pyotherside/trunk/debian/control 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1,41 @@
+Source: pyotherside
+Section: libs
+Priority: optional
+Maintainer: Zygmunt Krynicki <zygmunt.krynicki at canonical.com>
+Build-Depends:
+ debhelper (>= 9),
+ python3-dev,
+ qt5-default,
+ qt5-qmake,
+ qtbase5-dev,
+ qtdeclarative5-dev,
+ xvfb,
+Standards-Version: 3.9.5
+X-Python3-Version: >= 3.2
+Homepage: http://thp.io/2011/pyotherside/
+
+Package: pyotherside
+Multi-Arch: same
+Architecture: any
+Pre-Depends: ${misc:Pre-Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}, python3,
+Description: Asynchronous Python 3 Bindings for Qt 5
+ A Qt 5 QML Plugin that provides access to a Python 3 interpreter from QML.
+ .
+ PyOtherSide is a Qt 5 QML Plugin that provides access to a Python 3
+ interpreter from QML. It was designed with mobile devices in mind, where
+ high-framerate touch interfaces are common, and where the user usually
+ interfaces only with one application at a time via a touchscreen. As such, it
+ is important to never block the UI thread, so that the user can always
+ continue to use the interface, even when the backend is processing,
+ downloading or calculating something in the background.
+ .
+ At its core, PyOtherSide is basically a simple layer that converts Qt (QML)
+ objects to Python objects and vice versa, with focus on asynchronous events
+ and continuation-passing style function calls.
+ .
+ While legacy versions of PyOtherSide worked with Qt 4.x and Python 2.x, its
+ focus now lies on Python 3.x and Qt 5. Python 3 has been out for several
+ years, and offers some nice language features and clean-ups, while Qt 5
+ supports most mobile platforms well, and has an improved QML engine and a
+ faster renderer (Qt Scene Graph) compared to Qt 4.
Added: packages/pyotherside/trunk/debian/copyright
===================================================================
--- packages/pyotherside/trunk/debian/copyright (rev 0)
+++ packages/pyotherside/trunk/debian/copyright 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1,39 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pyotherside
+Source: http://thp.io/2011/pyotherside/
+
+Files: *
+Copyright: Copyright (c) 2011, 2013, 2014, Thomas Perl <m at thp.io>
+License:
+ PyOtherSide: Asynchronous Python 3 Bindings for Qt 5
+ Copyright (c) 2011, 2013, 2014, Thomas Perl <m at thp.io>
+ .
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+ PERFORMANCE OF THIS SOFTWARE.
+
+Files: debian/*
+Copyright: Copyright 2014 Canonical Ltd.
+License: GPL-3
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License version 3,
+ as published by the Free Software Foundation.
+ .
+ This program 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 <http://www.gnu.org/licenses/>.
+ .
+ On Debian-based systems the full text of the GPL, version 3, can be found at
+ /usr/share/common-licenses/GPL-3.
Added: packages/pyotherside/trunk/debian/rules
===================================================================
--- packages/pyotherside/trunk/debian/rules (rev 0)
+++ packages/pyotherside/trunk/debian/rules 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
+
+override_dh_auto_test:
+ xvfb-run ./tests/tests
Property changes on: packages/pyotherside/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/pyotherside/trunk/debian/source/format
===================================================================
--- packages/pyotherside/trunk/debian/source/format (rev 0)
+++ packages/pyotherside/trunk/debian/source/format 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/pyotherside/trunk/debian/watch
===================================================================
--- packages/pyotherside/trunk/debian/watch (rev 0)
+++ packages/pyotherside/trunk/debian/watch 2014-04-28 22:39:50 UTC (rev 28706)
@@ -0,0 +1,2 @@
+version=3
+https://thp.io/2011/pyotherside/pyotherside-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list