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