add pylaunches-0.2.0

This commit is contained in:
Andreas Billmeier 2019-11-23 11:55:58 +01:00
parent 7d73529937
commit f6ed83a4ac
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add pylaunches-0.2.0
* update pylast-3.1.0
* add lmnotify-0.0.6
* update pylacrosse-0.4

View File

@ -0,0 +1 @@
DIST pylaunches-0.2.0.tar.gz 2746 MD5 ceb4898191c26d0e9059ee83ead33a18

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">pylaunches</remote-id>
<maintainer status="unknown">
<email>ludeeus@gmail.com</email>
<name>Joakim Sorensen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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="A python packages to get information form upcoming space launches."
HOMEPAGE="https://github.com/ludeeus/pylaunches https://pypi.org/project/pylaunches/"
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/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${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
}