1cd4efb
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
eff208d
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
55410b8
55410b8
Name:		deluge
7fed336
Version:	1.1.9
3b35315
Release:	2%{?dist}
9c4740e
Summary:	A GTK+ BitTorrent client with support for DHT, UPnP, and PEX
eff208d
Group:		Applications/Internet
694102b
License:	GPLv3 with exceptions
55410b8
URL:		http://deluge-torrent.org/           
55410b8
c55e8de
Source0:	http://download.deluge-torrent.org/source/%{version}/%{name}-%{version}.tar.bz2
67c03c9
3b11751
## The scalable icon needs to be installed to the proper place.
3b11751
Patch0: 	%{name}-scalable-icon-dir.diff
3b11751
55410b8
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
cb00800
BuildArch:	noarch
55410b8
55410b8
BuildRequires:	desktop-file-utils
eff208d
BuildRequires:	python-devel
7abc2fb
BuildRequires:	python-setuptools
cb00800
## The build script checks for the libtorrent module and skips compiling the
cb00800
## in-tarball one if this is found.
3b35315
BuildRequires:	rb_libtorrent-python
55410b8
55410b8
Requires:	/bin/sh
55eb20b
Requires:	dbus-python
afd4fc2
Requires:	dbus-x11
0cfc93b
## Required for the proper ownership of icon dirs.
0cfc93b
Requires:	hicolor-icon-theme
eff208d
Requires:	pygtk2-libglade
09df20e
Requires:	pyOpenSSL
7fed336
Requires:	python-chardet
b5bdc90
Requires:	python-setuptools
eff208d
Requires:	pyxdg
3b35315
Requires:	rb_libtorrent-python
55410b8
55410b8
%description
55410b8
Deluge is a new BitTorrent client, created using Python and GTK+. It is
55410b8
intended to bring a native, full-featured client to Linux GTK+ desktop
55410b8
environments such as GNOME and XFCE. It supports features such as DHT
e275763
(Distributed Hash Tables), PEX (ĀµTorrent-compatible Peer Exchange), and UPnP
e275763
(Universal Plug-n-Play) that allow one to more easily share BitTorrent data
e275763
even from behind a router with virtually zero configuration of port-forwarding.
55410b8
55410b8
7fed336
%package	flags
7fed336
Summary:	Country flags for peer location display in Deluge
7fed336
Group:		Applications/Internet
7fed336
License:	GPLv3
7fed336
Requires:	%{name} = %{version}-%{release}
7fed336
7fed336
%description	flags
7fed336
The %{name}-flags package contains optional country flags which are used to
7fed336
display the location of peers in the "Peers" information tab.
7fed336
7fed336
55410b8
%prep
c55e8de
%setup -qn "%{name}-%{version}"
3b11751
%patch0 -p0 -b .fix-scalable-icon-dir
55410b8
55410b8
55410b8
%build
9c4740e
CFLAGS="%{optflags}" %{__python} setup.py build
55410b8
55410b8
55410b8
%install
55410b8
rm -rf %{buildroot}
55eb20b
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
9c4740e
desktop-file-install --vendor fedora			\
55410b8
	--dir %{buildroot}%{_datadir}/applications	\
9c4740e
	--copy-name-to-generic-name			\
55eb20b
	--add-mime-type=application/x-bittorrent	\
9c4740e
	--delete-original				\
9c4740e
	--remove-category=Application			\
55eb20b
	%{buildroot}%{_datadir}/applications/%{name}.desktop
4d1929a
4d1929a
## NOTE: The lang files should REEEAALLLY be in a standard place such as
6ffe6d1
##       /usr/share/locale or similar. It'd make things so much nicer for
6ffe6d1
##       the packaging. :O
6ffe6d1
## A bit of sed magic to mark the translation files with %%lang, taken from
6ffe6d1
## find-lang.sh (part of the rpm-build package) and tweaked somewhat. We
6ffe6d1
## cannot (unfortunately) call find-lang directly since it's not on a
6ffe6d1
## "$PREFIX/share/locale/"-ish directory tree.
6ffe6d1
pushd %{buildroot}
6ffe6d1
	find -type f -o -type l \
