Import rpm: 6f95a814300e0ee99690603b5aec87b4ce3664fc
This commit is contained in:
commit
bfdb22e87c
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
SOURCES/pygtk-2.24.0.tar.bz2
|
63
0001-Fix-leaks-of-Pango-objects.patch
Normal file
63
0001-Fix-leaks-of-Pango-objects.patch
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
From eca72baa5616fbe4dbebea43c7e5940847dc5ab8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "Owen W. Taylor" <otaylor@fishsoup.net>
|
||||||
|
Date: Tue, 27 Sep 2011 00:17:52 -0400
|
||||||
|
Subject: [PATCH 1/2] Fix leaks of Pango objects
|
||||||
|
|
||||||
|
Gtk.PrintContext.create_pango_context()
|
||||||
|
Gtk.PrintContext.create_pango_layout()
|
||||||
|
pangocairo.CairoContext.create_layout()
|
||||||
|
|
||||||
|
were leaking the objects they returned.
|
||||||
|
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=660216
|
||||||
|
---
|
||||||
|
gtk/gtk-2.10.defs | 2 ++
|
||||||
|
pangocairo.override | 11 ++++++++---
|
||||||
|
2 files changed, 10 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/gtk/gtk-2.10.defs b/gtk/gtk-2.10.defs
|
||||||
|
index 69c7e0c..faa45e1 100644
|
||||||
|
--- a/gtk/gtk-2.10.defs
|
||||||
|
+++ b/gtk/gtk-2.10.defs
|
||||||
|
@@ -1388,12 +1388,14 @@
|
||||||
|
(define-method create_pango_context
|
||||||
|
(of-object "GtkPrintContext")
|
||||||
|
(c-name "gtk_print_context_create_pango_context")
|
||||||
|
+ (caller-owns-return #t)
|
||||||
|
(return-type "PangoContext*")
|
||||||
|
)
|
||||||
|
|
||||||
|
(define-method create_pango_layout
|
||||||
|
(of-object "GtkPrintContext")
|
||||||
|
(c-name "gtk_print_context_create_pango_layout")
|
||||||
|
+ (caller-owns-return #t)
|
||||||
|
(return-type "PangoLayout*")
|
||||||
|
)
|
||||||
|
|
||||||
|
diff --git a/pangocairo.override b/pangocairo.override
|
||||||
|
index bb923e6..5101107 100644
|
||||||
|
--- a/pangocairo.override
|
||||||
|
+++ b/pangocairo.override
|
||||||
|
@@ -118,11 +118,16 @@ _wrap_pango_cairo_update_context(PyGObject *self, PyObject *args, PyObject *kwar
|
||||||
|
static PyObject *
|
||||||
|
_wrap_pango_cairo_create_layout(PyGObject *self)
|
||||||
|
{
|
||||||
|
- PangoLayout *ret;
|
||||||
|
+ PangoLayout *layout;
|
||||||
|
+ PyObject *ret;
|
||||||
|
|
||||||
|
- ret = pango_cairo_create_layout(PycairoContext_GET(self));
|
||||||
|
+ layout = pango_cairo_create_layout(PycairoContext_GET(self));
|
||||||
|
/* pygobject_new handles NULL checking */
|
||||||
|
- return pygobject_new((GObject *)ret);
|
||||||
|
+ ret = pygobject_new((GObject *)layout);
|
||||||
|
+ if (layout)
|
||||||
|
+ g_object_unref(layout);
|
||||||
|
+
|
||||||
|
+ return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static PyObject *
|
||||||
|
--
|
||||||
|
2.5.5
|
||||||
|
|
652
pygtk2.spec
Normal file
652
pygtk2.spec
Normal file
@ -0,0 +1,652 @@
|
|||||||
|
# Last updated for version 2.17.0
|
||||||
|
%define glib2_version 2.8.0
|
||||||
|
%define pango_version 1.16.0
|
||||||
|
%define gtk2_version 2.9.0
|
||||||
|
%define pycairo_version 1.0.2
|
||||||
|
%define pygobject2_version 2.21.3
|
||||||
|
%define python2_version 2.3.5
|
||||||
|
|
||||||
|
|
||||||
|
### Abstract ###
|
||||||
|
|
||||||
|
Name: pygtk2
|
||||||
|
Version: 2.24.0
|
||||||
|
Release: 24%{?dist}
|
||||||
|
License: LGPLv2+
|
||||||
|
Group: Development/Languages
|
||||||
|
Summary: Python bindings for GTK+
|
||||||
|
URL: http://www.pygtk.org/
|
||||||
|
Source: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.24/pygtk-%{version}.tar.bz2
|
||||||
|
|
||||||
|
### Patches ###
|
||||||
|
# https://bugzilla.gnome.org/show_bug.cgi?id=660216
|
||||||
|
# https://git.gnome.org/browse/pygtk/commit/?id=eca72baa56
|
||||||
|
Patch0: 0001-Fix-leaks-of-Pango-objects.patch
|
||||||
|
|
||||||
|
|
||||||
|
# This was dropped from gnome-python; obsolete it here because, well,
|
||||||
|
# we have to put it somewhere
|
||||||
|
Obsoletes: gnome-python2-applet < 2.32.0-5
|
||||||
|
|
||||||
|
### Dependencies ###
|
||||||
|
|
||||||
|
# Leave these requirements alone! RPM isn't smart enough
|
||||||
|
# to derive these from the build requirements below.
|
||||||
|
Requires: python2-cairo
|
||||||
|
Requires: pygobject2
|
||||||
|
|
||||||
|
### Build Dependencies ###
|
||||||
|
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: docbook-style-xsl
|
||||||
|
BuildRequires: glib2-devel >= %{glib2_version}
|
||||||
|
BuildRequires: gtk2-devel >= %{gtk2_version}
|
||||||
|
BuildRequires: libtool
|
||||||
|
BuildRequires: libxslt
|
||||||
|
BuildRequires: python2-numpy
|
||||||
|
BuildRequires: pango-devel >= %{pango_version}
|
||||||
|
BuildRequires: python2-cairo-devel >= %{pycairo_version}
|
||||||
|
BuildRequires: pygobject2-devel >= %{pygobject2_version}
|
||||||
|
BuildRequires: python2-devel >= %{python2_version}
|
||||||
|
|
||||||
|
%description
|
||||||
|
PyGTK is an extension module for Python that gives you access to the GTK+
|
||||||
|
widget set. Just about anything you can write in C with GTK+ you can write
|
||||||
|
in Python with PyGTK (within reason), but with all the benefits of using a
|
||||||
|
high-level scripting language.
|
||||||
|
|
||||||
|
%package codegen
|
||||||
|
Summary: The code generation program for PyGTK
|
||||||
|
Group: Development/Languages
|
||||||
|
|
||||||
|
%description codegen
|
||||||
|
This package contains the C code generation program for PyGTK.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for building add-on libraries
|
||||||
|
Group: Development/Languages
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: %{name}-codegen = %{version}-%{release}
|
||||||
|
Requires: %{name}-doc = %{version}-%{release}
|
||||||
|
Requires: python2-cairo-devel
|
||||||
|
Requires: pygobject2-devel
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package contains files required to build wrappers for GTK+ add-on
|
||||||
|
libraries so that they interoperate with pygtk.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: Documentation files for %{name}
|
||||||
|
Group: Development/Languages
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
This package contains documentation files for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n pygtk-%{version}
|
||||||
|
%patch0 -p1 -b .Fix-leaks-of-Pango-objects
|
||||||
|
|
||||||
|
# Fix shebangs to system Python2.x
|
||||||
|
for file in $(%{_bindir}/find . -name '*.py' -type f)
|
||||||
|
do
|
||||||
|
%{__sed} -i.orig \
|
||||||
|
-e 's~#!/usr/bin/python(2\?)~#!%{__python2}~'\
|
||||||
|
-e 's~#!/usr/bin/env python(2\?)~#!%{__python2}~'\
|
||||||
|
${file}
|
||||||
|
/bin/touch -r ${file}.orig ${file}
|
||||||
|
%{__rm} -f ${file}.orig
|
||||||
|
done
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --enable-thread --enable-numpy --without-glade
|
||||||
|
%{make_build}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{make_install}
|
||||||
|
find %{buildroot} -name '*.la' -or -name '*.a' | xargs rm -f
|
||||||
|
|
||||||
|
# Fix python shebangs
|
||||||
|
sed -i 's|^#! /usr/bin/python(2\?)|#!%{__python2}|' %{buildroot}/usr/bin/pygtk-demo
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc AUTHORS NEWS README MAPPING
|
||||||
|
%license COPYING
|
||||||
|
%{_bindir}/pygtk-demo
|
||||||
|
%{_libdir}/pygtk/
|
||||||
|
%dir %{python2_sitearch}/gtk-2.0
|
||||||
|
%dir %{python2_sitearch}/gtk-2.0/gtk
|
||||||
|
%{python2_sitearch}/gtk-2.0/gtk/*.py*
|
||||||
|
%{python2_sitearch}/gtk-2.0/gtk/_gtk.so
|
||||||
|
%{python2_sitearch}/gtk-2.0/*.so
|
||||||
|
|
||||||
|
%files codegen
|
||||||
|
%{_bindir}/pygtk-codegen-2.0
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/pygtk-2.0/
|
||||||
|
%{_libdir}/pkgconfig/pygtk-2.0.pc
|
||||||
|
%{_datadir}/pygtk/
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%doc examples
|
||||||
|
%{_datadir}/gtk-doc/html/pygtk/
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Sep 12 2018 Josef Ridky <jridky@redhat.com> - 2.24.0-24
|
||||||
|
- remove libglade dependency and sub-package (#1622134)
|
||||||
|
|
||||||
|
* Tue Aug 14 2018 Josef Ridky <jridky@redhat.com> - 2.24.0-23.1
|
||||||
|
- fix python2 regex in sed command
|
||||||
|
|
||||||
|
* Tue Aug 14 2018 Josef Ridky <jridky@redhat.com> - 2.24.0-23
|
||||||
|
- resotre doc sub package
|
||||||
|
|
||||||
|
* Mon Aug 13 2018 Josef Ridky <jridky@redhat.com> - 2.24.0-22
|
||||||
|
- fix python2 macros
|
||||||
|
|
||||||
|
* Fri Jun 22 2018 Troy Dawson <tdawson@redhat.com> - 2.24.0-21.1
|
||||||
|
- Fix python shebangs (#1580855)
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.24.0-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 2.24.0-20
|
||||||
|
- Try again to fix shebangs
|
||||||
|
|
||||||
|
* Thu Feb 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 2.24.0-19
|
||||||
|
- Fix shebangs
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.24.0-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.24.0-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.24.0-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-15
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Sun Apr 17 2016 Leigh Scott <leigh123linux@googlemail.com> - 2.24.0-14
|
||||||
|
- Fix leaks of Pango objects (bz 660216)
|
||||||
|
- Update macros in files section
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.24.0-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.24.0-12
|
||||||
|
- use license tag for COPYING
|
||||||
|
|
||||||
|
* Sat Dec 06 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.24.0-11
|
||||||
|
- update spec file
|
||||||
|
- drop patch (system-config-authentication is a gui app that requires X and I don't give a damn if it segfaults because someone runs it without X)
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Mar 02 2013 Colin Walters <walters@verbum.org> - 2.24.0-7
|
||||||
|
- Patch from mbarnes to hopefully fix multilib conflict
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 5 2011 Colin Walters <walters@verbum.org> - 2.24.0-3
|
||||||
|
- Increase obsoletes version to be larger than both f14 and f15
|
||||||
|
|
||||||
|
* Thu May 5 2011 Colin Walters <walters@verbum.org> - 2.24.0-2
|
||||||
|
- Obsolete gnome-python2-applet
|
||||||
|
|
||||||
|
* Tue Apr 12 2011 Christopher Aillon <caillon@redhat.com> - 2.24.0-1
|
||||||
|
- Update to 2.24.0
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 21 2011 Christopher Aillon <caillon@redhat.com> - 2.22.0-1
|
||||||
|
- Update to 2.22.0
|
||||||
|
|
||||||
|
* Fri Jul 30 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2.17.0-7
|
||||||
|
- Add upstream patch to fix pkgconfig dependencies
|
||||||
|
|
||||||
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.17.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||||
|
|
||||||
|
* Tue Jul 20 2010 Colin Walters <walters@verbum.org> - 2.17.0-5
|
||||||
|
- Add patch to remove use of deprecated pygobject API
|
||||||
|
|
||||||
|
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 2.17.0-4
|
||||||
|
- Rebuild against new pygobject2
|
||||||
|
|
||||||
|
* Fri Jan 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.17.0-3.fc13
|
||||||
|
- Remove patch for RH bug #379051 (fixed upstream, differently).
|
||||||
|
|
||||||
|
* Fri Jan 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.17.0-2.fc13
|
||||||
|
- Fix the major version number in the Source URI.
|
||||||
|
|
||||||
|
* Sat Dec 26 2009 Matthew Barnes <mbarnes@redhat.com> - 2.17.0-1.fc13
|
||||||
|
- Update to 2.17.0
|
||||||
|
|
||||||
|
* Sun Aug 23 2009 Matthew Barnes <mbarnes@redhat.com> - 2.16.0-1.fc12
|
||||||
|
- Update to 2.16.0
|
||||||
|
- Remove patch for RH bug #511082 (fixed upstream).
|
||||||
|
|
||||||
|
* Tue Aug 18 2009 Adam Jackson <ajax@redhat.com> 2.15.2-4
|
||||||
|
- Drop the explicit Requires: numpy as per new packaging guidelines. If
|
||||||
|
your app calls gtk.gdk.get_pixels_array() you need to pull numpy in
|
||||||
|
yourself.
|
||||||
|
|
||||||
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.15.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 13 2009 Matthew Barnes <mbarnes@redhat.com> - 2.15.2-2.fc12
|
||||||
|
- Add patch for RH bug #511082 (missing gtk-2.16-types.defs).
|
||||||
|
|
||||||
|
* Sun Jun 21 2009 Matthew Barnes <mbarnes@redhat.com> - 2.15.2-1.fc12
|
||||||
|
- Update to 2.15.2
|
||||||
|
|
||||||
|
* Tue Jun 02 2009 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-2.fc12
|
||||||
|
- Require numpy instead of python-numeric (RH bug #503691).
|
||||||
|
|
||||||
|
* Mon May 25 2009 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-1.fc12
|
||||||
|
- Update to 2.15.1
|
||||||
|
|
||||||
|
* Sat May 02 2009 Matthew Barnes <mbarnes@redhat.com> - 2.15.0-1.fc12
|
||||||
|
- Update to 2.15.0
|
||||||
|
- Bump pygobject2_version to 2.16.1.
|
||||||
|
|
||||||
|
* Fri Mar 06 2009 Matthew Barnes <mbarnes@redhat.com> - 2.14.1-1.fc11
|
||||||
|
- Update to 2.14.1
|
||||||
|
- Bump gtk2_version to 2.9.0 for gtkunixprint requirement.
|
||||||
|
|
||||||
|
* Tue Feb 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.14.0-2
|
||||||
|
- Make -doc noarch
|
||||||
|
|
||||||
|
* Sat Jan 31 2009 Matthew Barnes <mbarnes@redhat.com> - 2.14.0-1.fc11
|
||||||
|
- Update to 2.14.0
|
||||||
|
|
||||||
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.13.0-3
|
||||||
|
- Rebuild for Python 2.6
|
||||||
|
|
||||||
|
* Tue Aug 26 2008 Matthew Barnes <mbarnes@redhat.com> - 2.13.0-2.fc10
|
||||||
|
- Restore pycairo and pygobject2 requirements, with a note to myself
|
||||||
|
to stop screwing around with them (RH bug #460105).
|
||||||
|
|
||||||
|
* Mon Aug 25 2008 Matthew Barnes <mbarnes@redhat.com> - 2.13.0-1.fc10
|
||||||
|
- Update to 2.13.0
|
||||||
|
- Update version requirements.
|
||||||
|
|
||||||
|
* Mon Mar 17 2008 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-6.fc9
|
||||||
|
- Add patch for RH bug #379051 (keyboard events in cell renderer).
|
||||||
|
|
||||||
|
* Sun Feb 17 2008 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-5.fc9
|
||||||
|
- Rebuild with GCC 4.3
|
||||||
|
|
||||||
|
* Wed Feb 06 2008 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-4.fc9
|
||||||
|
- Use a full URL for the source tag (RH bug #226333).
|
||||||
|
|
||||||
|
* Thu Jan 24 2008 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-3.fc9
|
||||||
|
- Documentation files should not be executable (RH bug #430093).
|
||||||
|
|
||||||
|
* Mon Jan 21 2008 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-2.fc9
|
||||||
|
- Update package description to match suggestions from Content Services.
|
||||||
|
|
||||||
|
* Thu Jan 03 2008 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-1.fc9
|
||||||
|
- Update to 2.12.1
|
||||||
|
- Remove patch for RH bug #217430 (fixed upstream).
|
||||||
|
- Remove patch for GNOME bug #479012 (fixed upstream).
|
||||||
|
|
||||||
|
* Fri Oct 26 2007 Matthew Barnes <mbarnes@redhat.com> - 2.12.0-3.fc8
|
||||||
|
- Add subpackage pygtk2-doc to avoid multilib conflicts.
|
||||||
|
|
||||||
|
* Fri Sep 21 2007 Jeremy Katz <katzj@redhat.com> - 2.12.0-2.fc8
|
||||||
|
- fix crash using TreeView.convert_widget_to_bin_window_coords
|
||||||
|
|
||||||
|
* Sun Sep 16 2007 Matthew Barnes <mbarnes@redhat.com> - 2.12.0-1.fc8
|
||||||
|
- Update to 2.12.0
|
||||||
|
|
||||||
|
* Mon Aug 27 2007 Matthew Barnes <mbarnes@redhat.com> - 2.11.0-1.fc8
|
||||||
|
- Update to 2.11.0
|
||||||
|
|
||||||
|
* Wed Aug 8 2007 Matthias Clasen <mclasen@redhat.com> - 2.10.6-2
|
||||||
|
- Update the license field
|
||||||
|
|
||||||
|
* Tue Jul 10 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.6-1.fc8
|
||||||
|
- Update to 2.10.6
|
||||||
|
|
||||||
|
* Mon Jul 09 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.5-1.fc8
|
||||||
|
- Update to 2.10.5
|
||||||
|
|
||||||
|
* Tue Apr 17 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.4-2.fc7
|
||||||
|
- Make pygtk-demo executable (RH bug #236716).
|
||||||
|
|
||||||
|
* Mon Feb 05 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.4-1.fc7
|
||||||
|
- Update to 2.10.4
|
||||||
|
|
||||||
|
* Mon Feb 05 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-8.fc7
|
||||||
|
- Rename spec file to pygtk2.spec (RH bug #226333).
|
||||||
|
|
||||||
|
* Sat Dec 30 2006 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-7.fc7
|
||||||
|
- Add Requires pkgconfig to devel subpackage.
|
||||||
|
|
||||||
|
* Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 2.10.3-6
|
||||||
|
- rebuild for python 2.5
|
||||||
|
|
||||||
|
* Mon Nov 27 2006 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-5.fc7
|
||||||
|
- Add patch for RH bug #217430 (missing gtk-extrafuncs.defs).
|
||||||
|
|
||||||
|
* Thu Oct 26 2006 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-4.fc7
|
||||||
|
- Require pygtk2-codegen = %%{version}-%%{release} in devel.
|
||||||
|
|
||||||
|
* Thu Oct 26 2006 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-3.fc7
|
||||||
|
- Add subpackage pygtk2-codegen (bug #212287).
|
||||||
|
|
||||||
|
* Tue Oct 24 2006 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-2.fc7
|
||||||
|
- Oops, try using python_sitearch instead of python_sitelib.
|
||||||
|
|
||||||
|
* Sun Oct 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.10.3-1.fc7
|
||||||
|
- Update to 2.10.3
|
||||||
|
- Spec file cleanups.
|
||||||
|
- Define a python_sitelib macro for files under site_packages.
|
||||||
|
|
||||||
|
* Mon Oct 2 2006 Jeremy Katz <katzj@redhat.com> - 2.10.1-4
|
||||||
|
- go back to raising an exception when importing gtk fails (#208608)
|
||||||
|
|
||||||
|
* Tue Sep 5 2006 Ray Strode <rstrode@redhat.com> - 2.10.1-3.fc6
|
||||||
|
- drop crazy reload hack patch, since it's been fixed by jdahlin
|
||||||
|
upstream in a better way.
|
||||||
|
|
||||||
|
* Tue Sep 5 2006 Ray Strode <rstrode@redhat.com> - 2.10.1-2.fc6
|
||||||
|
- drop some old patches
|
||||||
|
|
||||||
|
* Tue Sep 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.10.1-1.fc6
|
||||||
|
- Update to 2.10.1
|
||||||
|
|
||||||
|
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.6-2.fc6
|
||||||
|
- Include docs
|
||||||
|
|
||||||
|
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.6-1.fc6
|
||||||
|
- Update to 2.9.6
|
||||||
|
|
||||||
|
* Fri Jul 28 2006 Alexander Larsson <alexl@redhat.com> - 2.9.3-3
|
||||||
|
- Make sure reloading the gtk module works
|
||||||
|
- Fixes system-config-display (#199629)
|
||||||
|
|
||||||
|
* Wed Jul 19 2006 Chris Lumens <clumens@redhat.com> 2.9.3-2
|
||||||
|
- Revert to previous behavior of raising an error if $DISPLAY cannot be
|
||||||
|
opened.
|
||||||
|
|
||||||
|
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.3-1
|
||||||
|
- Update to 2.9.3
|
||||||
|
|
||||||
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.9.2-1.1
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Thu Jun 22 2006 Jeremy Katz <katzj@redhat.com> - 2.9.2-1
|
||||||
|
- update to 2.9.2
|
||||||
|
- fix for gtk+ 2.9.4 API changes
|
||||||
|
|
||||||
|
* Thu Jun 15 2006 Ray Strode <rstrode@redhat.com> - 2.9.1-3
|
||||||
|
- Use full include path for defs parser
|
||||||
|
|
||||||
|
* Wed Jun 14 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.1-2
|
||||||
|
- Fix missing BuildRequries
|
||||||
|
|
||||||
|
* Wed Jun 14 2006 Matthias Clasen <mclasen@redhat.com> - 2.9.1-1
|
||||||
|
- Update to 2.9.1
|
||||||
|
|
||||||
|
* Fri May 26 2006 Jeremy Katz <katzj@redhat.com> - 2.9.0-3
|
||||||
|
- BR should be pygobject2-devel, need to actually require pygobject2 at runtime
|
||||||
|
|
||||||
|
* Thu May 25 2006 John (J5) Palmieri <johnp@redhat.com> - 2.9.0-2
|
||||||
|
- Add BR for pygobject2
|
||||||
|
- Take out files now packaged in pygobject2 from the files list
|
||||||
|
|
||||||
|
* Wed May 10 2006 Matthias Clasem <mclasen@redhat.com> - 2.9.0-1
|
||||||
|
- Update to 2.9.0
|
||||||
|
|
||||||
|
* Thu Apr 20 2006 John (J5) Palmieri <johnp@redhat.com> - 2.8.6-1
|
||||||
|
- Update to upstream 2.8.6
|
||||||
|
|
||||||
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.8.4-1.1
|
||||||
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
||||||
|
|
||||||
|
* Sun Jan 15 2006 Christopher Aillon <caillon@redhat.com> - 2.8.4-1
|
||||||
|
- Bump to upstream 2.8.4
|
||||||
|
|
||||||
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Wed Oct 26 2005 John (J5) Palmieri <johnp@redhat.com> - 2.8.2-2
|
||||||
|
- Add the pycairo dependency since pycairo is now built in rawhide
|
||||||
|
|
||||||
|
* Mon Oct 24 2005 Christopher Aillon <caillon@redhat.com> - 2.8.2-1
|
||||||
|
- Bump to upstream 2.8.2
|
||||||
|
|
||||||
|
* Thu Sep 08 2005 John (J5) Palmieri <johnp@redhat.com> - 2.8.0-1
|
||||||
|
- Bump to upstream 2.8.0
|
||||||
|
|
||||||
|
* Tue Aug 23 2005 John (J5) Palmieri <johnp@redhat.com> - 2.7.3-3
|
||||||
|
- Add a BuildRequires on python-numeric so that Numeric
|
||||||
|
python support is added
|
||||||
|
- Add a Requires on python-numeric as well
|
||||||
|
|
||||||
|
* Thu Aug 18 2005 John (J5) Palmieri <johnp@redhat.com> - 2.7.3-2
|
||||||
|
- Bump and rebuild for cairo ABI changes
|
||||||
|
|
||||||
|
* Wed Aug 10 2005 <jrb@redhat.com> - 2.7.3-1
|
||||||
|
- Update to 2.7.3
|
||||||
|
|
||||||
|
* Wed Aug 10 2005 <jrb@redhat.com> - 2.7.2-1
|
||||||
|
- Update to 2.7.2
|
||||||
|
|
||||||
|
* Wed Jul 27 2005 Mark McLoughlin <markmc@redhat.com> 2.7.1-1
|
||||||
|
- Update to 2.7.1
|
||||||
|
|
||||||
|
* Mon Jul 18 2005 John (J5) Palmieri <johnp@redhat.com> - 2.7.0-1
|
||||||
|
- Update to upstream 2.7.0
|
||||||
|
|
||||||
|
* Wed Jul 6 2005 John (J5) Palmieri <johnp@redhat.com> - 2.6.2-1
|
||||||
|
- update to upstream 2.6.2
|
||||||
|
- remove gcc4 patch as it is in updated tarball
|
||||||
|
|
||||||
|
* Mon Mar 7 2005 Jeremy Katz <katzj@redhat.com> - 2.6.0-2
|
||||||
|
- fix build with gcc4
|
||||||
|
- add pygtk-demo
|
||||||
|
|
||||||
|
* Mon Mar 7 2005 Jeremy Katz <katzj@redhat.com> - 2.6.0-1
|
||||||
|
- 2.6.0
|
||||||
|
|
||||||
|
* Thu Feb 10 2005 Mark McLoughlin <markmc@redhat.com> - 2.5.3-3
|
||||||
|
- Avoid assertion errors in signal handling patch
|
||||||
|
|
||||||
|
* Wed Feb 9 2005 Mark McLoughlin <markmc@redhat.com> - 2.5.3-2
|
||||||
|
- Backport fix for gnome #154779 - python signal handlers weren't
|
||||||
|
getting executed while gobject.MainLoop was running
|
||||||
|
|
||||||
|
* Tue Jan 25 2005 Jeremy Katz <katzj@redhat.com> - 2.5.3-1
|
||||||
|
- 2.5.3
|
||||||
|
|
||||||
|
* Thu Jan 20 2005 <jrb@redhat.com> - 2.5.1-1
|
||||||
|
- New version
|
||||||
|
|
||||||
|
* Fri Nov 26 2004 Florian La Roche <laroche@redhat.com>
|
||||||
|
- add a %%clean target
|
||||||
|
|
||||||
|
* Sun Nov 7 2004 Jeremy Katz <katzj@redhat.com> - 2.4.1-1
|
||||||
|
- update to 2.4.1
|
||||||
|
|
||||||
|
* Mon Oct 4 2004 GNOME <jrb@redhat.com> - 2.4.0-1
|
||||||
|
- new version
|
||||||
|
|
||||||
|
* Tue Aug 10 2004 Jonathan Blandford <jrb@redhat.com> 2.3.96-2
|
||||||
|
- cleaner lib64 patch
|
||||||
|
|
||||||
|
* Tue Aug 10 2004 Jonathan Blandford <jrb@redhat.com> 2.3.96-1
|
||||||
|
- move pythondir into /usr/lib64/
|
||||||
|
|
||||||
|
* Mon Aug 9 2004 Jonathan Blandford <jrb@redhat.com> 2.3.96-1
|
||||||
|
- new version
|
||||||
|
|
||||||
|
* Tue Aug 3 2004 Jeremy Katz <katzj@redhat.com> - 2.3.95-1
|
||||||
|
- update to 2.3.95
|
||||||
|
|
||||||
|
* Thu Jun 17 2004 Jeremy Katz <katzj@redhat.com> - 2.3.92-1
|
||||||
|
- update to 2.3.92
|
||||||
|
|
||||||
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Mar 11 2004 Jeremy Katz <katzj@redhat.com> - 2.2.0-1
|
||||||
|
- 2.2.0
|
||||||
|
|
||||||
|
* Wed Mar 10 2004 Jeremy Katz <katzj@redhat.com> 2.2.0-0.rc1
|
||||||
|
- 2.2.0 RC1
|
||||||
|
|
||||||
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Tue Feb 17 2004 Jeremy Katz <katzj@redhat.com> - 2.0.0-5
|
||||||
|
- GtkTextSearchFlags is flags, not enum (#114910)
|
||||||
|
|
||||||
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Feb 12 2004 Jeremy Katz <katzj@redhat.com> - 2.0.0-3
|
||||||
|
- own %%{_libdir}/python?.?/site-packages/gtk-2.0/gtk dir (#113048)
|
||||||
|
|
||||||
|
* Thu Nov 6 2003 Jeremy Katz <katzj@redhat.com> 2.0.0-2
|
||||||
|
- rebuild for python 2.3
|
||||||
|
|
||||||
|
* Thu Sep 4 2003 Jeremy Katz <katzj@redhat.com> 2.0.0-1
|
||||||
|
- 2.0.0
|
||||||
|
|
||||||
|
* Thu Aug 14 2003 Elliot Lee <sopwith@redhat.com> 1.99.17-1
|
||||||
|
- Update to latest version
|
||||||
|
- Module filenames changed from foomodule.so to foo.so
|
||||||
|
|
||||||
|
* Thu Aug 7 2003 Elliot Lee <sopwith@redhat.com> 1.99.16-10
|
||||||
|
- Fix libtool
|
||||||
|
|
||||||
|
* Fri Jul 18 2003 Jeremy Katz <katzj@redhat.com> 1.99.16-8
|
||||||
|
- part of the fixnew patch wasn't applied upstream, apply it (#99400)
|
||||||
|
|
||||||
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Tue May 27 2003 Jonathan Blandford <jrb@redhat.com> 1.99.16-5
|
||||||
|
- Update compat patch to include gtk_text_buffer_set_text
|
||||||
|
|
||||||
|
* Tue May 27 2003 Matt Wilson <msw@redhat.com> 1.99.16-4
|
||||||
|
- don't require the deprecated length parameter
|
||||||
|
|
||||||
|
* Fri May 23 2003 Matt Wilson <msw@redhat.com> 1.99.16-3
|
||||||
|
- add compatibility for deprecated length field in GtkTextBuffer
|
||||||
|
insert methods (#91519)
|
||||||
|
|
||||||
|
* Thu May 22 2003 Matt Wilson <msw@redhat.com> 1.99.16-2
|
||||||
|
- apply atom_intern patch again (#91349)
|
||||||
|
|
||||||
|
* Tue May 20 2003 Matt Wilson <msw@redhat.com> 1.99.16-1
|
||||||
|
- added a compatibility function for gtk.gdk.gc_new() so we won't have
|
||||||
|
to fix all our code quite yet
|
||||||
|
|
||||||
|
* Mon May 19 2003 Matt Wilson <msw@redhat.com> 1.99.16-1
|
||||||
|
- enable threads (#83539, #87872)
|
||||||
|
|
||||||
|
* Fri Apr 11 2003 Jonathan Blandford <jrb@redhat.com> 1.99.16-1
|
||||||
|
- new version
|
||||||
|
|
||||||
|
* Thu Mar 13 2003 Jeremy Katz <katzj@redhat.com> 1.99.14-7
|
||||||
|
- and again
|
||||||
|
|
||||||
|
* Thu Mar 13 2003 Jeremy Katz <katzj@redhat.com> 1.99.14-6
|
||||||
|
- rebuild in new environment
|
||||||
|
|
||||||
|
* Wed Mar 5 2003 Thomas Woerner <twoerner@redhat.com> 1.99.14-5
|
||||||
|
- fixed new functions for ListStore, TreeStrore and ProgressBar
|
||||||
|
|
||||||
|
* Thu Feb 6 2003 Mihai Ibanescu <misa@redhat.com> 1.99.14-4
|
||||||
|
- rebuild to use the UCS4-enabled python
|
||||||
|
|
||||||
|
* Tue Jan 28 2003 Jeremy Katz <katzj@redhat.com> 1.99.14-3
|
||||||
|
- rerun auto* to use new python.m4 and work properly with multilib python
|
||||||
|
- libdir-ize
|
||||||
|
|
||||||
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Fri Dec 27 2002 Jeremy Katz <katzj@redhat.com> 1.99.14-1
|
||||||
|
- bump version to 1.99.14
|
||||||
|
- add patch to up the ref on gtkInvisible instantiation (#80283)
|
||||||
|
|
||||||
|
* Thu Dec 12 2002 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
- bump version to 1.99.13
|
||||||
|
- backport gdk.Pixbuf.save
|
||||||
|
|
||||||
|
* Thu Oct 31 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- rebuild for multilib
|
||||||
|
- use %%configure
|
||||||
|
|
||||||
|
* Fri Aug 30 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- fix pixbuf leaks (#72137)
|
||||||
|
- five more pixbuf leaks plugged
|
||||||
|
|
||||||
|
* Wed Aug 28 2002 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
- remover Packager tag
|
||||||
|
|
||||||
|
* Tue Aug 27 2002 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
- add binding for gdk_atom_intern
|
||||||
|
|
||||||
|
* Mon Jul 29 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- 0.99.12
|
||||||
|
|
||||||
|
* Wed Jul 17 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- new version from CVS
|
||||||
|
|
||||||
|
* Thu Jun 27 2002 Tim Waugh <twaugh@redhat.com>
|
||||||
|
- Fix bug #65770.
|
||||||
|
|
||||||
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
|
* Mon Jun 17 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- new version from CVS
|
||||||
|
|
||||||
|
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
|
* Wed May 22 2002 Jeremy Katz <katzj@redhat.com>
|
||||||
|
- 1.99.10
|
||||||
|
|
||||||
|
* Wed Feb 27 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- 1.99.8
|
||||||
|
|
||||||
|
* Mon Jan 28 2002 Matt Wilson <msw@redhat.com>
|
||||||
|
- added atkmodule.so to file list
|
||||||
|
|
||||||
|
* Thu Oct 18 2001 Matt Wilson <msw@redhat.com>
|
||||||
|
- fix devel filelist to match new header location
|
||||||
|
|
||||||
|
* Mon Oct 15 2001 Matt Wilson <msw@redhat.com>
|
||||||
|
- get the headers from their new version-specific location
|
||||||
|
|
||||||
|
* Thu Oct 11 2001 Matt Wilson <msw@redhat.com>
|
||||||
|
- fixed typo in devel filelist
|
||||||
|
- added macro that tests to see if we have libglade2, make the
|
||||||
|
filelist a condition of that
|
||||||
|
- changed name to 'pygtk2' to avoid name conflict with pygtk
|
||||||
|
|
Loading…
Reference in New Issue
Block a user