Hello community, here is the log from the commit of package deluge for openSUSE:Factory checked in at 2015-09-17 09:20:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/deluge (Old) and /work/SRC/openSUSE:Factory/.deluge.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "deluge" Changes: -------- --- /work/SRC/openSUSE:Factory/deluge/deluge.changes 2014-12-03 22:48:54.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.deluge.new/deluge.changes 2015-09-17 09:20:38.000000000 +0200 @@ -1,0 +2,19 @@ +Mon Sep 14 10:56:52 UTC 2015 - [email protected] + +- Update to 1.3.12: + * Core: Include fix for Twisted 15.0 URI class rename. + * Core: Fix AttributeError in set_trackers with libtorrent 1.0.x. + * Core: Enable libtorrent-rasterbar extension bindings again for + libtorrent-rasterbar versions >= 0.16.7 (this disables + Tracker Exchange by default). + * Core: Backport atomic fastresume and state file saving fixes as + another attempt to prevent data loss on unclean exits. + * GtkUI: Fix potential AttributeError in is_on_active_workspace. + * WebUI: Fix i18n issue in Connection Manager which left users + unable to connect. + * WebUI: Increase cookie lifespan for display settings. + * Console: Fixed 'set and then get' in config command. + * Scheduler Plugin: Show current speed limit in statusbar. +- Add deluge-update_7z_binary.patch. + +------------------------------------------------------------------- Old: ---- deluge-1.3.11.tar.bz2 New: ---- deluge-1.3.12.tar.gz deluge-update_7z_binary.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ deluge.spec ++++++ --- /var/tmp/diff_new_pack.ENciS7/_old 2015-09-17 09:20:38.000000000 +0200 +++ /var/tmp/diff_new_pack.ENciS7/_new 2015-09-17 09:20:38.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package deluge # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,13 +17,15 @@ Name: deluge -Version: 1.3.11 +Version: 1.3.12 Release: 0 Summary: BitTorrent Client License: SUSE-GPL-3.0-with-openssl-exception Group: Productivity/Networking/File-Sharing Url: http://deluge-torrent.org/ -Source: http://download.deluge-torrent.org/source/%{name}-%{version}.tar.bz2 +Source: http://download.deluge-torrent.org/source/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM deluge-update_7z_binary.patch +Patch0: %{name}-update_7z_binary.patch BuildRequires: fdupes BuildRequires: gettext BuildRequires: hicolor-icon-theme @@ -40,12 +42,12 @@ Requires: python-setuptools Requires: python-xdg Requires: xdg-utils -Recommends: %{name}-lang = %{version} +Recommends: %{name}-lang Recommends: python-GeoIP Recommends: python-notify Recommends: python-pygame -Recommends: python-setproctitle Recommends: python-service_identity +Recommends: python-setproctitle BuildArch: noarch %description @@ -57,12 +59,13 @@ %prep %setup -q +%patch0 %build python2 setup.py build %install -python2 setup.py install --prefix=%{_prefix} --root=%{buildroot} --optimize=1 +python2 setup.py install --root=%{buildroot} --prefix=%{_prefix} --optimize=1 mv -f %{buildroot}%{python_sitelib}/%{name}/i18n/ %{buildroot}%{_datadir}/locale/ ln -s %{_datadir}/locale %{buildroot}%{python_sitelib}/%{name}/i18n @@ -94,7 +97,7 @@ %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/*/apps/%{name}.* %{_datadir}/pixmaps/%{name}.* -%{_mandir}/man*/%{name}* +%{_mandir}/man?/%{name}* %files lang -f %{name}.lang %defattr(-,root,root) ++++++ deluge-update_7z_binary.patch ++++++ --- deluge/plugins/extractor/extractor/core.py.orig 2013-08-18 21:12:21.698045802 +0300 +++ deluge/plugins/extractor/extractor/core.py 2013-08-18 21:12:39.143827700 +0300 @@ -76,7 +76,7 @@ EXTRACT_COMMANDS = dict.fromkeys(exts_7z, [win_7z_exe, switch_7z]) break else: - required_cmds=["unrar", "unzip", "tar", "unxz", "unlzma", "7zr", "bunzip2"] + required_cmds=["unrar", "unzip", "tar", "unxz", "unlzma", "7z", "bunzip2"] ## Possible future suport: # gunzip: gz (cmd will delete original archive) ## the following do not extract to dest dir @@ -92,7 +92,7 @@ ".tar.bz2": ["tar", "-xjf"], ".tbz": ["tar", "-xjf"], ".tar.lzma": ["tar", "--lzma -xf"], ".tlz": ["tar", "--lzma -xf"], ".tar.xz": ["tar", "--xz -xf"], ".txz": ["tar", "--xz -xf"], - ".7z": ["7zr", "x"], + ".7z": ["7z", "x"], } # Test command exists and if not, remove. for cmd in required_cmds:
