add yahooweather-0.10

This commit is contained in:
Andreas Billmeier 2019-10-11 18:22:52 +02:00
parent b698799be9
commit 39f5c9ff26
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST yahooweather-0.10.tar.gz 3793 BLAKE2B b3e23d7e1213b6329b6f225bf2a841bdfc7eb9ab1be678fdc0d04cfcfb0f0f82355d5d2eef09984679e856f4641480096586abd4e3a92e77f2e18113bbf6f8f0 SHA512 acc5beba944df52a64617e15f95bad24db0afaf1202de08caf7427e41da4bfe30756b1061b1e38daf974007c02aa48b81e5ab5f331949d72ef799b839823e8fc
EBUILD yahooweather-0.10.ebuild 760 BLAKE2B 9b6c6c31dbfdcc49abadbcec53fdeeb39fe8a07aedf9669f7b220edc01018578513834df98fb3b464e4314a416f7969d40294f9aff027aa179841b470eeb9a8e SHA512 79e501b85e33f206b33c260fa385feb0cbdcfb70850138481b9b4f7ba6dcbe65aedf833562cbef6efb6318cb616daeb8f383b81df30d87b972098dcb8f94bff6
MISC metadata.xml 463 BLAKE2B 558f0026b00f46f9d0aa8b9f6478c7ab318c9828a35d2d6a8af98b7d793384790a0811ee17f635ae7524391066a0966808b8cec07e18b4a9543c83c4c1f082c9 SHA512 e261073abcd73bea8db4ebf74656809af2f332f406bf164eaa4b46868514de89993cd6f9562499448008ab153f03afb369d2f2871c65ccd259f77fc898655026

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">yahooweather</remote-id>
<maintainer status="unknown">
<email>pvizeli@syshack.ch</email>
<name>Pascal Vizeli</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="a Python module that provides an interface to the Yahoo! Weather RSS feed."
HOMEPAGE="https://github.com/pvizeli/yahooweather https://pypi.org/project/yahooweather/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD License"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}