6edad6e
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
6edad6e
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
6edad6e
%endif
8bf5365
%global minorversion 0.10
c9c2a67
%global xfceversion 4.10
6edad6e
6edad6e
Name:           exo
eaf1b3a
Version:        0.10.2
b50cddd
Release:        5%{?dist}
6edad6e
Summary:        Application library for the Xfce desktop environment
6edad6e
6edad6e
Group:          System Environment/Libraries
f908e7e
# libexo-hal exo-helper mount-notify and exo-mount are all GPLv2+
f908e7e
# everything else is LGPLv2+
6edad6e
License:        LGPLv2+ and GPLv2+
6edad6e
URL:            http://xfce.org/
c9c2a67
#VCS git:git://git.xfce.org/xfce/libxfce4ui
6edad6e
Source0:        http://archive.xfce.org/src/xfce/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2
cdde20b
# internet-mail icon taken from GNOME, license is LGPLv3
cdde20b
Source1:        internet-mail-24.png
cdde20b
Source2:        internet-mail-48.png
c60e5c0
# replace mailto handler with python version
c60e5c0
# https://bugzilla.xfce.org/show_bug.cgi?id=9964
c60e5c0
Source3:        http://skvidal.fedorapeople.org/misc/mailtoparse.py
c9c2a67
Patch1:         exo-0.7.2-remove-xfce-category.patch
8f1a1b6
# Set default applications to the ones we use in Fedora
8f1a1b6
Patch2:         exo-0.10.2-default-apps.patch
b50cddd
# Fix magnet links
b50cddd
# https://bugzilla.xfce.org/show_bug.cgi?id=10098
b50cddd
# https://bugzilla.redhat.com/show_bug.cgi?id=887457
b50cddd
Patch3:         exo-0.10.2-magnet-links.patch
b50cddd
6edad6e
Buildroot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
6edad6e
6edad6e
BuildRequires:  gtk-doc
6edad6e
BuildRequires:  gettext
78bbd7e
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
6edad6e
BuildRequires:  python-devel
78bbd7e
%endif
6edad6e
BuildRequires:  perl-URI
2f3dda4
BuildRequires:  pkgconfig(glib-2.0) >= 2.24.0
2f3dda4
BuildRequires:  pkgconfig(gtk+-2.0) >= 2.20.0
c9c2a67
BuildRequires:  pkgconfig(libxfce4util-1.0) >= %{xfceversion}
c9c2a67
BuildRequires:  pkgconfig(libxfce4ui-1) >= %{xfceversion}
38f09c3
BuildRequires:  libnotify-devel
6edad6e
BuildRequires:  intltool >= 0.31
6edad6e
BuildRequires:  chrpath
6edad6e
BuildRequires:  desktop-file-utils
c5883c2
c5883c2
%description
c5883c2
Extension library for Xfce, targeted at application development.
c5883c2
6edad6e
%package        devel
6edad6e
Summary:        Development tools for exo library
6edad6e
Group:          Development/Libraries
6edad6e
Requires:       %{name} = %{version}-%{release}
6edad6e
Requires:       libxfce4util-devel
6edad6e
Requires:       pkgconfig
c5883c2
c5883c2
%description devel
938eddf
Development tools and static libraries and header files for the exo library.
c5883c2
78bbd7e
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
6edad6e
%package -n     python-exo
6edad6e
Summary:        Python tools for exo library
6edad6e
Group:          Development/Libraries
6edad6e
Requires:       %{name} = %{version}-%{release}
3b6af0f
3b6af0f
%description -n python-exo
3b6af0f
Python libraries and header files for the exo library.
78bbd7e
%endif
6edad6e
c5883c2
%prep
43e3ff3
%setup -q
c5883c2
78bbd7e
%patch1 -p1
8f1a1b6
%patch2 -p1
b50cddd
%patch3 -p1
e38ad31
c5883c2
%build
1d54b4d
%configure --enable-gtk-doc --disable-static
c9c2a67
make %{?_smp_mflags} V=1
c5883c2
c5883c2
%install
c9c2a67
rm -rf %{buildroot}
c9c2a67
make install DESTDIR=%{buildroot} INSTALL='install -p'
c9c2a67
find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
c5883c2
c9c2a67
chrpath --delete %{buildroot}%{_bindir}/exo-desktop-item-edit
c9c2a67
chrpath --delete %{buildroot}%{_bindir}/exo-open
c9c2a67
chrpath --delete %{buildroot}%{_libdir}/xfce4/exo-*/exo-helper-*
78bbd7e
%if 0%{?el6}
c9c2a67
    chrpath --delete %{buildroot}%{_libdir}/gio/modules/libexo-module-*.so
