update upcloud-api-2.0.0

This commit is contained in:
Andreas Billmeier 2021-06-12 17:19:43 +02:00 committed by Andreas Billmeier
parent 7fb4165504
commit 792719d8d0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 38 additions and 0 deletions

View File

@ -75,6 +75,7 @@
* update smhi-pkg-1.0.15
* update starkbank-ecdsa-1.1.1
* update tesla-powerwall-0.3.10
* update upcloud-api-2.0.0
2021-06-04
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

View File

@ -1,5 +1,7 @@
DIST upcloud-api-0.4.5.tar.gz 35875 BLAKE2B b314944694c731f0c02c32177a5db659bc4bc85cfade3f913ef55ebcdf031302b687da18ef781bb969c0568119c315dc84520a2929ecfee77fd04955e202432f SHA512 7c39f8ffb447d75a2f4c26e19701aff76968d83134a4069ce1b13ede15eee7e6ad64aed4d56d174dc6577a7142156dfeeed812d0f995c0896a9f7a13de7e560a
DIST upcloud-api-1.0.1.tar.gz 56000 BLAKE2B 863ef4bbfe468f8f0abf5be749a6dcf34bea735b155e7328a95be4e747e313d2d2ca4aa766fed67b99606f3dadeee8c5f9a317178539eec5dc5a01c078ba21e8 SHA512 4f7dd49bbeefca1a9aef052fa4fc334f0b6ad13251421c902b9dd2d42376a354aa9a5aaabefa2b7f1af8961a1b261292548a64f22daca6ca9d2476951cd00dc2
DIST upcloud-api-2.0.0.tar.gz 57275 BLAKE2B 40a56381fc037fbe10e3eee7db8e55f4191089ec977d692207309a782458e28f6a2798f13f06ec9b357ac5f7701bef8d49b59ae444538ee88bd44ba40a950156 SHA512 a1d8a5b737621384a16b08d0527ebe778eb6b4a17d979e1b203ac301c3754a484273a9126c12c66da2c76571eccb27ce068f735f4e8c9e79b5419b6e566a8050
EBUILD upcloud-api-0.4.5.ebuild 764 BLAKE2B da2bd3882ea771c2aeec0d09eefe9169c1572998c3424642adcea614efca8a0df38124a14ef9ac6dadf8de9bffb14f8535738688cd8533a47810e5fe63942300 SHA512 e08ba2da3a49d6bdc21cca2e50eff3b85a493af0bdb85bb6fc0c6ec73e6f5259bf6a65ec39700c092bf87fc10742491c18b525d0b85974ac3d4624051246adc8
EBUILD upcloud-api-1.0.1.ebuild 873 BLAKE2B 886cb2575cf75fb0fc8203dab8c02c6266e2f750afb088010e73539339c521be8f78d849bb0d7aa378175683c11e76d94a716bffcc84531987340b1c3c6c5830 SHA512 add653db955e3e151dc1b33f333c6425b942f0dbce7f73c80bc7e499168b0b80d179a8009cd20b998cf13cd31454d2e634782aef8e309400978fb33ebe46dbfc
EBUILD upcloud-api-2.0.0.ebuild 829 BLAKE2B a12e45368976e263475aa9bb5a03edbcbae8f774eaa88f9eb57acd31e334c01b6ef920ad3dfddbb1724a1c3907f9517ee784ecebc6929a22c139402e724bda19 SHA512 2cce682c40dfb7f28290eb4c09dc686143ef7864b7d8808dacc8fb0efc9bbfa581f131fb7cd25457d3830b6e3e903da4a904e62dad44f02f37b6ccd3565dd561
MISC metadata.xml 448 BLAKE2B 53730eabb7afbe87d2d52e27b9320b0047c0bdf2078c1e9fcbf49d3d1d5068f46add5183addc65bdcd1ded7d8f3440031f1573c893f20b9a04dad9a07735d268 SHA512 f881a4689ad3f673000d32454f7f0c4cc112c64b55de494054f1413a33dfdd329d2899854552b0418db96fc48199493457a4101e0776f5bb55c10d9be903c53d

View File

@ -0,0 +1,35 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="UpCloud API Client"
HOMEPAGE="https://github.com/UpCloudLtd/upcloud-python-api https://pypi.org/project/upcloud-api/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}