commit:     7ae493d2f4c23792b5bda22407f4bc7897585134
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  3 14:38:26 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Sep  3 14:38:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae493d2

dev-python/botocore: remove version 1.4.43

Package-Manager: portage-2.3.0

 dev-python/botocore/Manifest               |  1 -
 dev-python/botocore/botocore-1.4.43.ebuild | 54 ------------------------------
 2 files changed, 55 deletions(-)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 44b5ea0..9fd19aa 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,3 @@
-DIST botocore-1.4.43.tar.gz 2662274 SHA256 
15e825f61170379cf0977a4f76bf75be6525f6784f9bc36e42c9c52268959283 SHA512 
d65aa843efcaeb60f51b925f7f8b19ee837404a4fa4c3d36e7b7e438f3f7f1473a021f10f1b8f76ec4a8877af2967b435bd96e9384e5fa772be9ee918eaf918f
 WHIRLPOOL 
c1d2e4d12fad2365e0072d13ca59d44805c5d7dbb8d4d68c7d912cff7ffc8faf911a9553b321525e8621a9cb28cb9f99253656839e3adc0da0bbb50b60430339
 DIST botocore-1.4.46.tar.gz 2713844 SHA256 
844dbd090b4127678c25342635485c87d86bca4a4f8a7c2295d715f7c830700c SHA512 
f79c309ca2bc7fd8d7c2ae63b3968d7212c16d113a17fbb06938f6aeae13b92bc1645aae19258f60e61b10e9ec09868582b20fa5fc4f55a71047433b60de05be
 WHIRLPOOL 
0d84058c1a7dcdaddcb7c2cff4c4f2a1ebe39a8db8358bfb23a50e8dbd8cebd2f30a721573d3f10e241f29e56bf82b72327fcfa17d84f423a091a23a3acc6e40
 DIST botocore-1.4.48.tar.gz 2728910 SHA256 
167babd5eb74cf44f9f71422376be94ce4e731e5e785ea2f87bbf1978a258bc8 SHA512 
73c66b3931ce5f2978546dc91ce808ed92484b6c609fc3f46fedd3a670ba3ec36f506b709c4baa2a9f3daad1e644730f93416f575afdccf4874664a4388e136e
 WHIRLPOOL 
b45e068e81cd37efbb69baaa29bc2adebbcecdd49554b89265a5e7c5b02ee6e96005a66ddfe2357df1d8cb1afd22f7a7e2f54607b563e674736f0de8fb5a4d04
 DIST botocore-1.4.49.tar.gz 2720919 SHA256 
c7804efb622f340593ae49cc552481f2820de2088199a0010d469cf0dfb94731 SHA512 
677d79bcd3cc13aba62693294952542588e016682a0e682cbf6b4035ea202abaf0b805664ae8c6b599df2f29f180ce48631286c9a8745ae7003b1858eda84259
 WHIRLPOOL 
3e5890f8ac15ae4db3e48d5f4c049eccf4de45e0a805988f5492a6b103faa64d636ec9113f4949523dc7706ed45ab0004481111b63821985da946b5eadc0e1cc

diff --git a/dev-python/botocore/botocore-1.4.43.ebuild 
b/dev-python/botocore/botocore-1.4.43.ebuild
deleted file mode 100644
index 9c57e33..00000000
--- a/dev-python/botocore/botocore-1.4.43.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Low-level, data-driven core of boto 3."
-HOMEPAGE="https://github.com/boto/botocore";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="
-       >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
-       >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
-       <dev-python/jmespath-1.0.0[${PYTHON_USEDEP}]
-       >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
-       <dev-python/python-dateutil-3.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       doc? (
-               >=dev-python/guzzle_sphinx_theme-0.7.10[${PYTHON_USEDEP}]
-               <dev-python/guzzle_sphinx_theme-0.8[${PYTHON_USEDEP}]
-               >=dev-python/sphinx-1.1.3[${PYTHON_USEDEP}]
-               <dev-python/sphinx-1.3[${PYTHON_USEDEP}]
-       )
-       test? (
-               ${CDEPEND}
-               ~dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-               dev-python/nose[${PYTHON_USEDEP}]
-       )
-"
-RDEPEND="${CDEPEND}"
-
-python_compile_all() {
-       use doc && emake -C docs html
-}
-
-python_test() {
-       nosetests tests/unit || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-       use doc && local HTML_DOCS=( docs/build/html/. )
-
-       distutils-r1_python_install_all
-}

Reply via email to