Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/botocore/
Date: Fri, 16 Jul 2021 21:53:45
Message-Id: 1626472417.5714ac6cb7f701bd8c534275025c81122e152681.mgorny@gentoo
1 commit: 5714ac6cb7f701bd8c534275025c81122e152681
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 21:51:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 21:53:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5714ac6c
7
8 dev-python/botocore: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/botocore/Manifest | 1 -
13 dev-python/botocore/botocore-1.20.97.ebuild | 59 -----------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
17 index e3822e0f1cc..e84c8b35268 100644
18 --- a/dev-python/botocore/Manifest
19 +++ b/dev-python/botocore/Manifest
20 @@ -1,4 +1,3 @@
21 DIST botocore-1.20.104.tar.gz 7883624 BLAKE2B 4fb4c6abff5a2c3d3e19b11576e723f15a442b2d49e461a2a4c2bd613e26095ceb87f4b7ceb672f338ea04ad918060bed118f7bc4c184c46cce1d6a9f98d4239 SHA512 2201d87ce2e1c8979548698d6a46eb03c0a2026360b178fea895ad6a244efad534d9970d3c6343d50639d25b3b8643db6744658fec14e0fa29fd7c4b45c8e0d8
22 DIST botocore-1.20.112.tar.gz 7917776 BLAKE2B 6a5ebf3d32c505ec2c1fc4cd3d97aa94c76b6206dda6ba28a946dfdc9973073019389c05d1cf09a0eced701fe86a9b8a292835415c0b1ceea75959a3186f65c6 SHA512 4b36367ffdd011aeb7654fd5c52c38e95bae4c55e5af85e38b0764140539ad1f8b9d75b0c7fd1009fda8d005ef4b17673b06f85a76b52fcebf05925297b6bbbf
23 -DIST botocore-1.20.97.tar.gz 7846552 BLAKE2B da0355cc229ba8a0632f67866bf06b27d7b257184b53670e5dc183c6b5a1f4d3a34145de0a3f04abd2adc08de3f0775e3c7e0dbecae729acb5bc05c7ce9acaf2 SHA512 7411d5de8ecf0c42c0142ded036189dcf378cd16f761071beb5bc2a2c240eabb0c4a8c669ce89a5b4e798a0aae92f0e67755627c2a84df77fc2e9557265a4e3b
24 DIST botocore-1.21.0.tar.gz 7955550 BLAKE2B 7e68375d07d858dc2071538c2382d8693df23fea5326938491c492abe55c060d0cdf98698cef9b06dac996a59c907ed780e5baadabbb7c10d5e41efa84c4750c SHA512 e56eea7f3c4f39f51ef1d53dfb42fd5d601167cca7c868b1cf2f291732a8cf90aaa874760f262085439df5726c6b610369a325e863533b593aa708fd901398a1
25
26 diff --git a/dev-python/botocore/botocore-1.20.97.ebuild b/dev-python/botocore/botocore-1.20.97.ebuild
27 deleted file mode 100644
28 index 64b854be933..00000000000
29 --- a/dev-python/botocore/botocore-1.20.97.ebuild
30 +++ /dev/null
31 @@ -1,59 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Low-level, data-driven core of boto 3"
41 -HOMEPAGE="https://github.com/boto/botocore"
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -
45 -if [[ "${PV}" == "9999" ]]; then
46 - EGIT_REPO_URI="https://github.com/boto/botocore"
47 - inherit git-r3
48 -else
49 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
50 - KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
51 -fi
52 -
53 -RDEPEND="
54 - dev-python/six[${PYTHON_USEDEP}]
55 - dev-python/jmespath[${PYTHON_USEDEP}]
56 - dev-python/python-dateutil[${PYTHON_USEDEP}]
57 - >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
58 -"
59 -BDEPEND="
60 - test? (
61 - dev-python/mock[${PYTHON_USEDEP}]
62 - dev-python/jsonschema[${PYTHON_USEDEP}]
63 - )
64 -"
65 -
66 -PATCHES=(
67 - "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
68 -)
69 -
70 -distutils_enable_sphinx docs/source \
71 - 'dev-python/guzzle_sphinx_theme'
72 -distutils_enable_tests nose
73 -
74 -src_prepare() {
75 - # unpin deps
76 - sed -i -e "s:>=.*':':" setup.py || die
77 - # very unstable
78 - sed -i -e 's:test_stress_test_token_bucket:_&:' \
79 - tests/functional/retries/test_bucket.py || die
80 - distutils-r1_src_prepare
81 -}
82 -
83 -python_test() {
84 - # note: suites need to be run separately as one of the unit tests
85 - # seems to be leaking mocks and breaking a few functional tests
86 - nosetests -v tests/unit ||
87 - die "unit tests failed under ${EPYTHON}"
88 - nosetests -v tests/functional ||
89 - die "functional tests failed under ${EPYTHON}"
90 -}