add vultr-1.0.1

This commit is contained in:
Andreas Billmeier 2019-11-22 09:29:09 +01:00
parent e5bfd90c8c
commit 761bdc665f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* bump pyatmo-3.1.0, remove olds
* bump vsure-1.5.4
* add jsonpath-0.{75,82}
* add vultr-1.0.1
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,3 @@
DIST vultr-1.0.1.tar.gz 11284 BLAKE2B 4541787438a6b9004754100c2754dfc4b2578bc4ff5b8dec3af02ef87f0f3a56bdb09939b5b7a5b61c973607db9b83f291a6d12914532e3685ca349a2093404d SHA512 fd269e18649340dab3a042736a7371791fa0d7dfe424df67b24589adc1876d04139dce8c267ff8118d72a8a0ad4b479b2ad87f33bdf0e2c02163ea78309390ce
EBUILD vultr-1.0.1.ebuild 690 BLAKE2B ac1653b0f36fc7e782c0f9c07a5edc55a58e1fd82ad20eab2aa55cede57597f7fb645d63de0f502ea3ed61a6185dfeda101b3896e9236d84834644b94b677c6c SHA512 e48725ba7d29ba309e30acbeceb934ddc7596ecec5b54b15df3baa606a01d9b0d74785fd86c91c55bb8ffe6c11da1c12bcc8029c8b5cc7f04fef8a775d33f913
MISC metadata.xml 463 BLAKE2B 1a467eeb0c722b9d766d8fdab61c63f184cf1769a0634f72fa60f284a18f8aed82f2131f82a69ade6b0f25892353b86993512a7cbf78cf223b0517d4c7474293 SHA512 b84b945f394efdc33da727d7f54014597cb4417bbb2a8e2004dd42bcefcd97b22f2d2c1325b6dbb9a1711f85a76f5f2afb73e9ccf3a61af9fae0b1c83e496414

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">vultr</remote-id>
<maintainer status="unknown">
<email>darrel.opry@spry-group.com</email>
<name>Darrel O'Pry</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# 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="Vultr.com API Client"
HOMEPAGE="http://github.com/spry-group/python-vultr https://pypi.org/project/vultr/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${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
}