add upcloud-api-0.4.3

This commit is contained in:
Andreas Billmeier 2019-11-24 19:01:59 +01:00
parent 024304ef4c
commit 85ca36a7fe
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11 23 (reverse added today)
* add upcloud-api-0.4.3
* bump tuyaha-0.0.4
* add PyTransportNSW-0.1.1, TravisPy-0.3.5
* add pytrackr-0.0.5, pytrafikverket-0.1.5.9

View File

@ -0,0 +1,3 @@
DIST upcloud-api-0.4.3.tar.gz 38778 BLAKE2B da98ff0e4d888a1f6984c25a3000b0bd8e2a808063d2317ea85e83768f5b9ed65b9cb44513ba9a56969d21481503cfc0aacf7de9037b0e57fca01b0e6fec8063 SHA512 99b007178c1aa15d9292ead2926f9f5f7b2cf701aa02e743e67eb8e04fce76fa909a0fafae3ba4ca90e184d10d129774ecf3c275f11b693e9cdc1acb195fd2ea
EBUILD upcloud-api-0.4.3.ebuild 796 BLAKE2B e9d2d0031135073c5d903015df703ea16bb4ec360ce164db0df5245a1196820cb7bee816eb23bc0c021700805ceb4721e496bd62c22c795db7554e1680a0b1b6 SHA512 156c0121f22d77b533217f7fcbb8896d904988cf5f65d4940b3f855d713310c58c5896809919e26cfea6a59b5b6a8c14fd115e71d5b314fed004912c39b6b89c
MISC metadata.xml 467 BLAKE2B 23076d833d4bf7cc2862e08c9d5bdd5d68bf4abb79638bdf10a5e53971aa98331ab036661ec498bbf5d74192257e15a8ad2f26d4f6540f84cf1ac5c1924f385c SHA512 8efa8cd42d5e8a39ba367a46e5063c0975cab5893f7003e2617d442f6b6825ad2ec0083115f851f9be182a05e3422cdc65fb0424642ac6053981bf83a37f3ffc

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">upcloud-api</remote-id>
<maintainer status="unknown">
<email>mika.lackman@upcloud.com</email>
<name>Mika Lackman</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="UpCloud API Client"
HOMEPAGE="https://github.com/UpCloudLtd/upcloud-python-api https://pypi.org/project/upcloud-api/"
SRC_URI="https://github.com/UpCloudLtd/upcloud-python-api/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.6.0[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}