diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 72a025c7e..839158758 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,6 @@ 2019-11-22 (reverse added today) * + * add py-melissa-climate-2.1.3 * add matrix-client-0.3.2 and matrix-client-0.2.0 * add magicseaweed-1.0.3 * add lyft_rides-0.2 diff --git a/dev-python/py-melissa-climate/Manifest b/dev-python/py-melissa-climate/Manifest new file mode 100644 index 000000000..7a672441f --- /dev/null +++ b/dev-python/py-melissa-climate/Manifest @@ -0,0 +1,3 @@ +DIST py-melissa-climate-2.1.3.tar.gz 5454 BLAKE2B 3c06c7f931e6604ae6d1d79ad1bc7afd840e6486c0b4c2cb9280f0b7d4060e95b1162004302972a1c62a1e248739be16661032a7eff4a404a1c7cc2d543f3be7 SHA512 4261791ab2756393e1a08be5c0e64c758aa51b9a3b602b840f751dbf37e52cbc29cfda3c54028ce5c3ed6442b8183ced574195f112dac3dd487c36127720605a +EBUILD py-melissa-climate-2.1.3.ebuild 830 BLAKE2B 3d1a7841710220e49c634b2fd7b27a4d10a567747d7d02538d005cc2ce643dd0a431c14a93c00c77a31b4e62238f3e7c122f1d5098ea0522ded00487d0be2d43 SHA512 3f7669b2844aee0c5b2394874665685165f59fcaeb235cd8c96453a5fb1ca6e8be9953abf954643eb4c9566ae8d6f1452595f14a7fdb4b851f4346f904acd7fc +MISC metadata.xml 473 BLAKE2B 10dbcef6f143611f2ebc7b59ac6249ef2788c6075fe8655cb5e5326ff1908e085033d0391b8b35103030fdf7e2a5da935306036ca8a1ce58eaab122e1d00d82d SHA512 605e828c097d51ed20bf5674ea860465f1016c2aebb73b65e8fedb3ee25fa55a08bb798d1be079a257ea5eb90ae82402e37261fbe55054f1fc4406f93fe9cdb2 diff --git a/dev-python/py-melissa-climate/metadata.xml b/dev-python/py-melissa-climate/metadata.xml new file mode 100644 index 000000000..960be327f --- /dev/null +++ b/dev-python/py-melissa-climate/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + python + + py-melissa-climate + + magnusknutas@gmail.com + Magnus Knutas + + + diff --git a/dev-python/py-melissa-climate/py-melissa-climate-2.1.3.ebuild b/dev-python/py-melissa-climate/py-melissa-climate-2.1.3.ebuild new file mode 100644 index 000000000..28cb3ec07 --- /dev/null +++ b/dev-python/py-melissa-climate/py-melissa-climate-2.1.3.ebuild @@ -0,0 +1,32 @@ +# 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="Api wrapper for Melissa Climate http://seemelissa.com" +HOMEPAGE="https://github.com/kennedyshead/py-melissa-climate https://pypi.org/project/py-melissa-climate/" +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}] + dev-python/requests-futures[${PYTHON_USEDEP}] + dev-python/aiohttp[${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 +}