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