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/libcloud/
Date: Fri, 26 Feb 2021 08:30:28
Message-Id: 1614328186.2a20aabdc8a2e2db4375c895d3fd33cc67ba0f68.mgorny@gentoo
1 commit: 2a20aabdc8a2e2db4375c895d3fd33cc67ba0f68
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 26 08:27:59 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 08:29:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a20aabd
7
8 dev-python/libcloud: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/libcloud/Manifest | 1 -
13 dev-python/libcloud/libcloud-3.1.0.ebuild | 49 -------------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/dev-python/libcloud/Manifest b/dev-python/libcloud/Manifest
17 index 6b9df7a9af4..7775571d48d 100644
18 --- a/dev-python/libcloud/Manifest
19 +++ b/dev-python/libcloud/Manifest
20 @@ -1,2 +1 @@
21 -DIST apache-libcloud-3.1.0.tar.bz2 1613381 BLAKE2B afc607a76ff3cd24961cfaf916b5813cd59e84d523f9a642bb8222d889abb44d6357d230b001ae03a0b021160384d6c6d8420e85825aa8d84f7619e900c4c9b0 SHA512 ef2fc4754281adc336d656d3a707710feae0f6c22f33156830dd0b299d06fbf9b890817f68192106320944f851265c39f175b5fae5f85053706ec2f0ccd04bf1
22 DIST apache-libcloud-3.3.0.tar.bz2 1811722 BLAKE2B bfdacdda6bb39b3782915d71db6d736caa8a1d57c5120dac9020a1c4923ab08bf8983916fcac15723139b073858efdf178aa797dd592d7534a0b6ff35f8fc5ae SHA512 286ddd79b14633ceb59e1a4b015760a1e525b0282f3039f16c2fa4de940005da5fbde1b8262027103ca91c9653baed22d61dd136ddcc2b6886687ad8b27f3ea8
23
24 diff --git a/dev-python/libcloud/libcloud-3.1.0.ebuild b/dev-python/libcloud/libcloud-3.1.0.ebuild
25 deleted file mode 100644
26 index 26afd835ddd..00000000000
27 --- a/dev-python/libcloud/libcloud-3.1.0.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7,8,9} )
36 -PYTHON_REQ_USE="ssl(+)"
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Unified Interface to the Cloud - python support libs"
41 -HOMEPAGE="https://libcloud.apache.org/"
42 -SRC_URI="mirror://apache/${PN}/apache-${P}.tar.bz2"
43 -S="${WORKDIR}/apache-${P}"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="examples"
49 -
50 -RDEPEND=">=dev-python/requests-2.5.0[${PYTHON_USEDEP}]"
51 -
52 -distutils_enable_tests pytest
53 -
54 -BDEPEND+="
55 - test? (
56 - >=dev-python/cryptography-2.6.1[${PYTHON_USEDEP}]
57 - dev-python/lockfile[${PYTHON_USEDEP}]
58 - dev-python/mock[${PYTHON_USEDEP}]
59 - dev-python/requests-mock[${PYTHON_USEDEP}]
60 - )
61 -"
62 -
63 -python_prepare_all() {
64 - if use examples; then
65 - mkdir examples || die
66 - mv example_*.py examples || die
67 - fi
68 -
69 - # needed for tests
70 - cp libcloud/test/secrets.py-dist libcloud/test/secrets.py || die
71 -
72 - distutils-r1_python_prepare_all
73 -}
74 -
75 -python_install_all() {
76 - use examples && dodoc -r examples
77 - distutils-r1_python_install_all
78 -}