r47776 - in /desktop/experimental/pygobject/debian: changelog control control.in patches/git_fix_test_build.patch patches/series

ah at users.alioth.debian.org ah at users.alioth.debian.org
Sat Apr 2 13:40:09 UTC 2016


Author: ah
Date: Sat Apr  2 13:40:09 2016
New Revision: 47776

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=47776
Log:
* New upstream release.
* Bump build-dependency according to configure.ac changes:
  - gobject-introspection (>= 1.46.0)
* Fix FTBFS by adding debian/patches/git_fix_test_build.patch from upstream

Added:
    desktop/experimental/pygobject/debian/patches/git_fix_test_build.patch
Modified:
    desktop/experimental/pygobject/debian/changelog
    desktop/experimental/pygobject/debian/control
    desktop/experimental/pygobject/debian/control.in
    desktop/experimental/pygobject/debian/patches/series

Modified: desktop/experimental/pygobject/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/changelog?rev=47776&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/changelog	[utf-8] (original)
+++ desktop/experimental/pygobject/debian/changelog	[utf-8] Sat Apr  2 13:40:09 2016
@@ -1,3 +1,12 @@
+pygobject (3.20.0-1) experimental; urgency=medium
+
+  * New upstream release.
+  * Bump build-dependency according to configure.ac changes:
+    - gobject-introspection (>= 1.46.0)
+  * Fix FTBFS by adding debian/patches/git_fix_test_build.patch from upstream
+
+ -- Andreas Henriksson <andreas at fatal.se>  Sat, 02 Apr 2016 15:39:49 +0200
+
 pygobject (3.18.2-2) unstable; urgency=medium
 
   * Fix rules when deciding for which architecture the test-suite failure

Modified: desktop/experimental/pygobject/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/control?rev=47776&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/control	[utf-8] (original)
+++ desktop/experimental/pygobject/debian/control	[utf-8] Sat Apr  2 13:40:09 2016
@@ -6,7 +6,7 @@
 Section: python
 Priority: optional
 Maintainer: Josselin Mouette <joss at debian.org>
-Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Martin Pitt <mpitt at debian.org>, Michael Biebl <biebl at debian.org>, Sjoerd Simons <sjoerd at debian.org>
+Uploaders: Andreas Henriksson <andreas at fatal.se>, Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Martin Pitt <mpitt at debian.org>, Michael Biebl <biebl at debian.org>, Sjoerd Simons <sjoerd at debian.org>
 Build-Depends: debhelper (>= 9),
                dpkg-dev (>= 1.16.1~),
                gnome-common,
@@ -16,7 +16,7 @@
                libglib2.0-dev (>= 2.38.0),
                libcairo2-dev,
                libffi-dev (>= 3.0.5),
-               gobject-introspection (>= 1.39.0),
+               gobject-introspection (>= 1.46.0),
                libgirepository1.0-dev (>= 1.39.0),
                python-cairo-dev (>= 1.2.0),
                python3-cairo-dev (>= 1.10.0+dfsg-3),

Modified: desktop/experimental/pygobject/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/control.in?rev=47776&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/control.in	[utf-8] (original)
+++ desktop/experimental/pygobject/debian/control.in	[utf-8] Sat Apr  2 13:40:09 2016
@@ -12,7 +12,7 @@
                libglib2.0-dev (>= 2.38.0),
                libcairo2-dev,
                libffi-dev (>= 3.0.5),
-               gobject-introspection (>= 1.39.0),
+               gobject-introspection (>= 1.46.0),
                libgirepository1.0-dev (>= 1.39.0),
                python-cairo-dev (>= 1.2.0),
                python3-cairo-dev (>= 1.10.0+dfsg-3),

Added: desktop/experimental/pygobject/debian/patches/git_fix_test_build.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/patches/git_fix_test_build.patch?rev=47776&op=file
==============================================================================
--- desktop/experimental/pygobject/debian/patches/git_fix_test_build.patch	(added)
+++ desktop/experimental/pygobject/debian/patches/git_fix_test_build.patch	[utf-8] Sat Apr  2 13:40:09 2016
@@ -0,0 +1,31 @@
+From b3f897b98c5a2c59ea34a8afcce0448b1ffb0731 Mon Sep 17 00:00:00 2001
+From: Iain Lane <iain at orangesquash.org.uk>
+Date: Thu, 24 Mar 2016 18:04:40 +0000
+Subject: test_gerror_novalue: Don't assign the error to a variable
+
+Otherwise the build fails with:
+
+  CHECK  Pyflakes examples gi tests pygtkcompat
+  tests/test_gobject.py:689: local variable 'error' is assigned to but never used
+
+https://bugzilla.gnome.org/show_bug.cgi?id=764165
+---
+ tests/test_gobject.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/test_gobject.py b/tests/test_gobject.py
+index e78132d..39a277b 100644
+--- a/tests/test_gobject.py
++++ b/tests/test_gobject.py
+@@ -686,7 +686,7 @@ class TestGValue(unittest.TestCase):
+         self.assertEqual(unboxed.code, error.code)
+ 
+     def test_gerror_novalue(self):
+-        error = GLib.Error('test message', domain='mydomain', code=42)
++        GLib.Error('test message', domain='mydomain', code=42)
+         value = GObject.Value(GLib.Error)
+         self.assertEqual(value.g_type, GObject.type_from_name('GError'))
+         self.assertEqual(value.get_value(), None)
+-- 
+cgit v0.12
+

Modified: desktop/experimental/pygobject/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/pygobject/debian/patches/series?rev=47776&op=diff
==============================================================================
--- desktop/experimental/pygobject/debian/patches/series	[utf-8] (original)
+++ desktop/experimental/pygobject/debian/patches/series	[utf-8] Sat Apr  2 13:40:09 2016
@@ -1 +1,2 @@
 01_cairo_region.patch
+git_fix_test_build.patch




More information about the pkg-gnome-commits mailing list