6edad6e
%endif
6edad6e
6edad6e
%find_lang exo-1
9409430
c9c2a67
for file in %{buildroot}/%{_datadir}/applications/%{name}-*.desktop ; do
6edad6e
   desktop-file-validate $file
6edad6e
done
8b30182
c9c2a67
install -Dpm 0644 %{SOURCE1} %{buildroot}%{_datadir}/icons/hicolor/24x24/apps/internet-mail.png
c9c2a67
install -Dpm 0644 %{SOURCE2} %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/internet-mail.png
cdde20b
c60e5c0
# replace upstream perl script with python one. 
c60e5c0
rm -f %{buildroot}%{_libdir}/xfce4/exo-1/exo-compose-mail-1
c60e5c0
install -Dpm 0755 %{SOURCE3} %{buildroot}%{_libdir}/xfce4/exo-1/exo-compose-mail-1
c60e5c0
938eddf
c5883c2
%clean
c9c2a67
rm -rf %{buildroot}
c5883c2
6edad6e
db58bd8
%post
db58bd8
/sbin/ldconfig
Orion Poplawski 7cd6860
%if 0%{?fc13}%{?fc14}
6edad6e
if [ $1 -eq 1 ] ; then
6edad6e
    # For upgrades, the cache will be regenerated by the new package's %postun
6edad6e
    gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules || :
6edad6e
fi
Orion Poplawski 7cd6860
%endif
6edad6e
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
6edad6e
c5883c2
db58bd8
%postun
6edad6e
/sbin/ldconfig
Orion Poplawski dbf14f4
%if 0%{?fc13}%{?fc14}
6edad6e
    gio-querymodules-%{__isa_bits} %{_libdir}/gio/modules &> /dev/null || :
6edad6e
%endif
1fb2a7a
if [ $1 -eq 0 ] ; then
1fb2a7a
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
1fb2a7a
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
1d54b4d
fi
6edad6e
c5883c2
1fb2a7a
%posttrans
1fb2a7a
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
1fb2a7a
6edad6e
6edad6e
%files -f exo-1.lang
3b6af0f
%defattr(-,root,root,-)
6edad6e
%doc AUTHORS ChangeLog NEWS README THANKS COPYING
6edad6e
%dir %{_sysconfdir}/xdg/xfce4
6edad6e
%config(noreplace) %{_sysconfdir}/xdg/xfce4/helpers.rc
3d545e7
%{_bindir}/exo-desktop-item-edit
3d545e7
%{_bindir}/exo-open
3d545e7
%{_bindir}/exo-preferred-applications
6edad6e
%{_libdir}/lib*.so.*
6edad6e
%{_libdir}/xfce4/
6edad6e
%if 0%{?fc13}%{?fc14}%{?el6}
6edad6e
    %{_libdir}/gio/modules/libexo-module-*.so
