Gentoo Archives: gentoo-commits

From: Agostino Sarubbo <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hcloud-python/
Date: Wed, 01 Feb 2023 13:53:38
Message-Id: 1675259582.9955650879ea0415f8a0518d229c750daca55315.ago@gentoo
1 commit: 9955650879ea0415f8a0518d229c750daca55315
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 1 13:53:02 2023 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 13:53:02 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99556508
7
8 dev-python/hcloud-python: remove old
9
10 Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
11
12 dev-python/hcloud-python/Manifest | 1 -
13 .../hcloud-python/hcloud-python-1.18.1.ebuild | 41 ----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/hcloud-python/Manifest b/dev-python/hcloud-python/Manifest
17 index 1751a6ea6fb4..64d4405e7714 100644
18 --- a/dev-python/hcloud-python/Manifest
19 +++ b/dev-python/hcloud-python/Manifest
20 @@ -1,2 +1 @@
21 -DIST hcloud-python-1.18.1.gh.tar.gz 99042 BLAKE2B 159b2fb29021ca7993f75c4731867ed1bc57e2c9a3cf68a45acf43bb45e9a0862717907d1dfce45c960064ad82b71422e76b290db3516ea3744be95797db5e1e SHA512 6d172c214d25ae846b5561e4caa6b70d4f4e765e064ae971d5b216ceb743ab269f735e2c9adb68f1cf99ef429621b6998a34c8c7befa6d527dc3b774c0639bae
22 DIST hcloud-python-1.18.2.gh.tar.gz 98998 BLAKE2B b4f8d3335c4589c8e5f453ed60299b222f002de1d8ae5ba95dcc35c6d4c4c4f649e6924037ed935651976fce06aa4ff61b893e3dcbdf745c6c1d9ff678b04dcd SHA512 da71f5590514d45b630662b1bedf7907e5ba33a48617131615377724e1377a2776f979c00e50521c513052b4f540224439e048e2e1215973b76c55a8a20e1a45
23
24 diff --git a/dev-python/hcloud-python/hcloud-python-1.18.1.ebuild b/dev-python/hcloud-python/hcloud-python-1.18.1.ebuild
25 deleted file mode 100644
26 index fe0571dbaf26..000000000000
27 --- a/dev-python/hcloud-python/hcloud-python-1.18.1.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{9..11} )
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Official Hetzner Cloud python library"
40 -HOMEPAGE="https://github.com/hetznercloud/hcloud-python"
41 -SRC_URI="
42 - https://github.com/hetznercloud/${PN}/archive/v${PV}.tar.gz
43 - -> ${P}.gh.tar.gz
44 -"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="amd64"
49 -IUSE="examples"
50 -
51 -RDEPEND="
52 - >=dev-python/future-0.17.1[${PYTHON_USEDEP}]
53 - >=dev-python/python-dateutil-2.7.5[${PYTHON_USEDEP}]
54 - >=dev-python/requests-2.20[${PYTHON_USEDEP}]
55 -"
56 -
57 -distutils_enable_sphinx docs \
58 - dev-python/sphinx_rtd_theme
59 -distutils_enable_tests pytest
60 -
61 -EPYTEST_IGNORE=(
62 - # Integration tests need docker:
63 - # https://github.com/hetznercloud/hcloud-python/blob/master/.travis.yml#L16
64 - tests/integration
65 -)
66 -
67 -python_install_all() {
68 - use examples && dodoc -r examples
69 - distutils-r1_python_install_all
70 -}