add pyalmond-0.0.2

This commit is contained in:
Andreas Billmeier 2019-11-16 22:46:48 +01:00
parent b499cd66fd
commit 9b1971cf1b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 58 additions and 0 deletions

View File

@ -11,6 +11,7 @@
* add alpha-vantage-2.1.2
* update shodan-1.19.1
* add sharp_aquos_rc-0.4
* add pyalmond-0.0.2
2019-11-15
* add aiobotocore-0.10.1

View File

@ -0,0 +1,3 @@
DIST pyalmond-0.0.2.tar.gz 6898 BLAKE2B af5a18311bcc26a797a80b55610e76c0ce22e1dbef27714aab0463594709456bf5c296bad06e897494154aceebb28702900cbc608a73c712790b186302beb724 SHA512 5edc809cc0ba47a4e0fe1b39cf8ba80d8f151156227bd3abd09751d0b2e48ea4cfebc4a9feaf32c38fbd05797fde22a321f3939cb4e8df5b4f329206a4282fc9
EBUILD pyalmond-0.0.2.ebuild 1014 BLAKE2B cefd51c9041fa84e5488e1d6ecf0acbaeca3293fdec6aa680034db8bf05aea6a737ac85d41952cc92fc2b52d5b4939f8420bd6d7680396f3bd2e1a95172f7b62 SHA512 e8dd51b52db3ea2541a39fe59fd83d6fd10e151988b41547adc8cae3d7b3d56683729b4189081c4a30cd4f7d1c81d8839e487c6c84dfc5139c5447b5aafe5a0c
MISC metadata.xml 469 BLAKE2B e6d67b6450c2a391c1888a30123ec0e4beee8043db7e67dd652149542625d0d9abba1d2f683b3a466bea3c58ce23225ea9c0e2e4dae3278441808b714a8e1e2b SHA512 b3655de0bd31615b66b396213bdebd912337f5642e75f71cd7288669c9a0e84708a519f91c58bcafc5ea31771ae57c3cb14c2ff8f3bc475812c7139ad8bc94de

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">pyalmond</remote-id>
<maintainer status="unknown">
<email>gcampagn@cs.stanford.edu</email>
<name>Giovanni Campagna</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,38 @@
# 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 module to talk to the Web Almond API."
HOMEPAGE="https://github.com/stanford-oval/pyalmond https://pypi.org/project/pyalmond/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/stanford-oval/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
# aiohttp>=3.6.2,<4.0.0
RDEPEND=">=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}]
<dev-python/aiohttp-4[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/python-coveralls[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}