commit:     bc8b1a2cc402c210afa07728e688837271a3759e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  3 21:44:15 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun  3 22:01:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8b1a2c

dev-python/botocore: Bump to 1.20.87

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/botocore/Manifest                              |  1 +
 .../{botocore-9999.ebuild => botocore-1.20.87.ebuild}     | 15 ++++++---------
 dev-python/botocore/botocore-9999.ebuild                  | 15 ++++++---------
 3 files changed, 13 insertions(+), 18 deletions(-)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index a9b6812d181..64628b3caf3 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -8,3 +8,4 @@ DIST botocore-1.20.83.tar.gz 7786168 BLAKE2B 
1bd8864da814ed502c4e0860d8c7a82c6c1
 DIST botocore-1.20.84.tar.gz 7792555 BLAKE2B 
e9459fad976bb81541ce933666edccdbfe9910674cde9f23b264388845cb3e98cae77639a3333cb3fec00c33602af8fea82681fbd387775ff9ed47245e4d0e4f
 SHA512 
da19ffb81c24c2e7a10c5e0647179f36ebf89c097f795cb16d723a3e0311a81e9c835b7b3795d02047d084a098507f4b6e0cc502129877e4258691a6a6ee1cee
 DIST botocore-1.20.85.tar.gz 7795550 BLAKE2B 
483b6fef456de9a37b00dbaf0f2af766079447f70fb992c96f0ab8208c3ce0e39a459d89a29e07b7e9fed9e1b39ddfeac28c3de5bfac1ddde1aac2cbecfe4056
 SHA512 
1a3e07da2c1b60680c858e4b732fe340563b18ec10aad7a9250bff7e7a11a97ccd3e952245187b90fe84b2fddd8f48568d70d69a03612782da5d90a8e2d06de3
 DIST botocore-1.20.86.tar.gz 7798788 BLAKE2B 
93450262bf1e34a627a64f8972e4d8b02dc24e1646633e89d4911751b0c919b9dd3515021cfffcd0c79223b237a8bb283220f6793c8e411d399a75321cd7b369
 SHA512 
fd630d93645861a94173a38b50c7b2ef1c646e33ad30d75eccb4b92bfa0ce08c06ac39ea6bb38f7e5c551f625b919b00170c4a243e67d5d66789a011ee5390a1
+DIST botocore-1.20.87.tar.gz 7800088 BLAKE2B 
ba98b0f910216a340f48adb5ddf14aa9239ca44202641c97ca91da69f34a67716c50d9bc6a330021fd630f7c309062fc0326543e46ee1207c294870baefd0aeb
 SHA512 
b922e40030a1708ce2e5a2fa60012e21e28b955c6d30fbced5d1a93dafe189e83430b5cee162e2ab73e80c7dfa18657c2ca42057c17e943c0d421c6cd9969b53

diff --git a/dev-python/botocore/botocore-9999.ebuild 
b/dev-python/botocore/botocore-1.20.87.ebuild
similarity index 78%
copy from dev-python/botocore/botocore-9999.ebuild
copy to dev-python/botocore/botocore-1.20.87.ebuild
index 3944fec3374..fd6eb700f30 100644
--- a/dev-python/botocore/botocore-9999.ebuild
+++ b/dev-python/botocore/botocore-1.20.87.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 
@@ -16,15 +16,14 @@ if [[ "${PV}" == "9999" ]]; then
        inherit git-r3
 else
        SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-       KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+       KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 fi
 
 RDEPEND="
        dev-python/six[${PYTHON_USEDEP}]
-       dev-python/docutils[${PYTHON_USEDEP}]
        dev-python/jmespath[${PYTHON_USEDEP}]
        dev-python/python-dateutil[${PYTHON_USEDEP}]
-       dev-python/urllib3[${PYTHON_USEDEP}]
+       >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
 "
 BDEPEND="
        test? (
@@ -35,7 +34,6 @@ BDEPEND="
 
 PATCHES=(
        "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
-       "${FILESDIR}/botocore-1.16.7-unlock-deps.patch"
 )
 
 distutils_enable_sphinx docs/source \
@@ -43,9 +41,8 @@ distutils_enable_sphinx docs/source \
 distutils_enable_tests nose
 
 src_prepare() {
-       # py3.9
-       find -name '*.py' -exec \
-               sed -i -e 's:cElementTree:ElementTree:' {} + || die
+       # unpin deps
+       sed -i -e "s:>=.*':':" setup.py || die
        # very unstable
        sed -i -e 's:test_stress_test_token_bucket:_&:' \
                tests/functional/retries/test_bucket.py || die

diff --git a/dev-python/botocore/botocore-9999.ebuild 
b/dev-python/botocore/botocore-9999.ebuild
index 3944fec3374..fd6eb700f30 100644
--- a/dev-python/botocore/botocore-9999.ebuild
+++ b/dev-python/botocore/botocore-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 
@@ -16,15 +16,14 @@ if [[ "${PV}" == "9999" ]]; then
        inherit git-r3
 else
        SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-       KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+       KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 fi
 
 RDEPEND="
        dev-python/six[${PYTHON_USEDEP}]
-       dev-python/docutils[${PYTHON_USEDEP}]
        dev-python/jmespath[${PYTHON_USEDEP}]
        dev-python/python-dateutil[${PYTHON_USEDEP}]
-       dev-python/urllib3[${PYTHON_USEDEP}]
+       >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
 "
 BDEPEND="
        test? (
@@ -35,7 +34,6 @@ BDEPEND="
 
 PATCHES=(
        "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
-       "${FILESDIR}/botocore-1.16.7-unlock-deps.patch"
 )
 
 distutils_enable_sphinx docs/source \
@@ -43,9 +41,8 @@ distutils_enable_sphinx docs/source \
 distutils_enable_tests nose
 
 src_prepare() {
-       # py3.9
-       find -name '*.py' -exec \
-               sed -i -e 's:cElementTree:ElementTree:' {} + || die
+       # unpin deps
+       sed -i -e "s:>=.*':':" setup.py || die
        # very unstable
        sed -i -e 's:test_stress_test_token_bucket:_&:' \
                tests/functional/retries/test_bucket.py || die

Reply via email to