Accepting request 97247 from devel:languages:python
Update to 3.0.3 (forwarded request 97245 from vuntz) OBS-URL: https://build.opensuse.org/request/show/97247 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-gobject?expand=0&rev=26
This commit is contained in:
parent
8909069347
commit
9aa596ac16
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9213d5b68a65346f82012c01097ca124061278233e4a4f8d8bf6670a84a74db0
|
|
||||||
size 625628
|
|
3
pygobject-3.0.3.tar.xz
Normal file
3
pygobject-3.0.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:088b1e682be02a969a0a3f2e650e4fe72bb3638ee8229819841d3e8f4cde2d7c
|
||||||
|
size 546420
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 20 13:55:42 UTC 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.0.3:
|
||||||
|
+ Convert all modifier constants to Gdk.ModifierType
|
||||||
|
+ Convert all strings to utf-8 encoding when retrieving from
|
||||||
|
TreeModel
|
||||||
|
+ Handle NULL arrays correctly for each array type
|
||||||
|
+ pygmainloop: avoid lockups if multiple glib.MainLoop exist
|
||||||
|
+ Properly chain up to the class that implements a given vfunc.
|
||||||
|
+ Fix array termination and size calculation
|
||||||
|
+ Fix marshaling of arrays of GVariants
|
||||||
|
+ pygi-convert:
|
||||||
|
- fix for Pango.Alignment
|
||||||
|
- fix for Gtk.Orientation
|
||||||
|
+ Add test for bytearray variants
|
||||||
|
+ Add tests for calling closures
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Nov 6 14:18:56 UTC 2011 - badshah400@gmail.com
|
Sun Nov 6 14:18:56 UTC 2011 - badshah400@gmail.com
|
||||||
|
|
||||||
|
@ -15,8 +15,6 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
%define build_for_python3 0
|
%define build_for_python3 0
|
||||||
|
|
||||||
%if %{build_for_python3}
|
%if %{build_for_python3}
|
||||||
@ -34,12 +32,12 @@
|
|||||||
Name: python-gobject
|
Name: python-gobject
|
||||||
%define _name pygobject
|
%define _name pygobject
|
||||||
Summary: Python bindings for GObject
|
Summary: Python bindings for GObject
|
||||||
Version: 3.0.2
|
|
||||||
Release: 1
|
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
|
Version: 3.0.3
|
||||||
|
Release: 0
|
||||||
Url: http://ftp.gnome.org/pub/GNOME/sources/pygobject/
|
Url: http://ftp.gnome.org/pub/GNOME/sources/pygobject/
|
||||||
Source: http://download.gnome.org/sources/pygobject/3.0/%{_name}-%{version}.tar.bz2
|
Source: http://download.gnome.org/sources/pygobject/3.0/%{_name}-%{version}.tar.xz
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: glib2-devel
|
BuildRequires: glib2-devel
|
||||||
BuildRequires: gobject-introspection-devel >= 1.29.0
|
BuildRequires: gobject-introspection-devel >= 1.29.0
|
||||||
@ -61,7 +59,6 @@ Pygobjects is an extension module for python that gives you access to
|
|||||||
GLib's GObjects.
|
GLib's GObjects.
|
||||||
|
|
||||||
%package cairo
|
%package cairo
|
||||||
License: LGPL-2.1+
|
|
||||||
Summary: Python bindings for GObject -- Cairo bindings
|
Summary: Python bindings for GObject -- Cairo bindings
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
@ -85,7 +82,6 @@ GLib's GObjects.
|
|||||||
The bindings are handled by gobject-introspection libraries.
|
The bindings are handled by gobject-introspection libraries.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
License: LGPL-2.1+
|
|
||||||
Summary: Python bindings for GObject
|
Summary: Python bindings for GObject
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 20 13:55:42 UTC 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.0.3:
|
||||||
|
+ Convert all modifier constants to Gdk.ModifierType
|
||||||
|
+ Convert all strings to utf-8 encoding when retrieving from
|
||||||
|
TreeModel
|
||||||
|
+ Handle NULL arrays correctly for each array type
|
||||||
|
+ pygmainloop: avoid lockups if multiple glib.MainLoop exist
|
||||||
|
+ Properly chain up to the class that implements a given vfunc.
|
||||||
|
+ Fix array termination and size calculation
|
||||||
|
+ Fix marshaling of arrays of GVariants
|
||||||
|
+ pygi-convert:
|
||||||
|
- fix for Pango.Alignment
|
||||||
|
- fix for Gtk.Orientation
|
||||||
|
+ Add test for bytearray variants
|
||||||
|
+ Add tests for calling closures
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Nov 6 14:18:56 UTC 2011 - badshah400@gmail.com
|
Sun Nov 6 14:18:56 UTC 2011 - badshah400@gmail.com
|
||||||
|
|
||||||
|
@ -15,8 +15,6 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
%define build_for_python3 1
|
%define build_for_python3 1
|
||||||
|
|
||||||
%if %{build_for_python3}
|
%if %{build_for_python3}
|
||||||
@ -34,12 +32,12 @@
|
|||||||
Name: python3-gobject
|
Name: python3-gobject
|
||||||
%define _name pygobject
|
%define _name pygobject
|
||||||
Summary: Python bindings for GObject
|
Summary: Python bindings for GObject
|
||||||
Version: 3.0.2
|
|
||||||
Release: 1
|
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
|
Version: 3.0.3
|
||||||
|
Release: 0
|
||||||
Url: http://ftp.gnome.org/pub/GNOME/sources/pygobject/
|
Url: http://ftp.gnome.org/pub/GNOME/sources/pygobject/
|
||||||
Source: http://download.gnome.org/sources/pygobject/3.0/%{_name}-%{version}.tar.bz2
|
Source: http://download.gnome.org/sources/pygobject/3.0/%{_name}-%{version}.tar.xz
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: glib2-devel
|
BuildRequires: glib2-devel
|
||||||
BuildRequires: gobject-introspection-devel >= 1.29.0
|
BuildRequires: gobject-introspection-devel >= 1.29.0
|
||||||
@ -61,7 +59,6 @@ Pygobjects is an extension module for python that gives you access to
|
|||||||
GLib's GObjects.
|
GLib's GObjects.
|
||||||
|
|
||||||
%package cairo
|
%package cairo
|
||||||
License: LGPL-2.1+
|
|
||||||
Summary: Python bindings for GObject -- Cairo bindings
|
Summary: Python bindings for GObject -- Cairo bindings
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
@ -85,7 +82,6 @@ GLib's GObjects.
|
|||||||
The bindings are handled by gobject-introspection libraries.
|
The bindings are handled by gobject-introspection libraries.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
License: LGPL-2.1+
|
|
||||||
Summary: Python bindings for GObject
|
Summary: Python bindings for GObject
|
||||||
Group: Development/Libraries/Python
|
Group: Development/Libraries/Python
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
|
Loading…
Reference in New Issue
Block a user