add py-melissa-climate-2.1.3

This commit is contained in:
Andreas Billmeier 2019-11-23 14:47:43 +01:00
parent fb9246df6a
commit fb64d6c74e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 additions and 0 deletions

View File

@ -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

View File

@ -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

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">py-melissa-climate</remote-id>
<maintainer status="unknown">
<email>magnusknutas@gmail.com</email>
<name>Magnus Knutas</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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
}