pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-gobject3 Update py-gobject3 to 3.16.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/dc6482f646e2
branches:  trunk
changeset: 652989:dc6482f646e2
user:      prlw1 <prlw1%pkgsrc.org@localhost>
date:      Thu Jun 11 08:41:02 2015 +0000

description:
Update py-gobject3 to 3.16.1

- overrides: Conditionalize touch override support in Gdk
  (Simon Feltman) (#747717)
- tests: Don't use deprecated override attributes
  (Christoph Reiter) (#743514)
- Add GLib.MINFLOAT etc. and mark GObject.G_MINFLOAT etc. deprecated
  (Christoph Reiter) (#743514)
- Emit PyGIDeprecationWarning when accessing deprecated override attributes
  (Christoph Reiter) (#743514)
- Add namespace and container name to all warnings/error messages
  (Christoph Reiter) (#743468)
- tests: Add test for GIRepository.UnionInfo.get_size()
  (Garrett Regier) (#745362)
- Avoid duping filenames when marshalling from Python to C
  (Garrett Regier) (#744719)
- Avoid copying bytearrays from Python to C when transfer nothing
  (Garrett Regier) (#743278)
- Allows passing arguments to opaque Boxed types (Garrett Regier)
  (#743214)
- Emit ImportWarning when gi.require_version() is not used (Christoph
  Reiter) (#727379)
- Refactor overrides import/modules (Christoph Reiter) (#736678)
- Replace statically bound GLib.Variant.new_tuple() with GI (Simon
  Feltman) (#735199)
- overrides: Add Gdk.EventTouch union discrimination (Simon Feltman)
  (#736380)
- PyGObjectFlags: Remove a trailing comma on the enum. (Murray
  Cumming)
- Remove redefinitions of function and vfunc cache typedefs (Simon
  Feltman) (#737874)

diffstat:

 devel/py-gobject3/Makefile.common               |   4 +-
 devel/py-gobject3/distinfo                      |   9 +++---
 devel/py-gobject3/patches/patch-gi_pygi-cache.h |  33 -------------------------
 3 files changed, 6 insertions(+), 40 deletions(-)

diffs (65 lines):

diff -r 6d18c5d36e0a -r dc6482f646e2 devel/py-gobject3/Makefile.common
--- a/devel/py-gobject3/Makefile.common Thu Jun 11 08:35:16 2015 +0000
+++ b/devel/py-gobject3/Makefile.common Thu Jun 11 08:41:02 2015 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile.common,v 1.5 2015/04/13 23:12:41 rodent Exp $
+# $NetBSD: Makefile.common,v 1.6 2015/06/11 08:41:02 prlw1 Exp $
 # used by devel/py-gobject3/Makefile
 # used by devel/py-gobject3-common/Makefile
 
-VER=                   3.14.0
+VER=                   3.16.1
 DISTNAME=              pygobject-${VER}
 CATEGORIES=            devel gnome
 MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/pygobject/${PKGVERSION_NOREV:R}/}
diff -r 6d18c5d36e0a -r dc6482f646e2 devel/py-gobject3/distinfo
--- a/devel/py-gobject3/distinfo        Thu Jun 11 08:35:16 2015 +0000
+++ b/devel/py-gobject3/distinfo        Thu Jun 11 08:41:02 2015 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.12 2014/11/01 11:25:41 obache Exp $
+$NetBSD: distinfo,v 1.13 2015/06/11 08:41:02 prlw1 Exp $
 
-SHA1 (pygobject-3.14.0.tar.xz) = 638302e7b97a7a8f7bc1f9014f2765cf22dd197e
-RMD160 (pygobject-3.14.0.tar.xz) = 9d8c217252798a38ac9420285dbb2b50080f749d
-Size (pygobject-3.14.0.tar.xz) = 720128 bytes
-SHA1 (patch-gi_pygi-cache.h) = d73a649077a89f43db0d98e05223cf6f3ebdb4d2
+SHA1 (pygobject-3.16.1.tar.xz) = 398dee18cc905c0d54b741163d66ad3fbeba37ed
+RMD160 (pygobject-3.16.1.tar.xz) = d52d83c0b5942ff5ff35b2b5421c8785caa170d8
+Size (pygobject-3.16.1.tar.xz) = 725220 bytes
diff -r 6d18c5d36e0a -r dc6482f646e2 devel/py-gobject3/patches/patch-gi_pygi-cache.h
--- a/devel/py-gobject3/patches/patch-gi_pygi-cache.h   Thu Jun 11 08:35:16 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-$NetBSD: patch-gi_pygi-cache.h,v 1.1 2014/11/01 11:25:41 obache Exp $
-
-* Remove redefinitions of function and vfunc cache typedefs
-  https://bugzilla.gnome.org/show_bug.cgi?id=737874
-
---- gi/pygi-cache.h.orig       2014-09-10 22:10:32.000000000 +0000
-+++ gi/pygi-cache.h
-@@ -197,7 +197,7 @@ struct _PyGICallableCache
-                                      GICallableInfo *callable_info);
- };
- 
--typedef struct _PyGIFunctionCache {
-+struct _PyGIFunctionCache {
-     PyGICallableCache callable_cache;
- 
-     /* An invoker with ffi_cif already setup */
-@@ -207,13 +207,13 @@ typedef struct _PyGIFunctionCache {
-                          PyGIInvokeState *state,
-                          PyObject *py_args,
-                          PyObject *py_kwargs);
--} PyGIFunctionCache;
-+} ;
- 
--typedef struct _PyGIVFuncCache {
-+struct _PyGIVFuncCache {
-     PyGIFunctionWithInstanceCache fwi_cache;
- 
-     GIBaseInfo *info;
--} PyGIVFuncCache;
-+};
- 
- 
- gboolean



Home | Main Index | Thread Index | Old Index