aboutsummaryrefslogtreecommitdiffstats
path: root/community/certbot
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2019-12-06 12:39:54 +0100
committerSören Tempel <soeren+git@soeren-tempel.net>2019-12-06 12:41:18 +0100
commit68c01f52c4e2f8df935f12eef2c332963f2c61dd (patch)
treeccaf84b42d8c85c8b6a09e8dfc11003e035d58e9 /community/certbot
parent81005ccf88ddb5b37ef5c20381ecb19204bc2455 (diff)
downloadaports-68c01f52c4e2f8df935f12eef2c332963f2c61dd.tar.bz2
aports-68c01f52c4e2f8df935f12eef2c332963f2c61dd.tar.xz
community/certbot: remove unused patch
Diffstat (limited to 'community/certbot')
-rw-r--r--community/certbot/remove-check-for-setuptools-version.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/community/certbot/remove-check-for-setuptools-version.patch b/community/certbot/remove-check-for-setuptools-version.patch
deleted file mode 100644
index 8102e72cd2..0000000000
--- a/community/certbot/remove-check-for-setuptools-version.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 1f4838c..a809328 100644
---- a/setup.py
-+++ b/setup.py
-@@ -54,23 +54,6 @@ install_requires = [
- 'zope.interface',
- ]
-
--# Add pywin32 on Windows platforms to handle low-level system calls.
--# This dependency needs to be added using environment markers to avoid its installation on Linux.
--# However environment markers are supported only with setuptools >= 36.2.
--# So this dependency is not added for old Linux distributions with old setuptools,
--# in order to allow these systems to build certbot from sources.
--pywin32_req = 'pywin32>=224'
--if StrictVersion(setuptools_version) >= StrictVersion('36.2'):
-- install_requires.append(pywin32_req + " ; sys_platform == 'win32'")
--elif 'bdist_wheel' in sys.argv[1:]:
-- raise RuntimeError('Error, you are trying to build certbot wheels using an old version '
-- 'of setuptools. Version 36.2+ of setuptools is required.')
--elif os.name == 'nt':
-- # This branch exists to improve this package's behavior on Windows. Without
-- # it, if the sdist is installed on Windows with an old version of
-- # setuptools, pywin32 will not be specified as a dependency.
-- install_requires.append(pywin32_req)
--
- dev_extras = [
- 'astroid==1.6.5',
- 'coverage',