add pyombi-0.1.{5,10}

This commit is contained in:
Andreas Billmeier 2019-11-16 11:08:03 +01:00
parent b24c0ee332
commit c3b9eb3d35
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 82 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* bump pyHik-0.2.5
* bump pylint-2.4.4
* bump astroid-2.3.3
* add pyombi-0.1.{5,10}
2019-11-15
* add aiobotocore-0.10.1

View File

@ -0,0 +1,5 @@
DIST pyombi-0.1.10.tar.gz 3386 BLAKE2B ee728cecb21dd5a2f2b9e5376d3f166b0e26672e7f8384bd3bef354d7dbb01c6689a0b9103d202ff3e92c6b119f634134395428d23ccd706bfb6879fdc7e97f7 SHA512 53345d2fa7a13c2b602224bb1887d4a937a3f9b2e0cdcb74c3ed6973bca7e065aaef9d5d00a59ac92ff96e0e8471308abf182af8a089996a8f6c473c4022de83
DIST pyombi-0.1.5.tar.gz 2779 BLAKE2B de7734cda36cedb83ffba11f288324ca00f7dcde337e8e3a5e9033760b03c1b36dc61aa65ec715439507afc65586ed5f5409203512940b46e20371a6aa02702b SHA512 d1a6dc6f4ca03187e476e6bb760178fc7a802bf01bc37378efebe9d73726139f669688ef533879376de762b169b6915a341a53d26f594b5e7e10196aaecda651
EBUILD pyombi-0.1.10.ebuild 714 BLAKE2B 82c920182a589ebc541f835fa7fe6c51e4442ee420bd82ff22788cc41be991d4ead38ced09861d67870442dcf9f50f968189dda138843c1582225d04a72e0921 SHA512 d09aa43ccfd9ce24e3c40ab065278c8649d4046ef8d088f9490f1530a57f063ba9b2744588b051b5867a35a9240b198244594daccd306d2ba5462e467a91405e
EBUILD pyombi-0.1.5.ebuild 714 BLAKE2B 82c920182a589ebc541f835fa7fe6c51e4442ee420bd82ff22788cc41be991d4ead38ced09861d67870442dcf9f50f968189dda138843c1582225d04a72e0921 SHA512 d09aa43ccfd9ce24e3c40ab065278c8649d4046ef8d088f9490f1530a57f063ba9b2744588b051b5867a35a9240b198244594daccd306d2ba5462e467a91405e
MISC metadata.xml 455 BLAKE2B 8e9f921d254914999587964111228ec42c85a73fdfb54ff6ec67b2c92de0f435664ba40f673a7dbda25205a3e9b35b8c8ee473ae76cea72651ba18c536fb48a8 SHA512 fdd1f0085d0f1c33e46a529113b79b6d16452115f2f8d58610b9456c23dda4ea2c5220893e7becd6cc45436a0c6d7bf6a278c8ba86880497377d1192a0784c75

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">pyombi</remote-id>
<maintainer status="unknown">
<email>larssont@tuta.io</email>
<name>Tommy Larsson</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="A python module to retrieve information from Ombi."
HOMEPAGE="https://github.com/larssont/pyombi https://pypi.org/project/pyombi/"
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
}

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="A python module to retrieve information from Ombi."
HOMEPAGE="https://github.com/larssont/pyombi https://pypi.org/project/pyombi/"
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
}