From 68c01f52c4e2f8df935f12eef2c332963f2c61dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Fri, 6 Dec 2019 12:39:54 +0100 Subject: community/certbot: remove unused patch Unused since 92280d8ccf984a12e8e27073f7e26f808e61fb1f. --- .../remove-check-for-setuptools-version.patch | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 community/certbot/remove-check-for-setuptools-version.patch 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', -- cgit v1.2.3