add python-join-api-0.0.4

This commit is contained in:
Andreas Billmeier 2019-11-23 11:12:48 +01:00
parent 15bdf8bfe4
commit 6bb909bb7c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 50 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add python-join-api-0.0.4
* add pyitachip2ir-0.0.7
* add prayer_times_calculator-0.0.3
* add pyirishrail-0.0.2

View File

@ -0,0 +1,3 @@
DIST python-join-api-0.0.4.tar.gz 2358 BLAKE2B 483e6e424006fa5ce93b3310cca107aa1feef0590f042ca56836c7a143057b84222ceebada418f7ff4f113b841ebe5582690844845746a7b071f8991e08966b4 SHA512 895b65f75a416b4d282323e5faa0e7dc08d7d1fa4e6c532e99f051266e5b74d1d05a0b2eede8f9a7dd53ce7e3b1db1865ef64bdea0a3235b08b98241f7dba86a
EBUILD python-join-api-0.0.4.ebuild 737 BLAKE2B 989af7d4c7a05f3f0d4e97a2916146765edbd43484a721ac37de4b88f9c1490bc3cf252b24a55e709521c88abce2deab51666ea18d7244fdd7ba779787face94 SHA512 f6ddb30cad093c052fea56f47d6c9439c5fc7a7b4d0ba8b4ccb381b0e176691bbc62a80c2c35e1e3add89e7ba3856ac9464b023a47b5de1df9e8488173b446ab
MISC metadata.xml 465 BLAKE2B a44244317d2d2aa0c7da364443fbadb52987a5f8b4c5b770c817714e1a83978b85342ea166b223854f47706c24023cc2dc6d07ea901716421d1a30493d34aa1b SHA512 d645f09908d66a2abd9e80fa73dbefbe340154e9734c9bbd44df42cad69b3e93742a2082eb94fd62ceea521f257f1c04b8efb46401f9f95d10a534251a334484

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">python-join-api</remote-id>
<maintainer status="unknown">
<email>nkgilley@gmail.com</email>
<name>Nolan Gilley</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="Python API for interacting with Join by joaoapps."
HOMEPAGE="https://github.com/nkgilley/python-join-api https://pypi.org/project/python-join-api/"
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-2.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
}