6ffe6d1
		| sed '
cb00800
			s:%{buildroot}%{python_sitelib}::
6ffe6d1
			s:^\.::
6ffe6d1
			s:\(.*/deluge/i18n/\)\([^/_]\+\)\(.*\.mo$\):%lang(\2) \1\2\3:
6ffe6d1
			s:^\([^%].*\)::
6ffe6d1
			s:%lang(C) ::
6ffe6d1
			/^$/d' \
6ffe6d1
	> %{name}.filelist
7fed336
6ffe6d1
## We've got the .mo files now; but we need the rest of the files in those
6ffe6d1
## dirs. We can't just glob in the %%files, as that would add duplicate
6ffe6d1
## entries for the .mo files which we've already marked with appropriate
6ffe6d1
## %%lang-fu. 
7fed336
	find ./%{python_sitelib}/%{name} -not -iname '%{name}.mo' -type f \
7fed336
		| grep -v 'pixmaps/flags' | sed 's:^\./::' >> %{name}.filelist
7fed336
	find ./%{python_sitelib}/%{name} -type d  | grep -v 'pixmaps/flags' \
7fed336
		| sed 's:^\./:%%dir :' >> %{name}.filelist
7fed336
6ffe6d1
## Now we move that list back to our sources, so that '%%files -f' can find it
6ffe6d1
## properly.
6ffe6d1
popd && mv %{buildroot}/%{name}.filelist .
55410b8
55410b8
55410b8
%clean
55410b8
rm -rf %{buildroot}
55410b8
55410b8
6ffe6d1
%files -f %{name}.filelist
55410b8
%defattr(-,root,root,-)
7fed336
%doc ChangeLog LICENSE README
c55e8de
%{python_sitelib}/%{name}-%{version}-py?.?.egg-info/
0cfc93b
%{_bindir}/%{name}
7abc2fb
%{_bindir}/%{name}d
55410b8
%{_datadir}/applications/fedora-%{name}.desktop
6ffe6d1
%{_datadir}/pixmaps/%{name}.*
3b11751
%{_datadir}/icons/hicolor/*/apps/%{name}.*
6ffe6d1
%{_mandir}/man?/%{name}*
6ffe6d1
7fed336
%files	flags
7fed336
%defattr(-,root,root,-)
7fed336
%doc LICENSE
7fed336
%{python_sitelib}/%{name}/data/pixmaps/flags/
7fed336
55410b8
55410b8
%post
55410b8
update-desktop-database &>/dev/null ||:
96ba887
touch --no-create %{_datadir}/icons/hicolor
96ba887
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
96ba887
	%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
96ba887
fi
55410b8
55410b8
55410b8
%postun
55410b8
update-desktop-database &> /dev/null ||:
96ba887
touch --no-create %{_datadir}/icons/hicolor
96ba887
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
96ba887
	%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
96ba887
fi
55410b8
55410b8
55410b8
%changelog
3b35315
* Wed Jul 08 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.9-2
3b35315
- Fixed rb_libtorrent-python dependency, so as not to use the
3b35315
  %%min_rblibtorrent_ver macro any more (#510264).
3b35315
7fed336
* Wed Jun 17 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.9-1
7fed336
- Update to new upstream bug-fix release (1.1.9).
7fed336
- Do not hard-code minimum rb_libtorrent version. (We're only building against
7fed336
  the system rb_libtorrent for Fedora 11+, which already has the necessary
7fed336
  version.)
7fed336
- Adds dependency on chardet for fixing lots of bugs with torrents
7fed336
  which are not encoded as UTF-8.
7fed336
- Add back the flags, in an optional -flags subpackage as per the new Flags
7fed336
  policy (Package_Maintainers_Flags_Policy on the wiki).
7fed336
- Add LICENSE and README to installed documentation.
7fed336
1c0d62f
* Sat May 02 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.7-1.1
1c0d62f
- Update to new upstream bug-fix release (1.1.7).
1c0d62f
- Slight release bump to fix CVS tag.
1c0d62f
694102b
* Mon Apr 06 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.6-1
694102b
- Update to new upstream bug-fix release (1.1.6)
694102b
- Fix GPL version, add OpenSSL exception to License.
694102b
- Remove libtool, openssl-devel, and boost-devel BuildRequires (were only
694102b
  necessary when building the in-tarball libtorrent copy).
694102b
66cb0fa
* Mon Mar 16 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.5-1
66cb0fa
- Update to new upstream bug-fix release (1.1.5)
66cb0fa
- Remove FIXME comment about parallel-compilation. We're not building the
66cb0fa
  in-tarball libtorrent copy anymore, so no compilation (other than the python
66cb0fa
  bytecode) happens and we no longer need to worry about this.
66cb0fa
3b11751
* Tue Mar 10 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.4-2
3b11751
- Fix the installed location of the scalable (SVG) icon (#483443).
3b11751
  + scalable-icon-dir.diff
3b11751
53fe737
* Mon Mar 09 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.4-1
53fe737
- Update to new upstream bug-fix release (1.1.4)
53fe737
1d971a1
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-2
1d971a1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1d971a1
bbf4cf7
* Sun Feb 15 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.3-1
bbf4cf7
- Update to new upstream bug-fix release (1.1.3)
bbf4cf7
dd8bcfd
* Sun Feb 01 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.2-2
dd8bcfd
- Fix scalable icon directory ownership (#483443).
dd8bcfd
4b2dcf8
* Sat Jan 31 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.2-1
4b2dcf8
- Update to new upstream bug-fix release (1.1.2)
4b2dcf8
fd4ff97
* Sun Jan 25 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.1-1
fd4ff97
- Update to new upstream bug-fix release (1.1.1)
fd4ff97
c55e8de
* Sun Jan 11 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.0-1
c55e8de
- Update to new upstream release (1.1.0 Final - yay!)
c55e8de
- Drop the get_tracker_host patch (fixed upstream):
c55e8de
  - fix-get_tracker-host-if-no-tracker.patch
c55e8de
  
4d1929a
* Fri Jan 09 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.0-0.4.rc3
4d1929a
- Do not package the country flags data.
4d1929a
- Resolves: #479265 (country flags should not be used in Deluge)
4d1929a
67c03c9
* Wed Jan 07 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.0-0.3.rc3
67c03c9
- Add patch from upstream SVN to fix an error where torrents are not shown (or
67c03c9
  possibly shown in "Error" states) due to a bad inet_aton call:
67c03c9
  + fix-get_tracker-host-if-no-tracker.patch
67c03c9
- Resolves: #479097 (No torrent shown in menu); thanks to Mamoru Tasaka for
67c03c9
  the bug report.
67c03c9
- Fix day of previous %%changelog entry.
67c03c9
67c03c9
* Tue Jan 06 2009 Peter Gordon <peter@thecodergeek.com> - 1.1.0-0.2.rc3
cb00800
- Update to new upstream release candidate (1.1.0 RC3)
cb00800
- Build against the system rb_libtorrent instead of using the in-tarball copy
cb00800
  (requires rb_libtorrent 0.14+), and adjust dependencies accordingly. Drop
cb00800
  the hacked setup.py script formerly used to enable this (fixed upstream):
cb00800
  - fixed-setup.py
cb00800
- Make it a noarch package now that it's just python scripts and related
cb00800
  data files (translations, images, etc.)
cb00800
7ab86ae
* Mon Dec 29 2008 Peter Gordon <peter@thecodergeek.com> - 1.1.0-0.1.rc2
7ab86ae
- Update to new upstream release candidate (1.1.0 RC2)
7ab86ae
d3bc12d
* Thu Dec 18 2008 Petr Machata <pmachata@redhat.com> - 1.0.7-2
d3bc12d
- Rebuild for new boost.
d3bc12d
ac1727b
* Tue Dec 16 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.7-1
ac1727b
- Update to new upstream bug-fix release (1.0.7)
ac1727b
- Remove CC-BY-SA license (the Tango WebUI images have been replaced by upstream).
ac1727b
6ffe6d1
* Mon Dec 01 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.6-1
6ffe6d1
- Update to new upstream release (1.0.6)
6ffe6d1
- Adds Tango images to the WebUI data (CC-BY-SA) and some man pages.
6ffe6d1
- Properly mark translation files with %%lang.
6ffe6d1
f04742c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.5-3
f04742c
- Fix locations for Python 2.6
f04742c
42c4c93
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.5-2
42c4c93
- Rebuild for Python 2.6
42c4c93
63a86de
* Thu Nov 13 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.5-1
63a86de
- Update to new upstream release (1.0.5)
63a86de
77cda0d
* Fri Oct 31 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.4-1
77cda0d
- Update to new upstream release (1.0.4). 
77cda0d
f9ad6d9
* Fri Oct 24 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.3-1
f9ad6d9
- Update to new upstream release (1.0.3)
f9ad6d9
61bd3ec
* Sun Oct 12 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.2-1
61bd3ec
- Update to new upstream release (1.0.2)
61bd3ec
- Drop multithreaded boost compilation patch (fixed upstream, again).
61bd3ec
  - mt-boost-fix.patch
61bd3ec
  
36f98f2
* Sat Sep 27 2008 Peter Gordon <peter@thecodergeek.com> - 1.0.0-1
9ec753a
- Update to new upstream release (1.0.0 Final)
36f98f2
- Apply patch from Mamoru Tasaka to build against the multi-threaded Boost
36f98f2
  libraries once more:
36f98f2
  + mt-boost-fix.patch
36f98f2
- Resolves: #464151 (About 1.0.0 build failure)
9ec753a
1088fc8
* Tue Sep 16 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.09-1
1088fc8
- Update to new upstream release candidate (1.0.0 RC9)
1088fc8
- Drop mt-boost patch (fixed upstream):
1088fc8
  - use-mt-boost.patch
1088fc8
ca7ad0c
* Sun Sep 07 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.08-1
ca7ad0c
- Update to new upstream release candidate (1.0.0 RC8)
ca7ad0c
- Drop state_upgrade script from the documentation. (This is now handled
ca7ad0c
  automatically.)
ca7ad0c
- Fix version in previous %%changelog entry.
ca7ad0c
ca7ad0c
* Wed Aug 13 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.07-1
dc6a3de
- Update to new upstream release candidate (1.0.0 RC7)
dc6a3de
- Drop desktop file icon name hack (fixed upstream).
dc6a3de
dc6a3de
* Wed Aug 13 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.06-1
dc6a3de
- Update to new upstream release candidate (1.0.0 RC6)
dc6a3de
- Drop desktop file icon name hack (fixed upstream).
dc6a3de
196cf2a
* Fri Aug 01 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.04-1
196cf2a
- Update to new upstream release candidate (1.0.0 RC4)
196cf2a
b5bdc90
* Wed Jul 23 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.03-2
b5bdc90
- Add setuptools runtime dependency, to fix "No module named pkg_resources"
b5bdc90
  error messages.
b5bdc90
789ad87
* Mon Jul 21 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.03-1
789ad87
- Update to new upstream release candidate (1.0.0 RC3)
789ad87
- Re-add the blocklist plugin, at upstream's suggestion. (The rewrite is
789ad87
  complete.)
789ad87
7abc2fb
* Tue Jul 15 2008 Peter Gordon <peter@thecodergeek.com> - 0.9.02-1
7abc2fb
- Update to new upstream release candidate (1.0.0 RC2)
7abc2fb
- Force building against the multithreaded Boost libs.
7abc2fb
  + use-mt-boost.patch
7abc2fb
- Remove python-libtorrent Obsoletes. (It's been dead for 3 releases now; and
7abc2fb
  is just clutter.)
7abc2fb
- Remove the blocklist plugin, at upstream's recommendation.
7abc2fb
7ab4b97
* Tue Jun 24 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.9.3-1
7ab4b97
- Update to new upstream release (0.5.9.3)
91f5f29
386b807
* Fri May 23 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.9.1-1
386b807
- Update to new upstream release (0.5.9.1)
386b807
64f9085
* Fri May 02 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.9.0-1
64f9085
- Update to new upstream release (0.5.9.0)
64f9085
- Drop upstreamed default-preferences patch for disabling new version
64f9085
  notifications:
64f9085
  - default-prefs-no-release-notifications.patch
64f9085
4f3f53a
* Tue Apr 15 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.9-1
4f3f53a
- Update to new upstream release (0.5.8.9)
4f3f53a
b7d571a
* Wed Mar 26 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.7-1
b7d571a
- Update to new upstream release (0.5.8.7)
b7d571a
87b3450
* Mon Mar 17 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.6-1
87b3450
- Update to new upstream release (0.5.8.6)
87b3450
b24b338
* Fri Feb 29 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.5-1
b24b338
- Update to new upstream release (0.5.8.5)
b24b338
ec4f48f
* Sat Feb 16 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.4-1
9c31d05
- Update to new upstream release (0.5.8.4)
9c31d05
- Rebuild for GCC 4.3
9c31d05
dabce6c
* Mon Jan 28 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.3-1
dabce6c
- Update to new upstream security fix release (0.5.8.3), which includes a fix
dabce6c
  for a potential remotely-exploitable stack overflow with a malformed
dabce6c
  bencoded message.
dabce6c
9d25fdd
* Sat Jan 19 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8.1-1
9d25fdd
- Update to new upstream bugfix release (0.5.8.1)
9d25fdd
afd4fc2
* Wed Jan 09 2008 Peter Gordon <peter@thecodergeek.com> - 0.5.8-3
afd4fc2
- Add runtime dependency on dbus-x11 for the dbus-launch utility. Fixes bug
afd4fc2
  428106 (Missing BR dbus-x11).
afd4fc2
- Bump release to 3 to maintain a proper F8->F9+ upgrade path.
afd4fc2
b914a06
* Mon Dec 31 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.8-1
b914a06
- Update to new upstream release (0.5.8)
b914a06
- Merge Mamoru Tasaka's no-release-notification patch into the default-prefs
b914a06
  patch.
b914a06
  
f7fb791
* Sat Dec 29 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.7.98-1
f7fb791
- Update to new upstream release candidate (0.5.8 RC2)
f7fb791
549e11a
* Mon Dec 24 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 0.5.7.95-1
549e11a
- Update to new upstream release candidate (0.5.8 RC1)
549e11a
- Completely suppress updates notification (bug 299601, 426642)
549e11a
96ba887
* Sun Dec 09 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.7.1-2
96ba887
- Add missing icon cache %%post and %%postun scriptlets.
1e12e15
- Add missing egg-info to the %%files list.
96ba887
0cfc93b
* Fri Dec 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.7.1-1
0cfc93b
- Update to new upstream bug-fix release (0.5.7.1).
0cfc93b
- Sort %%files list (aesthetic-only change).
0cfc93b
c1c8884
* Wed Dec 05 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.7-3
c1c8884
- Fix previous %%changelog Version.
c1c8884
- Cleanup the installed .desktop file. Fixes bug 413101 (deluge fails to build
c1c8884
  in rawhide  bad .desktop file.)
c1c8884
f9eea39
* Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org> - 0.5.7-2
c1c8884
- Rebuild for deps
f9eea39
c1c8884
* Tue Nov 24 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.7-1
53e30f9
- Update to new upstream release (0.5.7)
53e30f9
1aed9eb
* Sat Nov 24 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.6.96-1
1aed9eb
- Update to new upstream release candidate (0.5.7 RC2)
1aed9eb
- Drop plugin error patch (fixed upstream):
1aed9eb
  - plugin-not-found-OK.patch
1aed9eb
09df20e
* Sat Nov 24 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.6.95-1
09df20e
- Update to new upstream release candidate (0.5.7 RC)
09df20e
- Update Source0 url
09df20e
- Add upstream patch to prevent dying if plugin in prefs.state is not found on
09df20e
  the filesystem:
09df20e
  + plugin-not-found-OK.patch
09df20e
3161b31
* Wed Oct 31 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.6.2-1
3161b31
- Update to new upstream bug-fix release (0.5.6.2)
3161b31
5a6d8a8
* Tue Oct 30 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.6.1-1
5a6d8a8
- Update to new upstream bug-fix release (0.5.6.1)
5a6d8a8
- Drop use-mt-boost build script patch (fixed upstream):
5a6d8a8
  - use-mt-boost.patch
5a6d8a8
1b034c2
* Sat Oct 27 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.6-1
1b034c2
- Update to new upstream release (0.5.6)
1b034c2
acf39b8
* Wed Oct 17 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.5.95-1
acf39b8
- Update to new upstream release candidate (0.5.6 RC1)
acf39b8
29760ef
* Thu Sep 20 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.5-2
29760ef
- Fix release on previous %%changelog entry.
29760ef
- Disable the version update notifications by default:
29760ef
  + default-prefs-no-release-notifications.patch
29760ef
  (Resolves bug 299601: Deluge alerts of new versions)
29760ef
29760ef
* Wed Sep 12 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.5-1
9d4f0c7
- Update to new upstream release (0.5.5)
9d4f0c7
22746d2
* Mon Sep 03 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.4.1.95-1
22746d2
- Update to new upstream release candidate (0.5.5 RC1)
22746d2
dd00e6b
* Mon Aug 13 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.4.1-1
dd00e6b
- Update to new upstream release (0.5.4.1)
dd00e6b
- Build with new binutils to gain BuildID debugging goodness.
dd00e6b
dd00e6b
* Mon Aug 06 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.4-1
dd00e6b
- Update to new upstream release (0.5.4)
dd00e6b
73dedb1
* Fri Aug 03 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.3-2
73dedb1
- Update License tag (GPLv2+).
2eb8b9f
- Rebuild against new Boost libraries, adding a patch to build against the
2eb8b9f
  multi-threaded ("*-mt") libraries:
2eb8b9f
  + use-mt-boost.patch
73dedb1
ffc00e2
* Wed Jul 25 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.3-1
9c4740e
- Update to new upstream release candidate (0.5.3)
9c4740e
- Drop %%ifarch invocations for 64-bit builds. The internal setup script now
9c4740e
  properly determines this and adds the AMD64 compiler definition if necessary.
9c4740e
1cd4efb
* Fri Jul 20 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.2.90-1
1cd4efb
- Update to new upstream release candidate (0.5.3 RC1)
1cd4efb
- Drop stale persistence fix patch (applied upstream):
1cd4efb
  - fix-persistence-upgrade-rhbz_247927.patch
1cd4efb
426cbbf
* Wed Jul 11 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.2-2
426cbbf
- Add patch to fix the existence of stale persistence files by automatically
426cbbf
  updating the deluge.deluge module name to deluge.core, or removing them if
426cbbf
  empty (bug 247927):
1cd4efb
  + fix-persistence-upgrade-rhbz_247927.patch
426cbbf
eff208d
* Sun Jul 08 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.2-1
eff208d
- Update to new upstream release (0.5.2)
e275763
- Update Summary and %%description to reflect new ĀµTorrent-compatible Peer
e275763
  Exchange ("PEX") functionality.
eff208d
eff208d
* Thu Jun 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.0.90.2-2
eff208d
- Update to new upstream release (0.5.1 Beta 2)
eff208d
5f84903
* Sun Apr 08 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.0-2
5f84903
- Make Deluge the upgrade path of the now-orphaned python-libtorrent package.
5f84903
  
e4c475f
* Mon Mar 12 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.0-1
e4c475f
- Update to new upstream release (0.5.0).
e4c475f
26b838a
* Mon Mar 12 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.99.2-1
26b838a
- Update to new upstream release (0.5 RC2).
26b838a
- Drop IndexError exception-handling fix (applied upstream):
26b838a
  - delugegtk.py-fix-IndexError-exception-handling.patch
26b838a
- Use the system libtool instead of the one from the sources to ensure
26b838a
  that no unnecessary RPATH hacks are added to the final build. 
26b838a
df3bbb2
* Wed Mar 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.99.1-3
df3bbb2
- Add a patch (submitted upstream) to properly catch a thrown IndexError in
df3bbb2
  state message updates. This should resolve the bug wherein the UI stops
df3bbb2
  updating its details and torrent listing.
df3bbb2
  + delugegtk.py-fix-IndexError-exception-handling.patch
df3bbb2
  
c1cc803
* Wed Mar 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.99.1-2
c1cc803
- Drop unneeded 64bit-python_long patch; as it seems to cause more trouble than
c1cc803
  it's worth. Instead, pass -DAMD64 as a compiler flag on 64-bit arches.
c1cc803
  - 64bit-python_long patch
c1cc803
  (This should fix the bug where, even though torrents are active, they are not
c1cc803
  shown in the GtkTreeView listing.)
c1cc803
899f010
* Tue Mar 06 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.99.1-1
899f010
- Update to new upstream release (0.5 RC1).
899f010
- Use rewritten setup.py instead of patching it so much, since it's easier to
899f010
  maintain across version upgrades and whatnot:
899f010
  + fixed-setup.py
899f010
- Remove the setup.py patches (no longer needed, since I'm packaging my own):
899f010
  - setup.py-dont-store-the-install-dir.patch
899f010
  - setup.py-build-against-system-libtorrent.patch
899f010
4581bff
* Fri Mar 02 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.90.3-1
4581bff
- Update to new upstream release (0.5 Beta 3).
4581bff
- Add patch to fix storing of installation directory:
4581bff
  + setup.py-dont-store-the-install-dir.patch
4581bff
    (to be applied after setup.py-build-against-system-libtorrent.patch)
4581bff
78928e8
* Sun Feb 25 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.90.2-2
78928e8
- Add patch to fix 64-bit python_long type.
78928e8
  +  64bit-python_long.patch
78928e8
55eb20b
* Sat Feb 24 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.90.2-1
55eb20b
- Update to new upstream release (0.5 Beta 2)
55eb20b
- Add patch to force building against system copy of rb_libtorrent:
55eb20b
  + setup.py-build-against-system-libtorrent.patch
55eb20b
- Remove python-libtorrent and a few other dependencies that are no longer
78928e8
  used.
55eb20b
55410b8
* Fri Feb 23 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.1-6
55410b8
- Fix Source0 URL.
55410b8
55410b8
* Wed Feb 21 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.1-5 
55410b8
- Make notify-python dependency conditional (FC6+ only)
55410b8
- Strip the unneeded shebang lines from the plugin scripts, since they are not
55410b8
  meant to be directly executed.
55410b8
55410b8
* Wed Feb 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.1-4
55410b8
- Update .desktop file: Icon should not have the "-256" size suffix.
55410b8
- Add Requires: notify-python
55410b8
- Remove strict dependency on python 2.3+, since we're targetting FC5+
55410b8
  only, which has 2.4+.
55410b8
55410b8
* Wed Jan 10 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.1-3
55410b8
- Use install instead of the cp/find/chmod fiasco of earlier releases for
55410b8
  clarity and proper permissions setting.
55410b8
- Be more consistent about use of %%{name} and other macros in file naming as
55410b8
  well as whitespace between sections.
55410b8
55410b8
* Sun Jan 07 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.1-2
55410b8
- Bump python-libtorrent dependency to 0.3.0-4, which contains a fix for
55410b8
  64-bit systems.
55410b8
55410b8
* Wed Jan 03 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.1-1
55410b8
- Initial packaging for Fedora Extras.