summaryrefslogtreecommitdiff
path: root/pcr/tahoe-lafs
diff options
context:
space:
mode:
authorGaming4JC <g4jc@openmailbox.org>2015-07-30 17:35:04 -0400
committerGaming4JC <g4jc@openmailbox.org>2015-07-30 17:35:04 -0400
commit581ae757c305e427a5ffb351a7e07fe4b95efb4b (patch)
treebef4d271aeff945b22eef0af0cbe58aa978be5e6 /pcr/tahoe-lafs
parent9137ca7f13283c09f7b703c5a17f44eef41a96e5 (diff)
removing uneeded patches
Diffstat (limited to 'pcr/tahoe-lafs')
-rw-r--r--pcr/tahoe-lafs/0001-auto_deps-Workaround-dep-resolution-issue.patch48
-rw-r--r--pcr/tahoe-lafs/nodaemon.patch19
2 files changed, 0 insertions, 67 deletions
diff --git a/pcr/tahoe-lafs/0001-auto_deps-Workaround-dep-resolution-issue.patch b/pcr/tahoe-lafs/0001-auto_deps-Workaround-dep-resolution-issue.patch
deleted file mode 100644
index e50ec14c2..000000000
--- a/pcr/tahoe-lafs/0001-auto_deps-Workaround-dep-resolution-issue.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 8899e10098990adb688433f3209e277391aad5f3 Mon Sep 17 00:00:00 2001
-From: Kyle Manna <kyle@kylemanna.com>
-Date: Sun, 21 Dec 2014 23:32:59 -0800
-Subject: [PATCH] auto_deps: Workaround dep resolution issue
-
-Errors:
-
- tahoe[5580]: Traceback (most recent call last):
- tahoe[5580]: File "/usr/bin/tahoe", line 6, in <module>
- tahoe[5580]: from pkg_resources import load_entry_point
- tahoe[5580]: File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 2951, in <module>
- tahoe[5580]: working_set = WorkingSet._build_master()
- tahoe[5580]: File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 563, in _build_master
- tahoe[5580]: return cls._build_from_requirements(__requires__)
- tahoe[5580]: File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 576, in _build_from_requirements
- tahoe[5580]: dists = ws.resolve(reqs, Environment())
- tahoe[5580]: File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 755, in resolve
- tahoe[5580]: raise DistributionNotFound(req)
- tahoe[5580]: pkg_resources.DistributionNotFound: pycrypto==2.1.0,==2.3,>=2.4.1
----
- src/allmydata/_auto_deps.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py
-index b7be321..3e93134 100644
---- a/src/allmydata/_auto_deps.py
-+++ b/src/allmydata/_auto_deps.py
-@@ -16,7 +16,7 @@ install_requires = [
-
- # zope.interface >= 3.6.0 is required for Twisted >= 12.1.0.
- # zope.interface 3.6.3 and 3.6.4 are incompatible with Nevow (#1435).
-- "zope.interface == 3.6.0, == 3.6.1, == 3.6.2, >= 3.6.5",
-+ "zope.interface >= 3.6.5",
-
- # * On Windows we need at least Twisted 9.0 to avoid an indirect
- # dependency on pywin32.
-@@ -55,7 +55,7 @@ install_requires = [
- # Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
- # pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
- # pycrypto 2.4 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/881130
-- "pycrypto == 2.1.0, == 2.3, >= 2.4.1",
-+ "pycrypto >= 2.4.1",
- "pyasn1 >= 0.0.8a",
-
- # http://www.voidspace.org.uk/python/mock/ , 0.8.0 provides "call"
---
-2.2.1
-
diff --git a/pcr/tahoe-lafs/nodaemon.patch b/pcr/tahoe-lafs/nodaemon.patch
deleted file mode 100644
index dfcc0b8ae..000000000
--- a/pcr/tahoe-lafs/nodaemon.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/allmydata/scripts/startstop_node.py 2011-10-30 22:54:34.000000000 +0100
-+++ src/allmydata/scripts/startstop_node.py 2011-11-10 15:22:21.432711365 +0100
-@@ -10,6 +10,7 @@
- optFlags = [
- ["profile", "p", "Run under the Python profiler, putting results in 'profiling_results.prof'."],
- ["syslog", None, "Tell the node to log to syslog, not a file."],
-+ ["nodaemon", "n", "Do not daemonize."],
- ]
-
- def getSynopsis(self):
-@@ -70,6 +71,8 @@
- args.extend(["--logfile", os.path.join("logs", "twistd.log")])
- if opts["profile"]:
- args.extend(["--profile=profiling_results.prof", "--savestats",])
-+ if opts["nodaemon"]:
-+ args.extend(["--nodaemon", "--umask=0077"])
- # now we're committed
- os.chdir(basedir)
- from twisted.scripts import twistd