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