95d8fc
### Abstract ###
95d8fc
95d8fc
Name: pygobject2
95d8fc
Version: 2.28.6
33b564
Release: 11%{?dist}
95d8fc
License: LGPLv2+
95d8fc
Group: Development/Languages
95d8fc
Summary: Python 2 bindings for GObject 
95d8fc
URL: http://www.pygtk.org/
95d8fc
BuildRoot: %{_tmppath}/%{name}-%{version}-root
95d8fc
#VCS: git:git://git.gnome.org/pygobject
95d8fc
Source: http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-%{version}.tar.bz2
95d8fc
95d8fc
### Patches ###
95d8fc
# Fix this warning on startup:
95d8fc
#   ** WARNING **: Trying to register gtype 'GMountMountFlags' as enum when
95d8fc
#   in fact it is of type 'GFlags'
95d8fc
# using upstream patch (rhbz#790053)
95d8fc
Patch1: fix-gio-flags.patch
95d8fc
Patch2: 0001-Fix-set_qdata-warning-on-accessing-NULL-gobject-prop.patch
95d8fc
95d8fc
### Build Dependencies ###
95d8fc
95d8fc
BuildRequires: pkgconfig(gio-unix-2.0)
95d8fc
BuildRequires: pkgconfig(gobject-introspection-1.0)
95d8fc
BuildRequires: pkgconfig(python2)
95d8fc
BuildRequires: pkgconfig(cairo-gobject)
95d8fc
95d8fc
# Bootstrap requirements
95d8fc
BuildRequires: automake autoconf libtool
95d8fc
95d8fc
%description
95d8fc
The %{name} package provides a convenient wrapper for the GObject library
95d8fc
for use in Python programs.
95d8fc
95d8fc
%package codegen
95d8fc
Summary: The code generation program for PyGObject
95d8fc
Group: Development/Languages
95d8fc
95d8fc
%description codegen
95d8fc
The package contains the C code generation program for PyGObject.
95d8fc
95d8fc
%package devel
95d8fc
Summary: Development files for building add-on libraries
95d8fc
Group: Development/Languages
95d8fc
Requires: %{name} = %{version}-%{release}
95d8fc
Requires: %{name}-codegen = %{version}-%{release}
95d8fc
Requires: %{name}-doc = %{version}-%{release}
95d8fc
Requires: glib2-devel
95d8fc
Requires: python2-devel
95d8fc
Requires: pkgconfig
95d8fc
95d8fc
%description devel
95d8fc
This package contains files required to build wrappers for %{name}-based
95d8fc
libraries such as pygtk2.
95d8fc
95d8fc
%package doc
95d8fc
Summary: Documentation files for %{name}
95d8fc
Group: Development/Languages
95d8fc
95d8fc
%description doc
95d8fc
This package contains documentation files for %{name}.
95d8fc
95d8fc
%prep
95d8fc
%setup -q -n pygobject-%{version}
95d8fc
%patch1 -p1
95d8fc
%patch2 -p1
95d8fc
95d8fc
find -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python}|'
95d8fc
95d8fc
%build
95d8fc
PYTHON=%{__python} 
95d8fc
export PYTHON
95d8fc
%configure --disable-introspection
95d8fc
make %{?_smp_mflags}
95d8fc
95d8fc
%install
95d8fc
rm -rf $RPM_BUILD_ROOT
95d8fc
95d8fc
make DESTDIR=$RPM_BUILD_ROOT install
95d8fc
find $RPM_BUILD_ROOT -name '*.la' -delete
95d8fc
find $RPM_BUILD_ROOT -name '*.a' -delete
95d8fc
95d8fc
rm examples/Makefile*
95d8fc
95d8fc
%post -p /sbin/ldconfig
95d8fc
%postun -p /sbin/ldconfig
95d8fc
95d8fc
%files
95d8fc
%defattr(644, root, root, 755)
95d8fc
%doc AUTHORS NEWS README
95d8fc
%doc examples
95d8fc
95d8fc
%{_libdir}/libpyglib-2.0-python.so*
95d8fc
%dir %{python_sitearch}/gtk-2.0
95d8fc
%dir %{python_sitearch}/gobject
95d8fc
%dir %{python_sitearch}/glib
95d8fc
95d8fc
%{python_sitearch}/gtk-2.0/*
95d8fc
%{python_sitearch}/pygtk.*
95d8fc
%{python_sitearch}/gobject/*
95d8fc
%{python_sitearch}/glib/*
95d8fc
95d8fc
%files codegen
95d8fc
%defattr(755, root, root, 755)
95d8fc
%{_bindir}/pygobject-codegen-2.0
95d8fc
%defattr(644, root, root, 755)
95d8fc
%dir %{_datadir}/pygobject/2.0
95d8fc
%{_datadir}/pygobject/2.0/codegen
95d8fc
95d8fc
%files devel
95d8fc
%defattr(644, root, root, 755)
95d8fc
%dir %{_datadir}/pygobject
95d8fc
%dir %{_includedir}/pygtk-2.0
95d8fc
%{_datadir}/pygobject/2.0/defs
95d8fc
%{_includedir}/pygtk-2.0/pyglib.h
95d8fc
%{_includedir}/pygtk-2.0/pygobject.h
95d8fc
%{_libdir}/pkgconfig/pygobject-2.0.pc
95d8fc
95d8fc
%files doc
95d8fc
%defattr(644, root, root, 755)
95d8fc
%{_datadir}/gtk-doc/html/pygobject
95d8fc
%{_datadir}/pygobject/xsl
95d8fc
95d8fc
%changelog
33b564
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.28.6-11
33b564
- Mass rebuild 2014-01-24
33b564
33b564
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.28.6-10
33b564
- Mass rebuild 2013-12-27
33b564
95d8fc
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.28.6-9
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
95d8fc
95d8fc
* Tue Jan 22 2013 Colin Walters <walters@redhat.com> - 2.28.6-8
95d8fc
- Add various missing BuildRequires, switch to pkgconfig() syntax
95d8fc
- Backport upstream patch which fixes a crasher in some applications
95d8fc
95d8fc
* Fri Jul 27 2012 Ville Skyttä <ville.skytta@iki.fi> - 2.28.6-7
95d8fc
- Add ldconfig post(un)install scriptlets.
95d8fc
95d8fc
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.28.6-6
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
95d8fc
95d8fc
* Fri Jun 15 2012 David Malcolm <dmalcolm@redhat.com> - 2.28.6-5
95d8fc
- fix warnings on startup (patch 1; rhbz#790053)
95d8fc
95d8fc
* Mon Feb 13 2012 Matthias Clasen <mclasen@redhat.com> - 2.28.6-4
95d8fc
- Require python2-devel in -devel
95d8fc
95d8fc
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.28.6-3
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
95d8fc
95d8fc
* Thu Aug 18 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.6-2
95d8fc
- disable introspection in anticipation of pygobject3
95d8fc
- https://bugzilla.redhat.com/show_bug.cgi?id=731851
95d8fc
- pygobject2 now becomes legacy for static binding support (e.g. PyGTK)
95d8fc
95d8fc
* Mon Jun 13 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.6-1
95d8fc
- update to upstream 2.28.6
95d8fc
- closure: avoid double free crash
95d8fc
- GVariantType is a boxed struct in newer versions of glib
95d8fc
- Revert back to a GVariant workaround since the fix hasn't migrated to
95d8fc
  Fedora's version of glib yet (workaround works in both cases)
95d8fc
- closure: Check the out arg is not null.
95d8fc
- Fix GC-related crash during PyGObject deallocation (remove patch from
95d8fc
  previous spec)
95d8fc
95d8fc
* Mon Jun 06 2011 Daniel Drake <dsd@laptop.org> - 2.28.4-3
95d8fc
- add upstream patch to solve Python GC crash during gobject deallocation
95d8fc
95d8fc
* Thu Apr 21 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.4-2
95d8fc
- require gobject-introspection version 0.10.8
95d8fc
95d8fc
* Thu Apr 21 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.4-1
95d8fc
- update to upstream 2.28.4
95d8fc
95d8fc
* Tue Mar 22 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.3-1
95d8fc
- update to upstream 2.28.3
95d8fc
95d8fc
* Mon Mar 21 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.2-1
95d8fc
- update to upstream version 2.28.2 stable
95d8fc
- fixes issue in bug - https://bugzilla.redhat.com/show_bug.cgi?id=682543
95d8fc
95d8fc
* Mon Mar 21 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.1-1
95d8fc
- update to upstream version 2.28.1 stable
95d8fc
- fix the spec file's sources line to point to the correct ftp directory
95d8fc
95d8fc
* Tue Mar 08 2011 John (J5) Palmieri <johnp@redhat.com> - 2.28.0-1
95d8fc
- update to upstream version 2.28.0 stable
95d8fc
95d8fc
* Mon Feb 28 2011 John (J5) Palmieri <johnp@redhat.com> - 2.27.91-1
95d8fc
- update to upstream version 2.27.91
95d8fc
95d8fc
* Fri Feb 09 2011 John (J5) Palmieri <johnp@redhat.com> - 2.27.90-2
95d8fc
- update files manifest to reflect files that moved around
95d8fc
95d8fc
* Fri Feb 09 2011 John (J5) Palmieri <johnp@redhat.com> - 2.27.90-1
95d8fc
- update to upstream version 2.27.90
95d8fc
95d8fc
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.0-2
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
95d8fc
95d8fc
* Wed Nov 10 2010 John (J5) Palmieri <johnp@redhat.com> - 2.27.0-1
95d8fc
- update to upstream version 2.27.0
95d8fc
95d8fc
* Thu Sep 30 2010 John (J5) Palmieri <johnp@redhat.com> - 2.26.0-4
95d8fc
- Edit PyCapsule patch to only use PyCapsule in Python 3.x
95d8fc
  since this effects header files which require other modules to 
95d8fc
  be recompiled.  There is actually discussion upstream to undeprecate it
95d8fc
  for the 2.x series
95d8fc
95d8fc
* Tue Sep 28 2010 John (J5) Palmieri <johnp@redhat.com> - 2.26.0-3
95d8fc
- add patch to work with PyCapsule since PyCObject is removed from 
95d8fc
  Python 3.2 which we ship in rawhide
95d8fc
95d8fc
* Tue Sep 28 2010 John (J5) Palmieri <johnp@redhat.com> - 2.26.0-2
95d8fc
- add another py3k patch so that we compile correctly under python 3
95d8fc
- fixes a couple of print syntax and a try, except syntax
95d8fc
95d8fc
* Tue Sep 28 2010 John (J5) Palmieri <johnp@redhat.com> - 2.26.0-1
95d8fc
- Update to upstream 2.26.0
95d8fc
- package python3-gobject module
95d8fc
95d8fc
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.21.5-3
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
95d8fc
95d8fc
* Wed Jul 14 2010 Colin Walters <walters@verbum.org> - 2.21.5-2
95d8fc
- Rebuild against new gobject-introspection
95d8fc
- Strip noarch docs hack, seems obsolete now
95d8fc
95d8fc
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 2.21.5-1
95d8fc
- New upstream version
95d8fc
95d8fc
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 2.21.4-5
95d8fc
- Require g-i 0.9.0 
95d8fc
95d8fc
* Wed Jul  7 2010 Colin Walters <walters@verbum.org> - 2.21.4-4
95d8fc
- Update to latest upstream
95d8fc
- Drop upstreamed patches
95d8fc
- Require pycairo, since we have a module that uses it
95d8fc
- Drop libtool overriding; was not commented and seems fine
95d8fc
  without
95d8fc
- Drop --enable-thread, it's default now
95d8fc
- Drop --enable-pygi, it's default now
95d8fc
- Drop clean section, no longer needed in F-14
95d8fc
- Drop python-sitearch copy&paste, no longer needed in F-14
95d8fc
- Add SMP flags to make
95d8fc
95d8fc
* Thu May 27 2010 Colin Walters <walters@verbum.org> - 2.21.1-9
95d8fc
- Readd my patch to not blow up mysteriously
95d8fc
  Resolves: #596392
95d8fc
95d8fc
* Mon May 24 2010 Colin Walters <walters@verbum.org> - 2.21.1-7
95d8fc
- Reenable pygi in preparation for getting it packaged
95d8fc
95d8fc
* Wed May 05 2010 Colin Walters <walters@verbum.org> - 2.21.1-6
95d8fc
- Switch to disabling pygi, remove my patch for now.  See commentary
95d8fc
  https://bugzilla.redhat.com/show_bug.cgi?id=569885#c38
95d8fc
95d8fc
* Wed May 05 2010 Colin Walters <walters@verbum.org> - 2.21.1-5
95d8fc
- Another patch to clear error when we've enabled pygi
95d8fc
  Should really fix bug #569885
95d8fc
95d8fc
* Fri Mar 26 2010 Colin Walters <walters@verbum.org> - 2.21.1-4
95d8fc
- Cherrypick patch from HEAD to fix pygi imports
95d8fc
  Hopefully fixes bug #569885
95d8fc
95d8fc
* Sat Jan 23 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.21.1-3
95d8fc
- add --enable-pygi (fixes bug #558003)
95d8fc
- replace global with define
95d8fc
95d8fc
* Fri Jan 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.21.1-2.fc13
95d8fc
- Provide a complete URI for the Source field.
95d8fc
95d8fc
* Sat Jan 02 2010 Matthew Barnes <mbarnes@redhat.com> - 2.21.1-1.fc13
95d8fc
- Update to 2.21.1
95d8fc
95d8fc
* Sun Dec 20 2009 Matthew Barnes <mbarnes@redhat.com> - 2.21.0-1.fc13
95d8fc
- Update to 2.21.0
95d8fc
95d8fc
* Wed Sep 23 2009 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-1.fc12
95d8fc
- Update to 2.20.0
95d8fc
95d8fc
* Tue Aug 11 2009 Matthew Barnes <mbarnes@redhat.com> - 2.19.0-1.fc12
95d8fc
- Update to 2.19.0
95d8fc
95d8fc
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.18.0-2
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
95d8fc
95d8fc
* Mon May 25 2009 Matthew Barnes <mbarnes@redhat.com> - 2.18.0-1.fc12
95d8fc
- Update to 2.18.0
95d8fc
95d8fc
* Thu Apr 30 2009 Matthew Barnes <mbarnes@redhat.com> - 2.17.1-1.fc12
95d8fc
- Update to 2.17.0
95d8fc
- Remove patch for GNOME bug #566571 (fixed upstream).
95d8fc
95d8fc
* Wed Apr 22 2009 Matthew Barnes <mbarnes@redhat.com> - 2.16.1-4.fc11
95d8fc
- Add patch for GNOME bug #566571 (classic vs new-style inheritance crash).
95d8fc
95d8fc
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.16.1-3
95d8fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
95d8fc
95d8fc
* Tue Feb 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.16.1-2
95d8fc
- Make -doc noarch
95d8fc
95d8fc
* Sun Feb 22 2009 - Matthew Barnes <mbarnes@redhat.com> - 2.16.1-1.fc11
95d8fc
- Update to 2.16.1
95d8fc
95d8fc
* Sun Jan 04 2009 - Matthew Barnes <mbarnes@redhat.com> - 2.16.0-1.fc11
95d8fc
- Update to 2.16.0
95d8fc
- Remove patch for RH bug #457502 (fixed upstream).
95d8fc
- Remove patch for GNOME bug #551059 and #551212 (fixed upstream).
95d8fc
95d8fc
* Sat Nov 29 2008 - Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.15.4-4
95d8fc
- Rebuild for Python 2.6
95d8fc
95d8fc
* Tue Oct 21 2008 - Bastien Nocera <bnocera@redhat.com> - 2.15.4-3.fc10
95d8fc
- Add patch to fix typos breaking compilation
95d8fc
95d8fc
* Tue Oct 21 2008 - Bastien Nocera <bnocera@redhat.com> - 2.15.4-2.fc10
95d8fc
- Add 2-liner fixing the load_contents functions not working appropriately
95d8fc
95d8fc
* Wed Sep 03 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.4-1.fc10
95d8fc
- Update to 2.15.4
95d8fc
95d8fc
* Sun Aug 31 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.3-1.fc10
95d8fc
- Update to 2.15.3
95d8fc
95d8fc
* Tue Aug 12 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.2-3.fc10
95d8fc
- Modify thread initialization patch to fix RH bug #458522.
95d8fc
95d8fc
* Thu Aug 07 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.2-2.fc10
95d8fc
- Add patch for RH bug #457502 (error on gtk.gdk.threads_init).
95d8fc
95d8fc
* Sat Jul 26 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.2-1.fc10
95d8fc
- Update to 2.15.2
95d8fc
95d8fc
* Sun Jul 20 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-2.fc10
95d8fc
- Fix directory ownership.  (RH bug #455974, patch by Robert Scheck).
95d8fc
95d8fc
* Wed Jul 16 2008 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-1.fc10
95d8fc
- Update to 2.15.1
95d8fc
- Bump glib2_version to 2.16.0.
95d8fc
- Remove ancient automake_version.
95d8fc
- Add a pygobject2-codegen subpackage.
95d8fc
95d8fc
* Fri May 23 2008 Matthew Barnes <mbarnes@redhat.com> - 2.14.2-1.fc10
95d8fc
- Update to 2.14.2
95d8fc
95d8fc
* Sun Feb 17 2008 Matthew Barnes <mbarnes@redhat.com> - 2.14.1-2.fc9
95d8fc
- Rebuild with GCC 4.3
95d8fc
95d8fc
* Thu Jan 03 2008 Matthew Barnes <mbarnes@redhat.com> - 2.14.1-1.fc9
95d8fc
- Update to 2.14.1
95d8fc
95d8fc
* Fri Oct 26 2007 Matthew Barnes <mbarnes@redhat.com> - 2.14.0-2.fc9
95d8fc
- Remove redundant requirements.
95d8fc
- Use name tag where appropriate.
95d8fc
95d8fc
* Sun Sep 16 2007 Matthew Barnes <mbarnes@redhat.com> - 2.14.0-1.fc8
95d8fc
- Update to 2.14.0
95d8fc
95d8fc
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.13.2-3
95d8fc
- Rebuild for selinux ppc32 issue.
95d8fc
95d8fc
* Wed Aug  8 2007 Matthias Clasen <mclasen@redhat.com> - 2.13.2-2
95d8fc
- Update the license field
95d8fc
95d8fc
* Sat Jul 07 2007 Matthew Barnes <mbarnes@redhat.com> - 2.13.2-1.fc8
95d8fc
- Update to 2.13.2
95d8fc
95d8fc
* Fri May 18 2007 Matthew Barnes <mbarnes@redhat.com> - 2.13.1-1.fc8
95d8fc
- Update to 2.13.1
95d8fc
- Remove patch for RH bug #237179 (fixed upstream).
95d8fc
95d8fc
* Thu May 03 2007 Matthew Barnes <mbarnes@redhat.com> - 2.12.3-5.fc7
95d8fc
- Fix devel subpackage dependency (RH bug #238793).
95d8fc
95d8fc
* Thu Apr 19 2007 Matthew Barnes <mbarnes@redhat.com> - 2.12.3-3.fc7
95d8fc
- Add patch for RH bug #237179 (memory leak).
95d8fc
95d8fc
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 2.12.3-2
95d8fc
- rebuild against python 2.5
95d8fc
95d8fc
* Sat Nov 18 2006 Matthew Barnes <mbarnes@redhat.com> - 2.12.3-1.fc7
95d8fc
- Update to 2.12.3
95d8fc
95d8fc
* Thu Oct 26 2006 Matthew Barnes <mbarnes@redhat.com> - 2.12.2-3.fc7
95d8fc
- Add subpackage pygobject2-doc (bug #205231).
95d8fc
95d8fc
* Tue Oct 24 2006 Matthew Barnes <mbarnes@redhat.com> - 2.12.2-2.fc7
95d8fc
- Use python_sitearch instead of python_sitelib.
95d8fc
95d8fc
* Sun Oct 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.12.2-1.fc7
95d8fc
- Update to 2.12.2
95d8fc
95d8fc
* Sun Sep 24 2006 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-3.fc6
95d8fc
- Require glib2-devel for the -devel package.
95d8fc
95d8fc
* Fri Sep 22 2006 Matthew Barnes <mbarnes@redhat.com> - 2.12.1-2.fc6
95d8fc
- Define a python_sitelib macro for files under site_packages.
95d8fc
- Spec file cleanups.
95d8fc
95d8fc
* Tue Sep  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1.fc6
95d8fc
- Update to 2.12.1
95d8fc
- Require pkgconfig for the -devel package
95d8fc
95d8fc
* Sun Aug 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.4-1.fc6
95d8fc
- Update to 2.11.4
95d8fc
- Use pre-built docs
95d8fc
95d8fc
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.3-1.fc6
95d8fc
- Update to 2.11.3
95d8fc
95d8fc
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.2-2.fc6
95d8fc
- BR libxslt
95d8fc
95d8fc
* Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.2-1.fc6
95d8fc
- Update to 2.11.2
95d8fc
95d8fc
* Wed Jul 19 2006 Jesse Keating <jkeating@redhat.com> - 2.11.0-2
95d8fc
- rebuild
95d8fc
95d8fc
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.11.0-1
95d8fc
- Update to 2.11.0
95d8fc
95d8fc
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.10.1-3
95d8fc
- rebuild
95d8fc
- Add missing br libtool
95d8fc
95d8fc
* Fri May 19 2006 John (J5) Palmieri <johnp@redhat.com> - 2.10.1-2
95d8fc
- Cleanup
95d8fc
95d8fc
* Fri May 12 2006 John (J5) Palmieri <johnp@redhat.com> - 2.10.1-1
95d8fc
- Initial package