summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Ryan <anthonyryan1@gmail.com>2015-10-18 20:14:01 -0400
committerAnthony Ryan <anthonyryan1@gmail.com>2015-10-26 14:02:45 -0400
commit68094515e99d372640000f147c958f3e6470322c (patch)
treeb788d8fe72dfb2c89280a85d7272ecb004ca434e /net-libs/libtorrent/files
parentgames-strategy/0ad: rm old (diff)
downloadgentoo-68094515e99d372640000f147c958f3e6470322c.tar.gz
gentoo-68094515e99d372640000f147c958f3e6470322c.tar.bz2
gentoo-68094515e99d372640000f147c958f3e6470322c.zip
net-p2p/rtorrent: version bump 0.9.6
* Bumped net-libs/libtorrent (required bump by dependency) * Updated the HOMEPAGE and SRC_URI due to changes upstream * [Repoman] Bumped EAPI, copyright and added slot operators * Added additional metadata and fixed indentation of metadata.xml * Added missing test dependency for libtorrent * Removed posix_falloc test override (resolved upstream) * Initial LibreSSL support Fixes https://bugs.gentoo.org/562830
Diffstat (limited to 'net-libs/libtorrent/files')
-rw-r--r--net-libs/libtorrent/files/download_constructor.diff21
1 files changed, 0 insertions, 21 deletions
diff --git a/net-libs/libtorrent/files/download_constructor.diff b/net-libs/libtorrent/files/download_constructor.diff
deleted file mode 100644
index e806cabb64b2..000000000000
--- a/net-libs/libtorrent/files/download_constructor.diff
+++ /dev/null
@@ -1,21 +0,0 @@
---- src/download/download_constructor.cc 2011-03-08 17:48:43.000000000 +0300
-+++ src/download/download_constructor.cc.new 2011-03-08 17:36:42.000000000 +0300
-@@ -97,7 +97,17 @@
-
- parse_name(b.get_key("info"));
- parse_info(b.get_key("info"));
--
-+
-+ // hack, quick fix for #2505
-+ if (b.has_key_list("announce-list"))
-+ if (b.get_key_list("announce-list").empty()) {
-+ b.erase_key("announce-list");
-+ } else {
-+ Object::list_type & l = b.get_key_list("announce-list");
-+ if (l.size() == 1 && !l.begin()->is_list()) {
-+ b.erase_key("announce-list");
-+ }
-+ }
- parse_tracker(b);
- }
-