summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarol Wojtaszek <sekretarz@gentoo.org>2006-02-16 17:44:47 +0000
committerKarol Wojtaszek <sekretarz@gentoo.org>2006-02-16 17:44:47 +0000
commit458f7aa45f1e4a6da24040a05d39d5b5674d9a5d (patch)
treeff040b0bb462e3ce76db661df690a3cfe920a042 /net-p2p/bittorrent
parentVersion bump by Robert Lundmark, bug #114864. Ebuild clean up (diff)
downloadgentoo-2-458f7aa45f1e4a6da24040a05d39d5b5674d9a5d.tar.gz
gentoo-2-458f7aa45f1e4a6da24040a05d39d5b5674d9a5d.tar.bz2
gentoo-2-458f7aa45f1e4a6da24040a05d39d5b5674d9a5d.zip
bittorrent-4.1.0-fix-all.patch removed
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'net-p2p/bittorrent')
-rw-r--r--net-p2p/bittorrent/files/bittorrent-4.1.0-fix-all.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/net-p2p/bittorrent/files/bittorrent-4.1.0-fix-all.patch b/net-p2p/bittorrent/files/bittorrent-4.1.0-fix-all.patch
deleted file mode 100644
index 0eaa8b9ba354..000000000000
--- a/net-p2p/bittorrent/files/bittorrent-4.1.0-fix-all.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-# Fix the bittorrent apps
-# Patch written by hannes <hnaz@we-are-root.org>
-#
-# - self.seedStatus has the same wrong usage of string formatting in
-# btdownloadcurses.py and btdownloadheadless.py
-# - the 'saveas'-error was just a typo
-#
-# HTH
-
---- btdownloadcurses.py.orig 2005-05-24 09:47:29.000000000 +0200
-+++ btdownloadcurses.py 2005-05-24 10:03:07.000000000 +0200
-@@ -219,9 +219,9 @@
- nextCopies = ', '.join(["%d:%.1f%%" % (a,int(b*1000)/10) for a,b in
- zip(xrange(numCopies+1, 1000), statistics['numCopyList'])])
- if not self.done:
-- self.seedStatus = _("%d seen now, plus %d distributed copies") +\
-- '(%s)' % (statistics['numSeeds'],
-- statistics['numCopies'], nextCopies)
-+ self.seedStatus = _("%d seen now, plus %d distributed copies") % \
-+ (statistics['numSeeds'], statistics['numCopies']) +\
-+ '(%s)' % (nextCopies)
- else:
- self.seedStatus = _("%d distributed copies (next: %s)") % (
- statistics['numCopies'], nextCopies)
-@@ -333,7 +333,7 @@
- if config['save_as']:
- if config['save_in']:
- raise BTFailure(_("You cannot specify both --save_as and "
-- "--save_in")
-+ "--save_in"))
- saveas = config['save_as']
- elif config['save_in']:
- saveas = os.path.join(config['save_in'], torrent_name)
---- btdownloadheadless.py.orig 2005-05-24 10:04:07.000000000 +0200
-+++ btdownloadheadless.py 2005-05-24 10:05:59.000000000 +0200
-@@ -134,9 +134,9 @@
- nextCopies = ', '.join(["%d:%.1f%%" % (a,int(b*1000)/10) for a,b in
- zip(xrange(numCopies+1, 1000), statistics['numCopyList'])])
- if not self.done:
-- self.seedStatus = _("%d seen now, plus %d distributed copies ") \
-- '(%s)' % (statistics['numSeeds'],
-- statistics['numCopies'], nextCopies)
-+ self.seedStatus = _("%d seen now, plus %d distributed copies") % \
-+ (statistics['numSeeds'], statistics['numCopies']) +\
-+ '(%s)' % (nextCopies)
- else:
- self.seedStatus = _("%d distributed copies (next: %s)") % (
- statistics['numCopies'], nextCopies)