diff options
author | Juraj Lutter <otis@FreeBSD.org> | 2021-11-30 16:04:00 +0100 |
---|---|---|
committer | Juraj Lutter <otis@FreeBSD.org> | 2021-11-30 18:42:32 +0100 |
commit | 83f7b1f4d96cd96c0aadf750baf9c827197ab74b (patch) | |
tree | c1970aa868258a52b16bf85702456b082810a36a /textproc/py-elasticsearch-curator/files/patch-setup.py | |
parent | astro/py-ephem: Update to 4.1.1 (diff) |
textproc/py-elasticsearch-curator: Unbreak the build
Unbreak the build after upgrade to 5.8.4:
- Switch to GitHub download
- Adjust dependencies
Reported by: pkg-fallout
Diffstat (limited to 'textproc/py-elasticsearch-curator/files/patch-setup.py')
-rw-r--r-- | textproc/py-elasticsearch-curator/files/patch-setup.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/textproc/py-elasticsearch-curator/files/patch-setup.py b/textproc/py-elasticsearch-curator/files/patch-setup.py new file mode 100644 index 000000000000..ca3612a98c60 --- /dev/null +++ b/textproc/py-elasticsearch-curator/files/patch-setup.py @@ -0,0 +1,17 @@ +--- setup.py.orig 2021-11-30 13:38:11 UTC ++++ setup.py +@@ -23,12 +23,12 @@ def get_version(): + + def get_install_requires(): + res = ['elasticsearch>=7.12.0,<8.0.0' ] +- res.append('urllib3==1.26.4') ++ res.append('urllib3>=1.26.4') + res.append('requests>=2.25.1') + res.append('boto3>=1.17.57') + res.append('requests_aws4auth>=1.0.1') + res.append('click>=7.0,<8.0') +- res.append('pyyaml==5.4.1') ++ res.append('pyyaml>=5.4.1') + res.append('voluptuous>=0.12.1') + res.append('certifi>=2020.12.5') + res.append('six>=1.15.0') |