summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-07-01 21:51:05 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-07-03 11:28:30 +0000
commit0ab5f7f957f7a0ff1aa4f55a59980a691e674382 (patch)
tree82864214fb30ddacf485868cd349872b9865f5dc /app-arch/cfv
parentapp-antivirus/clamav: remove unused initd files (diff)
downloadgentoo-0ab5f7f957f7a0ff1aa4f55a59980a691e674382.tar.gz
gentoo-0ab5f7f957f7a0ff1aa4f55a59980a691e674382.tar.bz2
gentoo-0ab5f7f957f7a0ff1aa4f55a59980a691e674382.zip
app-arch/cfv: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/1812 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-arch/cfv')
-rw-r--r--app-arch/cfv/files/cfv-1.18.1-modulefix.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/app-arch/cfv/files/cfv-1.18.1-modulefix.patch b/app-arch/cfv/files/cfv-1.18.1-modulefix.patch
deleted file mode 100644
index a415a3afc8bb..000000000000
--- a/app-arch/cfv/files/cfv-1.18.1-modulefix.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- branches/cfv-1_x-branch/cfv/cfv 2006/03/28 07:29:01 340
-+++ branches/cfv-1_x-branch/cfv/cfv 2007/03/04 01:57:56 401
-@@ -1360,12 +1360,15 @@
- #---------- .torrent ----------
- _btimporterror = None
- try:
-- from BitTorrent import bencode, btformats
-+ from BTL import bencode, btformats
- except ImportError, e1:
- try:
-- from BitTornado import bencode; from BitTornado.BT1 import btformats
-+ from BitTorrent import bencode, btformats
- except ImportError, e2:
-- _btimporterror = '%s and %s'%(e1,e2)
-+ try:
-+ from BitTornado import bencode; from BitTornado.BT1 import btformats
-+ except ImportError, e3:
-+ _btimporterror = '%s and %s and %s'%(e1,e2,e3)
-
- class Torrent(ChksumType):
- description = 'BitTorrent metainfo'