add python-digitalocean-1.13.2

This commit is contained in:
2019-11-22 16:52:56 +01:00
parent 1540f6711b
commit 8cc8a8987e
4 changed files with 51 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST python-digitalocean-1.13.2.tar.gz 23326 BLAKE2B 2a983e8919439dd01a8f4f6631b37a73fe0e1d4fed06fbb12d6cd209d94a78f4c1ff366a69e28712e3eafd114e67b2c85ef4301296ddaeb0efdf345d6af8a514 SHA512 6f27713b90c4d7b98868313b584490cce67394f328a02e0365aaedd6ac1fdd08f767aaa9597e8635f027576f42a01b0fdc6bf5c809c649f57f897e58f0d40c6e
EBUILD python-digitalocean-1.13.2.ebuild 788 BLAKE2B 890d661d32eda7aa3b7bbf3c5d46d9933d73ab3fedce95f413fc8eff35af8c69ad04f536cbc03ffe0b8dc135988208369a7bed09fabecccb0e43fa49debf8bf9 SHA512 879348c9e91c80d1b81f53fcb50d8effca32ca83ccb2827f6b347ac31e6c00c5ea4fad86cf084706f7ab7d0e448aa7c5166ee0d0ad57e49a2f3acf0d9d0ad620
MISC metadata.xml 508 BLAKE2B 8d14bd6fdd3c3242670cfe6630234c2bfdd2631ac363a29e0ede11e671094bf1ed55cd9769032829608202368c008819629935c4ec9075737101e6b74de1d573 SHA512 767e295b18be0bd88df5ddc34a826331b92f63a81bbd67a3d90fa83e1229da2af702ffb3a858960b68f1b08bafbd2d64bb7ca5ace001fbc2121efe070baa2a0e
@@ -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">python-digitalocean</remote-id>
<maintainer status="unknown">
<email>lorenzo@setale.me</email>
<name>Lorenzo Setale ( http://who.is.lorenzo.setale.me/? )</name>
</maintainer>
</upstream>
</pkgmetadata>
@@ -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="digitalocean.com API to manage Droplets and Images"
HOMEPAGE="https://github.com/koalalorenzo/python-digitalocean https://pypi.org/project/python-digitalocean/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/jsonpickle[${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
}