mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
dev-python/hcloud: Bump to 2.18.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST hcloud-python-2.16.0.gh.tar.gz 150139 BLAKE2B 89664236dacaa53d6fcd5966bcc1e772f02c8febe028c099ed8684c942e6e40b3e37497f4b763e991703a7e570906ece2c81a75339887a65318622c2eb366ae9 SHA512 d12c65e60182638ea6ac7edaf75ac229c1af373b47e92afb99bc0375e4b8979a49787e7fc0b92479b2861558b83919e7d55c194f973aaf17b4f2640f363ce781
|
||||
DIST hcloud-python-2.17.0.gh.tar.gz 150589 BLAKE2B 4e8f874307690cfacef36246e814d0c12fb03598bdb3187aaf6e1075169d5f8c7a27c48a2321408a6ab6b249f41d074bdc273c53a1ea1e7034bc338d5293efbb SHA512 f69608a295b3f25f24cc5af69f650192891cf127e26ac9a083b7de6ccd2c21fba99099c460a0406e4af5aadccd7f2775986b090ae7b1c569aaf5baa56706a9aa
|
||||
DIST hcloud-python-2.17.1.gh.tar.gz 150707 BLAKE2B e4f7a09a8c1b8e20d77413bc1a8995ff1334a81cb66b3f21c9552e31c00cd365d3a3b1fdd9670fbf66e2b6c38474211024a33c0ec262a68a649083a8321ebdcc SHA512 4881df9ce5eb4e7dbfc855f5cf9b79b08b1106fe19dd93847287ce4c5f8448974106cf8c355f71c4401a5bf330df35fe687c4c2c239251987a54e3480099331a
|
||||
DIST hcloud-python-2.18.0.gh.tar.gz 150688 BLAKE2B 298b0747aca32c66342b5b6bdaa90cbea10ed563edbcfda4aaa884dd2ee853fe544b10fc82c94946678a29eb9443f8b66ffb8c1e35c0ffbfecfd94b19b6c27de SHA512 af7100650ac156826024e50c2d72f4e2cc499b20c43e021659c702482945b9eda24a97b64be8d6555c3acbc28f17fa05f4ff9d744e13ca37b4d3942fe85801fa
|
||||
|
||||
51
dev-python/hcloud/hcloud-2.18.0.ebuild
Normal file
51
dev-python/hcloud/hcloud-2.18.0.ebuild
Normal file
@@ -0,0 +1,51 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{11..14} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_P=hcloud-python-${PV}
|
||||
DESCRIPTION="Official Hetzner Cloud python library"
|
||||
HOMEPAGE="
|
||||
https://github.com/hetznercloud/hcloud-python/
|
||||
https://pypi.org/project/hcloud/
|
||||
"
|
||||
# sdist is missing doc assets as of 1.19.0
|
||||
# https://github.com/hetznercloud/hcloud-python/pull/183
|
||||
SRC_URI="
|
||||
https://github.com/hetznercloud/hcloud-python/archive/v${PV}.tar.gz
|
||||
-> ${MY_P}.gh.tar.gz
|
||||
"
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="examples"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/python-dateutil-2.7.5[${PYTHON_USEDEP}]
|
||||
>=dev-python/requests-2.20[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
distutils_enable_sphinx docs \
|
||||
dev-python/myst-parser \
|
||||
dev-python/sphinx-rtd-theme
|
||||
|
||||
EPYTEST_PLUGINS=()
|
||||
distutils_enable_tests pytest
|
||||
|
||||
EPYTEST_IGNORE=(
|
||||
# Integration tests need docker:
|
||||
# https://github.com/hetznercloud/hcloud-python/blob/master/.travis.yml#L16
|
||||
tests/integration
|
||||
)
|
||||
|
||||
python_install_all() {
|
||||
use examples && dodoc -r examples
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Reference in New Issue
Block a user