6edad6e
%endif
6edad6e
%{_datadir}/xfce4/
6edad6e
%{_datadir}/applications/*.desktop
6edad6e
%{_datadir}/icons/hicolor/*/*/*
6edad6e
%{_datadir}/pixmaps/exo-*/
6edad6e
%{_mandir}/man1/exo-open.1.*
c5883c2
c5883c2
%files devel
cdde20b
%defattr(-,root,root,-)
6edad6e
%doc TODO
Kevin Fenzi 425d2b0
%doc %{_datadir}/gtk-doc
938eddf
%{_bindir}/exo-csource
c5883c2
%{_includedir}/exo*
c5883c2
%{_libdir}/lib*.so
c5883c2
%{_libdir}/pkgconfig/*.pc
03305d4
%{_mandir}/man1/exo-csource.1.*
3b6af0f
78bbd7e
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
3b6af0f
%files -n python-exo
3b6af0f
%defattr(-, root, root,-)
6edad6e
%{python_sitearch}/exo-*/
de2ba27
%{python_sitearch}/pyexo.*
78bbd7e
%endif
c5883c2
c5883c2
%changelog
b50cddd
* Fri Jul 05 2013 Kevin Fenzi <kevin@scrye.com> 0.10.2-5
b50cddd
- Add patch to fix magnet links. Fixes bug #887457
b50cddd
8f1a1b6
* Sat May 18 2013 Kevin Fenzi <kevin@scrye.com> 0.10.2-4
8f1a1b6
- Set default browser to midori and default mail app to claws-mail to match our groups
8f1a1b6
c60e5c0
* Fri May 10 2013 Kevin Fenzi <kevin@scrye.com> 0.10.2-3
c60e5c0
- Replace upstream perl script for mail handler with python version. 
c60e5c0
- https://bugzilla.xfce.org/show_bug.cgi?id=9964
c60e5c0
afe0634
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.2-2
afe0634
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
afe0634
eaf1b3a
* Thu Dec 27 2012 Kevin Fenzi <kevin@scrye.com> 0.10.2-1
eaf1b3a
- Update to 0.10.2
eaf1b3a
- Fix changelog dates. 
eaf1b3a
2fe1a38
* Sun Dec 09 2012 Kevin Fenzi <kevin@scrye.com> 0.10.1-1
2fe1a38
- Update to 0.10.1
2fe1a38
8bf5365
* Tue Dec 04 2012 Kevin Fenzi <kevin@scrye.com> 0.10.0-1
8bf5365
- Update to 0.10.0
8bf5365
feb7fd7
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-2
feb7fd7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
feb7fd7
c9c2a67
* Sat Apr 28 2012 Christoph Wickert <cwickert@fedoraproject.org> - 0.8.0-1
c9c2a67
- Update to 0.8.0 (Xfce 4.10 final)
c9c2a67
- Make build verbose
c9c2a67
- Add VCS key
c9c2a67
57a7041
* Sat Apr 14 2012 Kevin Fenzi <kevin@scrye.com> - 0.7.3-1
57a7041
- Update to 0.7.3 (Xfce 4.10pre2)
57a7041
78bbd7e
* Sun Apr 01 2012 Kevin Fenzi <kevin@scrye.com> - 0.7.2-1
78bbd7e
- Update to 0.7.2
78bbd7e
8c41ca3
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2-4
8c41ca3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8c41ca3
e37f62d
* Sun Oct 23 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.6.2-3
e37f62d
- Add Thunar as default file manager (#748277)
e37f62d
Orion Poplawski 7cd6860
* Thu Jul 21 2011 Orion Poplawski <orion@cora.nwra.com> - 0.6.2-2
Orion Poplawski 7cd6860
- Don't run gio-quuerymodules on post in EL6 (bug #722335)
Orion Poplawski 7cd6860
887c31a
* Fri Jun 10 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.6.2-1
887c31a
- Update to 0.6.2
887c31a
Orion Poplawski dbf14f4
* Thu May 19 2011 Orion Poplawski <orion@cora.nwra.com> - 0.6.1-2
Orion Poplawski dbf14f4
- EL6 does not have gio-querymodules
Orion Poplawski dbf14f4
3dd1886
* Mon May 09 2011 Kevin Fenzi <kevin@scrye.com> - 0.6.1-1
3dd1886
- Update to 0.6.1
3dd1886
81cf952
* Sun May 08 2011 Kevin Fenzi <kevin@scrye.com> - 0.6.0-6
81cf952
- Add patch to remove mime types from desktop files. 
81cf952
- Fixes bug #674321
81cf952
81cf952
- https://bugzilla.xfce.org/show_bug.cgi?id=7257
38f09c3
* Tue Apr 26 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.6.0-5
38f09c3
- Remove the hal-devel BuildRequires, too
38f09c3
5bbba09
* Sat Apr 02 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.6.0-4
5bbba09
- exo-devel no longer requires hal-devel
5bbba09
cdde20b
* Sat Apr 02 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.6.0-3
cdde20b
- Add xfce4-mail icon for exo-mail-reader (#678706)
cdde20b
78384fd
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-2
78384fd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
78384fd
eaf1b3a
* Tue Jan 11 2011 Kevin Fenzi <kevin@tummy.com> - 0.6.0-1
Kevin Fenzi 82c3ae9
- Update to 0.6.0
Kevin Fenzi 82c3ae9
6edad6e
* Sun Jan 02 2011 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.6-1
6edad6e
- Update to 0.5.6
6edad6e
- Drop obsolete BR for dbus-glib
6edad6e
6edad6e
* Sat Dec 04 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.5-1
6edad6e
- Update to 0.5.5
6edad6e
- Fix directory ownership
6edad6e
- Run gio-querymodules to update giomodule.cache
6edad6e
6edad6e
* Sun Nov 07 2010 Christoph Wickert <cwickert@fedoraproject.org> - 0.5.4-1
6edad6e
- Update to 0.5.4
6edad6e
Kevin Fenzi a2374cb
* Fri Nov 05 2010 Kevin Fenzi <kevin@tummy.com> - 0.3.107-5
Kevin Fenzi a2374cb
- Rebuild for new libnotify
Kevin Fenzi a2374cb
Kevin Fenzi 425d2b0
* Mon Aug 23 2010 Kevin Fenzi <kevin@tummy.com> - 0.3.107-4
Kevin Fenzi 425d2b0
- Remove unneeded gtk-doc dep. Fixes bug #604350
Kevin Fenzi 425d2b0
4a1dc6d
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.107-3
4a1dc6d
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
4a1dc6d
e3b6474
* Mon Jun 07 2010 Kevin Fenzi <kevin@tummy.com> - 0.3.107-2
e3b6474
- Drop patch1 as it doublefixed bug 6230
e3b6474
bede47b
* Fri May 21 2010 Kevin Fenzi <kevin@tummy.com> - 0.3.107-1
bede47b
- Update to 0.3.107
bede47b
7678faa
* Sat Apr 24 2010 Kevin Fenzi <kevin@tummy.com> - 0.3.106-3
7678faa
- Add patch for xfce bug 6230
7678faa
d7732cf
* Thu Dec 17 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.106-2
d7732cf
- Remove libtool archive from python-exo package
d7732cf
d2d2541
* Thu Dec 17 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.106-1
d2d2541
- Update to 0.3.106
d2d2541
- Remove upstreamed sync patch
d2d2541
de71699
* Mon Oct 19 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.105-1
03305d4
- Update to 0.3.105
03305d4
- Tweak mount.rc to use UTF-8 (to not bring back #508823 again)
03305d4
a4e1cd0
* Sat Oct 10 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.104-1
a4e1cd0
- Update to 0.3.104
a4e1cd0
bba7fba
* Sat Oct 10 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.103-2
bba7fba
- Disable parallel make due to multilib conflicts.
bba7fba
6d3f4b9
* Sat Oct 10 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.103-1
6d3f4b9
- Update to 0.3.103
6d3f4b9
- Drop patches for URL quoting and default mount options (fixed upstream)
6d3f4b9
- Revert useless touch -r trick
6d3f4b9
9b7d01a
* Wed Sep 30 2009 Kevin Fenzi <kevin@tummy.com> - 0.3.101-5
9b7d01a
- Use touch -r trick to fix multilib issue
9b7d01a
1fb2a7a
* Thu Sep 10 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.101-4
1fb2a7a
- Mount vfat and ntfs volumes with UTF-8 (#508823)
1fb2a7a
- Mount ntfs with ntfs-3g
1fb2a7a
98c2ac9
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.101-3
98c2ac9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
98c2ac9
bf01a30
* Fri Jul 17 2009 Kevin Fenzi <kevin@tummy.com> - 0.3.101-2
bf01a30
- Add patch to fix url quoting (bug #509730)
bf01a30
a516ba7
* Sun Apr 19 2009 Kevin Fenzi <kevin@tummy.com> - 0.3.101-1
a516ba7
- Update to 0.3.101
a516ba7
938eddf
* Mon Mar 02 2009 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.100-2
938eddf
- Fix directory ownership problems
938eddf
- Move exo-csource into devel package
938eddf
- Make devel package require pkgconfig and gtk-doc
938eddf
- Mark gtk-doc files as %%doc
938eddf
6ee30ab
* Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 0.3.100-1
6ee30ab
- Update to 0.3.100
6ee30ab
- Remove some unneeded BuildRequires
6ee30ab
3a42530
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.99.1-2
3a42530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3a42530
7414e8f
* Mon Jan 26 2009 Kevin Fenzi <kevin@tummy.com> - 0.3.99.1-1
7414e8f
- Update to 0.3.99.1
7414e8f
d7d9359
* Tue Jan 13 2009 Kevin Fenzi <kevin@tummy.com> 0.3.93-1
d7d9359
- Update to 0.3.93
d7d9359
9409430
* Tue Dec 23 2008 Kevin Fenzi <kevin@tummy.com> 0.3.92-1
9409430
- Update to 0.3.92
9409430
9409430
* Tue Dec 16 2008 Kevin Fenzi <kevin@tummy.com> 0.3.4-5
9409430
- Add hal-devel Requires to devel package. 
9409430
b179736
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.3.4-4
b179736
- Rebuild for Python 2.6
b179736
1d54b4d
* Mon Oct 27 2008 Christoph Wickert <cwickert@fedoraproject.org> - 0.3.4-3
1d54b4d
- Add two Debian patches to fix broken regex and gcc_hardening
1d54b4d
- Fix rpm group
1d54b4d
- Update gtk-update-icon-cache scriptlets
1d54b4d
- Configure with --disable-static
1d54b4d
605f76a
* Sun Feb 10 2008 Kevin Fenzi <kevin@tummy.com> - 0.3.4-2
605f76a
- Rebuild for gcc43
605f76a
a56cfdc
* Sun Dec  2 2007 Kevin Fenzi <kevin@tummy.com> - 0.3.4-1
a56cfdc
- Update to 0.3.4
a56cfdc
f908e7e
* Tue Aug 21 2007 Kevin Fenzi <kevin@tummy.com> - 0.3-2-3
f908e7e
- Update license tag. 
f908e7e
9e581e4
* Thu Feb  8 2007 Kevin Fenzi <kevin@tummy.com> - 0.3.2-2
9e581e4
- Add hal-devel and libnotify-devel BuildRequires. Fixes #225135
9e581e4
43e3ff3
* Sun Jan 21 2007 Kevin Fenzi <kevin@tummy.com> - 0.3.2-1
43e3ff3
- Upgrade to 0.3.2
43e3ff3
ddcc6d4
* Fri Dec  8 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.12-0.3.rc2
ddcc6d4
- Rebuild for new python
ddcc6d4
ddcc6d4
* Thu Nov 16 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.12-0.2.rc2
ddcc6d4
- Rebuild with fixed xfce-mcs-manager-devel
ddcc6d4
- Add exo-preferred-applicatons-settings.so
ddcc6d4
48db359
* Thu Nov  9 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.12-0.1.rc2
48db359
- Update to 0.3.1.12rc2
48db359
a232003
* Thu Oct  5 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.10-0.6.rc1
a232003
- Added libxfce4util-devel Requires for the devel package
a232003
db58bd8
* Thu Oct  5 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.10-0.5.rc1
db58bd8
- Added gtk-update-icon-cache
db58bd8
3b6af0f
* Wed Oct  4 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.10-0.4.rc1
3b6af0f
- Bump release for devel checkin
3b6af0f
3b6af0f
* Thu Sep 28 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.10-0.3.rc1
3b6af0f
- Remove libxfce4gui/libxfce4gui-devel Requires/BuildRequires
3b6af0f
eaf1b3a
* Thu Sep  7 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.10-0.1.rc1
223c446
- Upgrade to 0.3.1.10-0.1.rc1
223c446
ab6e10a
* Tue Aug 29 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.8-0.3.beta2
ab6e10a
- Add perl-URI BuildRequires
ab6e10a
3d545e7
* Wed Aug  2 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.8-0.1.beta2
3d545e7
- Fix release numbering
3d545e7
- General cleanup for devel push
3d545e7
- Mark helpers.rc as a configfile
d8dd41c
3d545e7
* Wed Jul 12 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.8-0.beta2
3d545e7
- Upgrade to 0.3.1.8beta2
3d545e7
- Removed unneeded patch
3d545e7
3d545e7
* Mon May  8 2006 Kevin Fenzi <kevin@tummy.com> - 0.3.1.6beta1
3d545e7
- Upgrade to 0.3.1.6beta1
3d545e7
3d545e7
* Sat Jan 21 2006 Kevin Fenzi <kevin@scrye.com> - 0.3.0-11.fc5
3d545e7
- Add imake to BR to allow detection of modular xorg
3a8bd15
baccda8
* Wed Aug 17 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-10.fc5
baccda8
- Rebuild for new libcairo and libpixman
baccda8
14715b7
* Fri Jul  1 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-9.fc5
14715b7
- Bump release for a new build
14715b7
e38ad31
* Mon Jun 20 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-8.fc5
e38ad31
- Add patch to make x86_64 package build
e38ad31
de2ba27
* Thu Jun  2 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-7.fc5
de2ba27
- Change python_sitelib to python_sitearch
de2ba27
8772e51
* Tue May 31 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-6
8772e51
- Add python_sitelib to build on x86_64
8772e51
- Add dist to release
8772e51
f886131
* Tue May 31 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-5
f886131
- Add python-devel buildrequires
f886131
9006835
* Mon May 30 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-4
9006835
- Fixed exo gtk-doc directory not being included in devel
9006835
- Changed pygtk defs dir 
9006835
- Added Requires to devel for pkg-config dependency
9006835
8b30182
* Mon May 30 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-3
8b30182
- Added gettext to buildrequires
8b30182
- Moved devel docs to devel package only
8b30182
- Added find_lang for locale files
8b30182
- Added more docs to base package
8b30182
c5883c2
* Fri May 27 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-2
c5883c2
- Added lang to files
c5883c2
- Fixed some file paths
c5883c2
- Remove unneeded la files
9f79765
- Added pygtk2-devel buildrequires
c5883c2
c5883c2
* Sat Mar 19 2005 Kevin Fenzi <kevin@tummy.com> - 0.3.0-1
c5883c2
- Upgraded to 0.3.0 version
c5883c2
c5883c2
* Tue Mar  8 2005 Kevin Fenzi <kevin@tummy.com> - 0.2.0-3
3d545e7
- Removed generic INSTALL doc from %%doc
c5883c2
c5883c2
* Sun Mar  6 2005 Kevin Fenzi <kevin@tummy.com> - 0.2.0-2
c5883c2
- Inital Fedora Extras version