diff --git a/CHANGELOG.txt b/CHANGELOG.txt index acdd6fe12..b661009cf 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/dev-python/pylaunches/Manifest b/dev-python/pylaunches/Manifest new file mode 100644 index 000000000..dbadc0388 --- /dev/null +++ b/dev-python/pylaunches/Manifest @@ -0,0 +1 @@ +DIST pylaunches-0.2.0.tar.gz 2746 MD5 ceb4898191c26d0e9059ee83ead33a18 \ No newline at end of file diff --git a/dev-python/pylaunches/metadata.xml b/dev-python/pylaunches/metadata.xml new file mode 100644 index 000000000..fb49c8548 --- /dev/null +++ b/dev-python/pylaunches/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + pylaunches + + ludeeus@gmail.com + Joakim Sorensen + + + diff --git a/dev-python/pylaunches/pylaunches-0.2.0.ebuild b/dev-python/pylaunches/pylaunches-0.2.0.ebuild new file mode 100644 index 000000000..157815b53 --- /dev/null +++ b/dev-python/pylaunches/pylaunches-0.2.0.ebuild @@ -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 +}