4ffabb
# Last updated for version 3.18.0
4ffabb
%define glib2_version                  2.38.0
4ffabb
%define gobject_introspection_version  1.46.0
4ffabb
%define python2_version                2.7
4ffabb
4ffabb
%if 0%{?fedora} > 12
4ffabb
%global with_python3 1
4ffabb
%define python3_version                3.1
4ffabb
%endif
4ffabb
4ffabb
%global with_check 0
4ffabb
4ffabb
Name:           pygobject3
4ffabb
Version:        3.22.0
4ffabb
Release:        1%{?dist}.1
4ffabb
Summary:        Python bindings for GObject Introspection
4ffabb
4ffabb
License:        LGPLv2+ and MIT
4ffabb
URL:            https://wiki.gnome.org/Projects/PyGObject
4ffabb
Source0:        https://download.gnome.org/sources/pygobject/3.22/pygobject-%{version}.tar.xz
4ffabb
4ffabb
# https://bugzilla.redhat.com/1247996
4ffabb
# which reverts https://bugzilla.gnome.org/709183
4ffabb
Patch1:         pygobject-3.22.0-allow-static-module-import.patch
4ffabb
4ffabb
BuildRequires:  glib2-devel >= %{glib2_version}
4ffabb
BuildRequires:  gobject-introspection-devel >= %{gobject_introspection_version}
4ffabb
BuildRequires:  python2-devel >= %{python2_version}
4ffabb
%if 0%{?with_python3}
4ffabb
BuildRequires:  python3-devel >= %{python3_version}
4ffabb
BuildRequires:  python3-cairo-devel
4ffabb
%endif # if with_python3
4ffabb
4ffabb
BuildRequires:  cairo-gobject-devel
4ffabb
BuildRequires:  pycairo-devel
4ffabb
4ffabb
# Required by the upstream selftest suite:
4ffabb
%if %{with_check}
4ffabb
%if 0%{?fedora}
4ffabb
# Temporarily disabled pyflakes tests to avoid the build failing due to too new
4ffabb
# pyflakes 0.7.2 in F19
4ffabb
# https://bugzilla.gnome.org/show_bug.cgi?id=701009
4ffabb
#BuildRequires:  pyflakes
4ffabb
BuildRequires:  python-pep8
4ffabb
%endif
4ffabb
## for the Gdk and Gtk typelibs, used during the test suite:
4ffabb
BuildRequires:  gtk3
4ffabb
## for xvfb-run:
4ffabb
BuildRequires:  xorg-x11-server-Xvfb
4ffabb
BuildRequires:  dejavu-sans-fonts
4ffabb
BuildRequires:  dejavu-sans-mono-fonts
4ffabb
BuildRequires:  dejavu-serif-fonts
4ffabb
## for dbus-launch, used by test_gdbus:
4ffabb
BuildRequires:  dbus-x11
4ffabb
%endif # with_check
4ffabb
4ffabb
%description
4ffabb
The %{name} package provides a convenient wrapper for the GObject library
4ffabb
for use in Python programs.
4ffabb
4ffabb
%package     -n python-gobject
4ffabb
Summary:        Python 2 bindings for GObject Introspection
4ffabb
Requires:       python-gobject-base%{?_isa} = %{version}-%{release}
4ffabb
# The cairo override module depends on this
4ffabb
Requires:       pycairo%{?_isa}
4ffabb
4ffabb
Obsoletes:      %{name} < 3.17.90-2
4ffabb
Provides:       %{name} = %{version}-%{release}
4ffabb
Provides:       %{name}%{?_isa} = %{version}-%{release}
4ffabb
4ffabb
%description -n python-gobject
4ffabb
The python-gobject package provides a convenient wrapper for the GObject
4ffabb
library and and other libraries that are compatible with GObject Introspection,
4ffabb
for use in Python 2 programs.
4ffabb
4ffabb
%package     -n python-gobject-base
4ffabb
Summary:        Python 2 bindings for GObject Introspection base package
4ffabb
Requires:       gobject-introspection%{?_isa} >= %{gobject_introspection_version}
4ffabb
4ffabb
Obsoletes:      %{name}-base < 3.17.90-2
4ffabb
Provides:       %{name}-base = %{version}-%{release}
4ffabb
Provides:       %{name}-base%{?_isa} = %{version}-%{release}
4ffabb
4ffabb
%description -n python-gobject-base
4ffabb
This package provides the non-cairo specific bits of the GObject Introspection
4ffabb
library.
4ffabb
4ffabb
%if 0%{?with_python3}
4ffabb
%package     -n python3-gobject
4ffabb
Summary:        Python 3 bindings for GObject Introspection
4ffabb
Requires:       python3-gobject-base%{?_isa} = %{version}-%{release}
4ffabb
# The cairo override module depends on this
4ffabb
Requires:       python3-cairo%{?_isa}
4ffabb
4ffabb
%description -n python3-gobject
4ffabb
The python3-gobject package provides a convenient wrapper for the GObject 
4ffabb
library and and other libraries that are compatible with GObject Introspection, 
4ffabb
for use in Python 3 programs.
4ffabb
4ffabb
%package     -n python3-gobject-base
4ffabb
Summary:        Python 3 bindings for GObject Introspection base package
4ffabb
Requires:       gobject-introspection%{?_isa} >= %{gobject_introspection_version}
4ffabb
4ffabb
%description -n python3-gobject-base
4ffabb
This package provides the non-cairo specific bits of the GObject Introspection
4ffabb
library.
4ffabb
4ffabb
%endif # with_python3
4ffabb
4ffabb
%package        devel
4ffabb
Summary:        Development files for embedding PyGObject introspection support
4ffabb
Requires:       python-gobject%{?_isa} = %{version}-%{release}
4ffabb
%if 0%{?with_python3}
4ffabb
Requires:       python3-gobject%{?_isa} = %{version}-%{release}
4ffabb
%endif
4ffabb
Requires:       gobject-introspection-devel%{?_isa}
4ffabb
4ffabb
%description    devel
4ffabb
This package contains files required to embed PyGObject
4ffabb
4ffabb
%prep
4ffabb
%setup -q -n pygobject-%{version}
4ffabb
%patch1 -p1 -b .allow-static-module-import
4ffabb
4ffabb
%if 0%{?with_python3}
4ffabb
rm -rf %{py3dir}
4ffabb
cp -a . %{py3dir}
4ffabb
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
4ffabb
%endif # with_python3
4ffabb
4ffabb
find -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python}|'
4ffabb
4ffabb
%build
4ffabb
PYTHON=%{__python} 
4ffabb
export PYTHON
4ffabb
%configure
4ffabb
make %{?_smp_mflags} V=1
4ffabb
4ffabb
%if 0%{?with_python3}
4ffabb
pushd %{py3dir}
4ffabb
PYTHON=%{__python3}
4ffabb
export PYTHON
4ffabb
%configure
4ffabb
make %{?_smp_mflags} V=1
4ffabb
popd
4ffabb
%endif # with_python3
4ffabb
4ffabb
%install
4ffabb
%if 0%{?with_python3}
4ffabb
pushd %{py3dir}
4ffabb
PYTHON=%{__python3}
4ffabb
export PYTHON
4ffabb
%make_install
4ffabb
popd
4ffabb
4ffabb
%endif # with_python3
4ffabb
4ffabb
%make_install
4ffabb
find $RPM_BUILD_ROOT -name '*.la' -delete
4ffabb
4ffabb
# Don't include makefiles in the installed docs, in order to avoid creating
4ffabb
# multilib conflicts
4ffabb
rm -rf _docs
4ffabb
mkdir _docs
4ffabb
cp -a examples _docs
4ffabb
rm _docs/examples/Makefile*
4ffabb
4ffabb
%check
4ffabb
%if %{with_check}
4ffabb
# Run the selftests under a temporary xvfb X server (so that they can
4ffabb
# initialize Gdk etc):
4ffabb
4ffabb
# FIXME: disabled for python3
4ffabb
# Currently this fails with python3 with:
4ffabb
#  File "/builddir/build/BUILD/python3-pygobject3-3.3.4-4.fc19/gi/__init__.py", line 23, in <module>
4ffabb
#    from ._gi import _API, Repository
4ffabb
#ValueError: level must be >= 0
4ffabb
# Reported upstream as http://bugs.python.org/issue15610
4ffabb
%if 0
4ffabb
pushd %{py3dir}
4ffabb
PYTHON=%{__python3}
4ffabb
export PYTHON
4ffabb
xvfb-run make DESTDIR=$RPM_BUILD_ROOT check V=1
4ffabb
popd
4ffabb
%endif # with_python3
4ffabb
4ffabb
xvfb-run make DESTDIR=$RPM_BUILD_ROOT check V=1
4ffabb
4ffabb
%endif # with_check
4ffabb
4ffabb
%files -n python-gobject
4ffabb
%{python_sitearch}/gi/_gi_cairo.so
4ffabb
4ffabb
%files -n python-gobject-base
4ffabb
%license COPYING
4ffabb
%doc AUTHORS NEWS README
4ffabb
%dir %{python_sitearch}/gi
4ffabb
%{python_sitearch}/gi/*
4ffabb
%exclude %{python_sitearch}/gi/_gi_cairo.so
4ffabb
%{python_sitearch}/pygobject-*.egg-info
4ffabb
%{python_sitearch}/pygtkcompat/
4ffabb
4ffabb
%if 0%{?with_python3}
4ffabb
%files -n python3-gobject
4ffabb
%{python3_sitearch}/gi/_gi_cairo*.so
4ffabb
4ffabb
%files -n python3-gobject-base
4ffabb
%license COPYING
4ffabb
%doc AUTHORS NEWS README
4ffabb
%dir %{python3_sitearch}/gi
4ffabb
%{python3_sitearch}/gi/*
4ffabb
%exclude %{python3_sitearch}/gi/_gi_cairo*.so
4ffabb
%{python3_sitearch}/pygobject-*.egg-info
4ffabb
%{python3_sitearch}/pygtkcompat/
4ffabb
%endif # with_python3
4ffabb
4ffabb
%files devel
4ffabb
%doc _docs/*
4ffabb
%dir %{_includedir}/pygobject-3.0/
4ffabb
%{_includedir}/pygobject-3.0/pygobject.h
4ffabb
%{_libdir}/pkgconfig/pygobject-3.0.pc
4ffabb
4ffabb
%changelog
4ffabb
* Thu Nov 09 2017 John Francini - 3.22.0-1.1
4ffabb
- Bump release to allow rebuild to fix BZ#1510160
4ffabb
4ffabb
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 3.22.0-1
4ffabb
- Update to 3.22.0
4ffabb
- Resolves: #1387039
4ffabb
4ffabb
* Tue Sep 15 2015 Matthew Barnes <mbarnes@redhat.com> - 3.14.0-3
4ffabb
- Allow importing static modules to fix RHEL7 rebase regressions
4ffabb
4ffabb
* Fri May 22 2015 Rui Matos <rmatos@redhat.com> - 3.14.0-2
4ffabb
- Add patch to fix a coverity issue
4ffabb
  https://bugzilla.gnome.org/show_bug.cgi?id=749698
4ffabb
4ffabb
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
4ffabb
- Update to 3.14.0
4ffabb
4ffabb
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.92-1
4ffabb
- Update to 3.13.92
4ffabb
4ffabb
* Tue Sep 02 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.91-1
4ffabb
- Update to 3.13.91
4ffabb
4ffabb
* Thu Aug 21 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.90-2
4ffabb
- Backport a fix for virt-manager crash (#1130758)
4ffabb
4ffabb
* Tue Aug 19 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.90-1
4ffabb
- Update to 3.13.90
4ffabb
4ffabb
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-2
4ffabb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4ffabb
4ffabb
* Fri Aug 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.4-1
4ffabb
- Update to 3.13.4
4ffabb
4ffabb
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 3.13.3-1
4ffabb
- Update to 3.13.3
4ffabb
4ffabb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.2-2
4ffabb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
4ffabb
4ffabb
* Mon May 26 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.2-1
4ffabb
- Update to 3.13.2
4ffabb
- Drop old testsuite patches
4ffabb
4ffabb
* Mon May 12 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 3.13.1-2
4ffabb
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
4ffabb
4ffabb
* Tue Apr 29 2014 Richard Hughes <rhughes@redhat.com> - 3.13.1-1
4ffabb
- Update to 3.13.1
4ffabb
4ffabb
* Tue Apr 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
4ffabb
- Update to 3.12.1
4ffabb
4ffabb
* Sat Apr 05 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.0-2
4ffabb
- Update dep versions
4ffabb
- Tighten deps with %%_isa
4ffabb
4ffabb
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
4ffabb
- Update to 3.12.0
4ffabb
4ffabb
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.92-1
4ffabb
- Update to 3.11.92
4ffabb
4ffabb
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
4ffabb
- Update to 3.11.91
4ffabb
4ffabb
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
4ffabb
- Update to 3.11.90
4ffabb
4ffabb
* Wed Feb 05 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-1
4ffabb
- Update to 3.11.5
4ffabb
4ffabb
* Tue Jan 14 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
4ffabb
- Update to 3.11.4
4ffabb
4ffabb
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 3.11.3-1
4ffabb
- Update to 3.11.3
4ffabb
4ffabb
* Mon Nov 18 2013 Richard Hughes <rhughes@redhat.com> - 3.11.2-1
4ffabb
- Update to 3.11.2
4ffabb
4ffabb
* Tue Oct 29 2013 Richard Hughes <rhughes@redhat.com> - 3.11.1-1
4ffabb
- Update to 3.11.1
4ffabb
4ffabb
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0-1
4ffabb
- Update to 3.10.0
4ffabb
4ffabb
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.92-1
4ffabb
- Update to 3.9.92
4ffabb
4ffabb
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.91-1
4ffabb
- Update to 3.9.91
4ffabb
4ffabb
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.90-1
4ffabb
- Update to 3.9.90
4ffabb
4ffabb
* Fri Aug  9 2013 Daniel Drake <dsd@laptop.org> - 3.9.5-1
4ffabb
- Update to 3.9.5
4ffabb
4ffabb
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.2-2
4ffabb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4ffabb
4ffabb
* Sun Jun 02 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.2-1
4ffabb
- Update to 3.9.2
4ffabb
4ffabb
* Sun Jun 02 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.1-2
4ffabb
- Disable pyflakes tests to avoid failures with too new pyflakes 0.7.2
4ffabb
4ffabb
* Fri May 10 2013 Richard Hughes <rhughes@redhat.com> - 3.9.1-1
4ffabb
- Update to 3.9.1
4ffabb
4ffabb
* Thu Apr 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 3.8.1-2
4ffabb
- Add upstream patch to fix Sugar (RHBZ 947538)
4ffabb
4ffabb
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.1-1
4ffabb
- Update to 3.8.1
4ffabb
4ffabb
* Tue Apr  2 2013 David Malcolm <dmalcolm@redhat.com> - 3.8.0-2
4ffabb
- add workarounds for ppc64 (rhbz#924425)
4ffabb
4ffabb
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0-1
4ffabb
- Update to 3.8.0
4ffabb
4ffabb
* Wed Mar 20 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.92-1
4ffabb
- Update to 3.7.92
4ffabb
4ffabb
* Thu Mar  7 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
4ffabb
- Update to 3.7.91
4ffabb
4ffabb
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.90-1
4ffabb
- Update to 3.7.90
4ffabb
4ffabb
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.5.1-1
4ffabb
- Update to 3.7.5.1
4ffabb
- Re-enable tests
4ffabb
4ffabb
* Wed Jan 16 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.4-1
4ffabb
- Update to 3.7.4
4ffabb
4ffabb
* Fri Dec 28 2012 Dan HorĂ¡k <dan[at]danny.cz> - 3.7.3-2
4ffabb
- Fix GBytes test (gnome#690837)
4ffabb
4ffabb
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.3-1
4ffabb
- Update to 3.7.3
4ffabb
- Drop upstreamed patches; rebase the ignore-more-pep8-errors patch
4ffabb
4ffabb
* Thu Dec 13 2012 Ray Strode <rstrode@redhat.com> 3.7.1-3
4ffabb
- Split non-cairo parts into a subpackage
4ffabb
4ffabb
* Mon Nov 12 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.1-2
4ffabb
- Remove lib64 rpaths (#817701)
4ffabb
- Move code examples to the -devel subpackage and fix the multilib
4ffabb
  conflict (#831434)
4ffabb
4ffabb
* Fri Nov 09 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.1-1
4ffabb
- Update to 3.7.1
4ffabb
4ffabb
* Tue Nov  6 2012 Daniel Drake <dsd@laptop.org> - 3.4.1.1-2
4ffabb
- Upstream fix for property lookup; needed for basic Sugar operation.
4ffabb
4ffabb
* Wed Oct 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1.1-1
4ffabb
- Update to 3.4.1.1
4ffabb
4ffabb
* Thu Sep 13 2012 Daniel Drake <dsd@laptop.org> - 3.3.91-1
4ffabb
- Latest version; upstreamed patches dropped
4ffabb
4ffabb
* Wed Aug 15 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-9
4ffabb
- avoid dragging pyflakes and python-pep8 into RHEL (patch 7)
4ffabb
4ffabb
* Fri Aug 10 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-8
4ffabb
- add endianness patch (rhbz#841596; attachment 603634)
4ffabb
4ffabb
* Fri Aug 10 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-7
4ffabb
- update endianness patch for rhbz#841596 (to attachment 603367)
4ffabb
4ffabb
* Thu Aug  9 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-6
4ffabb
- fix issues on big-endian 64-bit machines (rhbz#841596, rhbz#842880)
4ffabb
4ffabb
* Thu Aug  9 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-5
4ffabb
- use xvfb-run in selftests; update known failures
4ffabb
4ffabb
* Wed Aug  8 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-4
4ffabb
- add a %%check check; add V=1 to all make invocations
4ffabb
4ffabb
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-3
4ffabb
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
4ffabb
4ffabb
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.4-2
4ffabb
- remove rhel logic from with_python3 conditional
4ffabb
4ffabb
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 3.3.4-1
4ffabb
- Update to 3.3.4
4ffabb
4ffabb
* Tue Jun 26 2012 David Malcolm <dmalcolm@redhat.com> - 3.3.3.1-2
4ffabb
- fix a segfault when dealing with mismatched .so/typelib files
4ffabb
4ffabb
* Mon Jun 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.3.1-1
4ffabb
- Update to 3.3.3.1
4ffabb
4ffabb
* Tue Jun 19 2012 Kalev Lember <kalevlember@gmail.com> - 3.3.2-1
4ffabb
- Update to 3.3.2
4ffabb
4ffabb
* Sat May 05 2012 Kalev Lember <kalevlember@gmail.com> - 3.3.1-1
4ffabb
- Update to 3.3.1
4ffabb
- Dropped the now unneeded -lm patch
4ffabb
4ffabb
* Tue Mar 27 2012 Kalev Lember <kalevlember@gmail.com> - 3.2.0-1
4ffabb
- Update to 3.2.0
4ffabb
4ffabb
* Thu Mar 22 2012 Matthias Clasen <mclasen@redhat.com> - 3.1.93-1
4ffabb
- Update to 3.1.93
4ffabb
4ffabb
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 3.1.92-1
4ffabb
- Update to 3.1.92
4ffabb
4ffabb
* Sun Feb 26 2012 Matthias Clasen <mclasen@redhat.com> - 3.1.1-1
4ffabb
- Update to 3.1.1
4ffabb
4ffabb
* Tue Feb  7 2012 Matthias Clasen <mclasen@redhat.com> - 3.1.0-1
4ffabb
- Update to 3.1.0
4ffabb
4ffabb
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.3-2
4ffabb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4ffabb
4ffabb
* Tue Dec 20 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 3.0.3-1
4ffabb
- udpate to 3.0.3
4ffabb
4ffabb
* Sat Oct 22 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 3.0.2-1
4ffabb
- udpate to 3.0.2
4ffabb
4ffabb
* Fri Sep 30 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 3.0.1-1
4ffabb
- udpate to 3.0.1
4ffabb
4ffabb
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.0-1
4ffabb
- Update to 3.0.0
4ffabb
4ffabb
* Thu Sep 15 2011 John (J5) Palmieri <johnp@gnome.org> - 2.90.4-1
4ffabb
- update to 2.90.4
4ffabb
- get rid of packaging cruft that is taken care of by upstream now
4ffabb
4ffabb
* Wed Aug 31 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2.90.3-1
4ffabb
- udpate to 2.90.3
4ffabb
4ffabb
* Thu Aug 22 2011 John (J5) Palmieri <johnp@redhat.com> - 2.90.2-3
4ffabb
- remove some old requires
4ffabb
4ffabb
* Thu Aug 19 2011 John (J5) Palmieri <johnp@redhat.com> - 2.90.2-2
4ffabb
- fix up issues uncovered during package review
4ffabb
- disable docs because they still reference the static bindings 
4ffabb
  and upstream is working on new documentation
4ffabb
4ffabb
* Thu Aug 18 2011 John (J5) Palmieri <johnp@redhat.com> - 2.90.2-1
4ffabb
- Initial package