[Python-modules-commits] r33428 - in packages/checkbox-ng/trunk/debian (5 files)

zyga-guest at users.alioth.debian.org zyga-guest at users.alioth.debian.org
Tue Jul 21 11:58:15 UTC 2015


    Date: Tuesday, July 21, 2015 @ 11:58:14
  Author: zyga-guest
Revision: 33428

* New upstream release 
* debian/control: Use the new email address for the team
  (checkbox-devel at lists.ubuntu.com). 
* debian/patches/documentation-theme: refresh
* debian/patches/fix-tests-on-python35: drop (applied upstream)
* debian/control: require plainbox 0.22 or more recent (new APIs and fixes) 

Modified:
  packages/checkbox-ng/trunk/debian/changelog
  packages/checkbox-ng/trunk/debian/control
  packages/checkbox-ng/trunk/debian/patches/documentation-theme
  packages/checkbox-ng/trunk/debian/patches/series
Deleted:
  packages/checkbox-ng/trunk/debian/patches/fix-tests-on-python35

Modified: packages/checkbox-ng/trunk/debian/changelog
===================================================================
--- packages/checkbox-ng/trunk/debian/changelog	2015-07-21 11:24:11 UTC (rev 33427)
+++ packages/checkbox-ng/trunk/debian/changelog	2015-07-21 11:58:14 UTC (rev 33428)
@@ -1,6 +1,11 @@
-checkbox-ng (0.18-3) UNRELEASED; urgency=medium
+checkbox-ng (0.20-1) UNRELEASED; urgency=medium
 
-  * Use the new email address for the team (checkbox-devel at lists.ubuntu.com). 
+  * New upstream release 
+  * debian/control: Use the new email address for the team
+    (checkbox-devel at lists.ubuntu.com). 
+  * debian/patches/documentation-theme: refresh
+  * debian/patches/fix-tests-on-python35: drop (applied upstream)
+  * debian/control: require plainbox 0.22 or more recent (new APIs and fixes) 
 
  -- Zygmunt Krynicki <zygmunt.krynicki at canonical.com>  Tue, 21 Jul 2015 13:21:12 +0200
 

Modified: packages/checkbox-ng/trunk/debian/control
===================================================================
--- packages/checkbox-ng/trunk/debian/control	2015-07-21 11:24:11 UTC (rev 33427)
+++ packages/checkbox-ng/trunk/debian/control	2015-07-21 11:58:14 UTC (rev 33428)
@@ -12,7 +12,7 @@
                python3-dbus,
                python3-docutils,
                python3-gi,
-               python3-plainbox (>= 0.20),
+               python3-plainbox (>= 0.22),
                python3-requests (>= 1.0),
                python3-setuptools,
                python3-sphinx
@@ -53,7 +53,7 @@
 Package: python3-checkbox-ng
 Architecture: all
 Depends: python3-checkbox-support (>= 0.18),
-         python3-plainbox (>= 0.20),
+         python3-plainbox (>= 0.22),
          python3-requests (>= 1.0),
          ${misc:Depends},
          ${python3:Depends}

Modified: packages/checkbox-ng/trunk/debian/patches/documentation-theme
===================================================================
--- packages/checkbox-ng/trunk/debian/patches/documentation-theme	2015-07-21 11:24:11 UTC (rev 33427)
+++ packages/checkbox-ng/trunk/debian/patches/documentation-theme	2015-07-21 11:58:14 UTC (rev 33428)
@@ -5,13 +5,13 @@
 Author: Zygmunt Krynicki <zygmunt.krynicki at canonical.com>
 Origin: upstream
 Forwarded: not-needed
-Last-Update: 2015-04-01
+Last-Update: 2015-07-21
 
 --- checkbox-ng-0.18.orig/docs/conf.py
 +++ checkbox-ng-0.18/docs/conf.py
-@@ -126,9 +126,7 @@ pygments_style = 'sphinx'
+@@ -132,9 +132,7 @@ pygments_style = 'sphinx'
  
- # -- Options for HTML output ---------------------------------------------------
+ # -- Options for HTML output -------------------------------------------------
  
 -html_theme_path = ['_templates']
 -html_theme = 'ubuntu1204'

Deleted: packages/checkbox-ng/trunk/debian/patches/fix-tests-on-python35
===================================================================
--- packages/checkbox-ng/trunk/debian/patches/fix-tests-on-python35	2015-07-21 11:24:11 UTC (rev 33427)
+++ packages/checkbox-ng/trunk/debian/patches/fix-tests-on-python35	2015-07-21 11:58:14 UTC (rev 33428)
@@ -1,31 +0,0 @@
-Description: Fix tests on Python 3.5
- This patch fixes a simple build failure caused by deprecation warning being
- printed and affecting tests that observe stdout/stderr.
-Author: Zygmunt Krynicki <zygmunt.krynicki at canonical.com>
-Origin: vendor
-Bug-Ubuntu: https://bugs.launchpad.net/checkbox-ng/+bug/1473093 
-Forwarded: https://bugs.launchpad.net/checkbox-ng/+bug/1473093
-Last-Update: 2015-07-09
-
---- checkbox-ng-0.18.orig/checkbox_ng/service.py
-+++ checkbox-ng-0.18/checkbox_ng/service.py
-@@ -27,6 +27,7 @@ import collections
- import functools
- import itertools
- import logging
-+import sys
- 
- try:
-     from inspect import Signature
-@@ -159,7 +160,10 @@ class PlainBoxObjectWrapper(dbus.service
-         very limited). For the moment it cannot infer the argument types from
-         the decorator for dbus.service.method.
-         """
--        sig = Signature.from_function(func)
-+        if sys.version_info[0:2] >= (3, 5):
-+            sig = Signature.from_callable(func)
-+        else:
-+            sig = Signature.from_function(func)
- 
-         def translate_o(object_path):
-             try:

Modified: packages/checkbox-ng/trunk/debian/patches/series
===================================================================
--- packages/checkbox-ng/trunk/debian/patches/series	2015-07-21 11:24:11 UTC (rev 33427)
+++ packages/checkbox-ng/trunk/debian/patches/series	2015-07-21 11:58:14 UTC (rev 33428)
@@ -1,2 +1 @@
 documentation-theme
-fix-tests-on-python35




More information about the Python-modules-commits mailing list