summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-05-02 14:00:55 +0200
committerLouis Sautier <sbraz@gentoo.org>2021-05-02 16:43:42 +0200
commit736ae86c14634838a4f2278ebe0d63ea9f010c94 (patch)
tree48e36eb4184546de36d0674ba7d563b75f983912 /www-misc
parentnet-ftp/vsftpd: remove libressl support (diff)
downloadgentoo-736ae86c14634838a4f2278ebe0d63ea9f010c94.tar.gz
gentoo-736ae86c14634838a4f2278ebe0d63ea9f010c94.tar.bz2
gentoo-736ae86c14634838a4f2278ebe0d63ea9f010c94.zip
www-misc/urlwatch: remove unused patch
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/20650 Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'www-misc')
-rw-r--r--www-misc/urlwatch/files/urlwatch-2.18-pycodestyle-requirement.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/www-misc/urlwatch/files/urlwatch-2.18-pycodestyle-requirement.patch b/www-misc/urlwatch/files/urlwatch-2.18-pycodestyle-requirement.patch
deleted file mode 100644
index 587a55ab03c8..000000000000
--- a/www-misc/urlwatch/files/urlwatch-2.18-pycodestyle-requirement.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 5f85aaf..7466787 100644
---- a/setup.py
-+++ b/setup.py
-@@ -17,9 +17,7 @@ if sys.version_info < (3, 3):
- m['name'] = 'urlwatch'
- m['author'], m['author_email'] = re.match(r'(.*) <(.*)>', m['author']).groups()
- m['description'], m['long_description'] = docs[0].strip().split('\n\n', 1)
--m['install_requires'] = ['minidb', 'PyYAML', 'requests', 'keyring', 'pycodestyle', 'appdirs', 'lxml', 'cssselect']
--if sys.version_info < (3, 4):
-- m['install_requires'].extend(['enum34'])
-+m['install_requires'] = ['minidb', 'PyYAML', 'requests', 'keyring', 'appdirs', 'lxml', 'cssselect']
- if sys.platform == 'win32':
- m['install_requires'].extend(['colorama'])
- m['entry_points'] = {"console_scripts": ["urlwatch=urlwatch.cli:main"]}