diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2019-09-16 11:46:30 +0200 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2019-09-16 11:46:30 +0200 |
commit | 4a24ecd7e74ee696d066d2525000d3123fecc47f (patch) | |
tree | 1512715d9fd136283e36b45868c88737d059656e /dev-python/hcloud-python | |
parent | net-analyzer/bwping: Old (diff) | |
download | gentoo-4a24ecd7e74ee696d066d2525000d3123fecc47f.tar.gz gentoo-4a24ecd7e74ee696d066d2525000d3123fecc47f.tar.bz2 gentoo-4a24ecd7e74ee696d066d2525000d3123fecc47f.zip |
dev-python/hcloud-python: version bump to 1.5.0
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
Diffstat (limited to 'dev-python/hcloud-python')
-rw-r--r-- | dev-python/hcloud-python/Manifest | 1 | ||||
-rw-r--r-- | dev-python/hcloud-python/hcloud-python-1.5.0.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/hcloud-python/Manifest b/dev-python/hcloud-python/Manifest index d1c0278990fe..5348b72759f7 100644 --- a/dev-python/hcloud-python/Manifest +++ b/dev-python/hcloud-python/Manifest @@ -1,3 +1,4 @@ DIST hcloud-python-1.2.1.tar.gz 63592 BLAKE2B 9a6d2dae97ff405ebd9b92bc833c9d953c13840e68be4eb43fed375a60e55cf4bf9b4b742b26fb03401f631b7f7127815961861cb673adf4839c829141c8ed00 SHA512 cb70d190350457fc3c6e474bc6c943070102762595dac2f386041956f64255f390a928a2f2411be861645cd65b015ab9e0c931b36aeed0076b06d9f67ac72d1c DIST hcloud-python-1.3.0.tar.gz 71208 BLAKE2B 1a074f64aaff87991ef5c565bb8976184a1f5ca54c0d2fe19ac3dc4f8425d3a2d92ef13cbcec7ecbfb8958572ab5561953098cf0ed9f141ba43c3eb0a90ffc10 SHA512 6dfff2301ad91db3c79fc8f68a05b5a886f86824a34f044d14a6a35771d23fdba9764055c797d11f404cccf3ae6338af940e4814113859d7809733629d7c2659 DIST hcloud-python-1.4.1.tar.gz 71379 BLAKE2B 8f6f0a4e23dd3b99bd4375644ebdd161fb0c305773ccf10992fdcc05cefa37ad58e33eb0516eccd377ebb642749f5014ed5baad4d37f3eea91cece7eeaac0c56 SHA512 3eff15d6b46caa2b46f398f26efc1f986af0818253888ee42c97652f5d0369738558eea57e6ca934c4f7e88fea379f5a0e9e671908717f07cf32ec74d8415d42 +DIST hcloud-python-1.5.0.tar.gz 71691 BLAKE2B 6b1571eb4ce2009a224d4ee5ba2e27eb0a7a1cf6f7f2fe43ddde2d75d30c502b98aa895b88aa588266260ce06c628e75b8bdf2c5c220bafc869c9e6b1ced1a83 SHA512 060c0e6798e29d2d0dde9f11ada405647efb8a79654d50ffe53f66ad29b7b6ae7998bbcaba5e013db501277fb78556e49bae0a239fc33ec4ce6dd344cd8ac407 diff --git a/dev-python/hcloud-python/hcloud-python-1.5.0.ebuild b/dev-python/hcloud-python/hcloud-python-1.5.0.ebuild new file mode 100644 index 000000000000..12cb839f08d9 --- /dev/null +++ b/dev-python/hcloud-python/hcloud-python-1.5.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) + +inherit distutils-r1 + +DESCRIPTION="Official Hetzner Cloud python library" +HOMEPAGE="https://github.com/hetznercloud/hcloud-python" +SRC_URI="https://github.com/hetznercloud/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc examples" + +COMMON_DEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/requests-2.20[${PYTHON_USEDEP}] + <dev-python/requests-2.23[${PYTHON_USEDEP}]" + +DEPEND="${COMMON_DEPEND} + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +RDEPEND="${COMMON_DEPEND} + dev-python/future[${PYTHON_USEDEP}]" + +python_compile_all() { + use doc && emake -C docs html +} + +python_install_all() { + use examples && dodoc -r examples + use doc && local HTML_DOCS=( docs/_build/html/. ) + + distutils-r1_python_install_all +} |