summaryrefslogtreecommitdiff
path: root/net/py-bittorrent-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/py-bittorrent-devel/files')
-rw-r--r--net/py-bittorrent-devel/files/extra-nogui-patch-setup.py21
-rw-r--r--net/py-bittorrent-devel/files/extra-noportdocs-setup.py8
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-console.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-curses.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-tracker.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-changetracker-console.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-console.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-curses.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent-console.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent.py16
-rw-r--r--net/py-bittorrent-devel/files/extra-psyco-patch-torrentinfo-console.py16
-rw-r--r--net/py-bittorrent-devel/files/patch-BitTorrent::defaultargs.py11
-rw-r--r--net/py-bittorrent-devel/files/patch-BitTorrent::platform.py11
-rw-r--r--net/py-bittorrent-devel/files/patch-BitTorrent__NewVersion.py11
15 files changed, 0 insertions, 222 deletions
diff --git a/net/py-bittorrent-devel/files/extra-nogui-patch-setup.py b/net/py-bittorrent-devel/files/extra-nogui-patch-setup.py
deleted file mode 100644
index edffccf24d67..000000000000
--- a/net/py-bittorrent-devel/files/extra-nogui-patch-setup.py
+++ /dev/null
@@ -1,21 +0,0 @@
---- setup.py.orig Tue Aug 23 22:58:45 2005
-+++ setup.py Tue Aug 23 23:09:21 2005
-@@ -25,8 +25,8 @@
-
- import glob
-
--symlinks = ["bittorrent" , "bittorrent-curses", "bittorrent-console",
-- "maketorrent", "maketorrent-console",
-+symlinks = ["bittorrent-curses", "bittorrent-console",
-+ "maketorrent-console",
- "launchmany-curses", "launchmany-console",
- "changetracker-console",
- "torrentinfo-console",
-@@ -53,5 +53,5 @@
- translations.append (("%s/%s/LC_MESSAGES" % (locale_root, l),
- ["locale/%s/LC_MESSAGES/bittorrent.mo" % l]))
-
--data_files = [ (img_root , glob.glob('images/*png')+['images/bittorrent.ico',]),
-- (img_root+'/logo', glob.glob('images/logo/bittorrent_[0-9]*.png') ),
-+data_files = [
-+
diff --git a/net/py-bittorrent-devel/files/extra-noportdocs-setup.py b/net/py-bittorrent-devel/files/extra-noportdocs-setup.py
deleted file mode 100644
index 64e39642de55..000000000000
--- a/net/py-bittorrent-devel/files/extra-noportdocs-setup.py
+++ /dev/null
@@ -1,8 +0,0 @@
---- setup.py.orig Mon Nov 21 00:10:24 2005
-+++ setup.py Mon Nov 21 00:10:33 2005
-@@ -72,5 +72,0 @@
-- (doc_root , ['credits.txt', 'credits-l10n.txt',
-- 'LICENSE.txt', 'README.txt',
-- 'TRACKERLESS.txt', 'redirdonate.html',
--
-- ] ),
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-console.py b/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-console.py
deleted file mode 100644
index 17e63fdd1a00..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-console.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- bittorrent-console.py Wed Oct 12 01:08:15 2005
-+++ bittorrent-console.py Wed Oct 12 07:57:46 2005
-@@ -14,6 +14,13 @@
-
- from __future__ import division
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-curses.py b/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-curses.py
deleted file mode 100644
index b46155e5bcb9..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-curses.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- bittorrent-curses.py Wed Oct 12 01:08:15 2005
-+++ bittorrent-curses.py Wed Oct 12 07:57:28 2005
-@@ -15,6 +15,13 @@
-
- from __future__ import division
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-tracker.py b/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-tracker.py
deleted file mode 100644
index d2e5b60d36d2..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent-tracker.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- bittorrent-tracker.py Wed Oct 12 01:08:15 2005
-+++ bittorrent-tracker.py Wed Oct 12 07:57:55 2005
-@@ -12,6 +12,13 @@
-
- # Written by Bram Cohen
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- if __name__ == '__main__':
- from BitTorrent.platform import install_translation
- install_translation()
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent.py b/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent.py
deleted file mode 100644
index d4d8ba81d578..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-bittorrent.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- bittorrent.py Wed Oct 12 01:08:18 2005
-+++ bittorrent.py Wed Oct 12 07:58:12 2005
-@@ -14,6 +14,13 @@
-
- from __future__ import division
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-changetracker-console.py b/net/py-bittorrent-devel/files/extra-psyco-patch-changetracker-console.py
deleted file mode 100644
index 8e8ded07a1f0..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-changetracker-console.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- changetracker-console.py Wed Oct 12 01:08:18 2005
-+++ changetracker-console.py Wed Oct 12 07:58:18 2005
-@@ -12,6 +12,13 @@
-
- # Written by Henry 'Pi' James and Bram Cohen
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-console.py b/net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-console.py
deleted file mode 100644
index 0a885f9d4c2d..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-console.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- launchmany-console.py Wed Oct 12 01:08:27 2005
-+++ launchmany-console.py Wed Oct 12 07:58:23 2005
-@@ -12,6 +12,13 @@
-
- # Written by John Hoffman
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- if __name__ == '__main__':
- from BitTorrent.platform import install_translation
- install_translation()
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-curses.py b/net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-curses.py
deleted file mode 100644
index 6f73f927141b..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-launchmany-curses.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- launchmany-curses.py Wed Oct 12 01:08:27 2005
-+++ launchmany-curses.py Wed Oct 12 07:58:27 2005
-@@ -14,6 +14,13 @@
-
- from __future__ import division
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent-console.py b/net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent-console.py
deleted file mode 100644
index 476f36587378..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent-console.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- maketorrent-console.py Wed Oct 12 01:08:27 2005
-+++ maketorrent-console.py Wed Oct 12 07:58:31 2005
-@@ -12,6 +12,13 @@
-
- # Written by Bram Cohen
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- if __name__ == '__main__':
- from BitTorrent.platform import install_translation
- install_translation()
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent.py b/net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent.py
deleted file mode 100644
index 9675c99cda69..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-maketorrent.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- maketorrent.py Wed Oct 12 01:08:27 2005
-+++ maketorrent.py Wed Oct 12 07:58:35 2005
-@@ -14,6 +14,13 @@
-
- from __future__ import division
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/extra-psyco-patch-torrentinfo-console.py b/net/py-bittorrent-devel/files/extra-psyco-patch-torrentinfo-console.py
deleted file mode 100644
index bf6128eb8b65..000000000000
--- a/net/py-bittorrent-devel/files/extra-psyco-patch-torrentinfo-console.py
+++ /dev/null
@@ -1,16 +0,0 @@
---- torrentinfo-console.py Wed Oct 12 01:08:50 2005
-+++ torrentinfo-console.py Wed Oct 12 07:58:48 2005
-@@ -12,6 +12,13 @@
-
- # Written by Henry 'Pi' James, Loring Holden and Matt Chisholm
-
-+try:
-+ import psyco
-+ assert psyco.__version__ >= 0x010300f0
-+ psyco.full()
-+except:
-+ pass
-+
- from BitTorrent.platform import install_translation
- install_translation()
-
diff --git a/net/py-bittorrent-devel/files/patch-BitTorrent::defaultargs.py b/net/py-bittorrent-devel/files/patch-BitTorrent::defaultargs.py
deleted file mode 100644
index bd9e57ccacc6..000000000000
--- a/net/py-bittorrent-devel/files/patch-BitTorrent::defaultargs.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- BitTorrent/defaultargs.py.orig Wed Jan 11 19:16:54 2006
-+++ BitTorrent/defaultargs.py Wed Jan 11 19:17:16 2006
-@@ -33,6 +33,8 @@
- if os.name == 'posix':
- if os.uname()[0] in ['Darwin']:
- BAD_LIBC_WORKAROUND_DEFAULT = MYTRUE
-+ if os.uname()[0] in ['FreeBSD']:
-+ BAD_LIBC_WORKAROUND_DEFAULT = MYTRUE
-
- MIN_INCOMPLETE = 100
- if os.name == 'nt':
diff --git a/net/py-bittorrent-devel/files/patch-BitTorrent::platform.py b/net/py-bittorrent-devel/files/patch-BitTorrent::platform.py
deleted file mode 100644
index bdacd7539206..000000000000
--- a/net/py-bittorrent-devel/files/patch-BitTorrent::platform.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- BitTorrent/platform.py.orig Mon Aug 15 20:06:05 2005
-+++ BitTorrent/platform.py Wed Aug 24 00:12:59 2005
-@@ -41,7 +41,7 @@
- del wh, wv
-
- def calc_unix_dirs():
-- appdir = '%s-%s'%(app_name, version)
-+ appdir = '%s'%(app_name)
- ip = os.path.join('share', 'pixmaps', appdir)
- dp = os.path.join('share', 'doc' , appdir)
- lp = os.path.join('share', 'locale')
diff --git a/net/py-bittorrent-devel/files/patch-BitTorrent__NewVersion.py b/net/py-bittorrent-devel/files/patch-BitTorrent__NewVersion.py
deleted file mode 100644
index fcb590ce108a..000000000000
--- a/net/py-bittorrent-devel/files/patch-BitTorrent__NewVersion.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- BitTorrent/NewVersion.py.orig Sun Nov 20 23:10:09 2005
-+++ BitTorrent/NewVersion.py Sun Nov 20 23:10:37 2005
-@@ -127,7 +127,7 @@
- self.threadwrap(self.errorfunc, WARNING, '\n'.join(terrors))
-
- if torrentfile and signature:
-- public_key_file = open(os.path.join(doc_root, 'public.key'), 'rb')
-+ public_key_file = open(os.path.join(%%DATADIR%%, 'public.key'), 'rb')
- public_key = pickle.load(public_key_file)
- h = sha(torrentfile).digest()
- if public_key.verify(h, signature):