bump pynws-1.3.1

This commit is contained in:
Andreas Billmeier 2021-10-03 09:04:53 +02:00 committed by Andreas Billmeier
parent f0d1b0deeb
commit b286925c6f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 35 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST pynws-1.3.0.tar.gz 9307 BLAKE2B acf85eab47156f7369b9a1eec05cfa3072d918a995e608b21f57c1bc3a76d747111e333e0f21c8b813d73c628122f70e1bc037d5cadb24700897f5f11dafb9b6 SHA512 b72c1db0c3542960296cc0dc651fc5ad7c9197ff8f33c168be78e1fed5924a59f38859c5c9c081d73d63e6e7770cc112b76a542eadc5cad33117c6d8fe222496
DIST pynws-1.3.1.tar.gz 9381 BLAKE2B 9280583cce311732edf41f7bd7a252a287ad8d629aaf45fff174fca3f357235e76256068a53bb6e338561fbbba7ed2de7b07ee5306f1dc32d8c2a5487306e8f6 SHA512 2b9d67f180f225aab2d3ee483a8d7fffb4ada7a7c818623c9dd1341158acadb1f8cea238e6b949297701f1014d61a668ee18aa937f5567c2179be0c0e8ab653a
EBUILD pynws-1.3.0-r1.ebuild 808 BLAKE2B d28d9f766649b4bd7b66922a343e8613f8e91b930693a6d4e0b36b500ff0b4162b5914e25eb0abdf804759016db84af31d98cb873e0212f0b8de7686e9397508 SHA512 d97a0d9056bb74619239d8e86ed0db8920f7d6612fb2e67ce464d374880dbcab484433d7f4c687f6c63dc56fcc08030ef3f701351e7b7a54720c30ad6e385eb0
EBUILD pynws-1.3.1.ebuild 808 BLAKE2B d28d9f766649b4bd7b66922a343e8613f8e91b930693a6d4e0b36b500ff0b4162b5914e25eb0abdf804759016db84af31d98cb873e0212f0b8de7686e9397508 SHA512 d97a0d9056bb74619239d8e86ed0db8920f7d6612fb2e67ce464d374880dbcab484433d7f4c687f6c63dc56fcc08030ef3f701351e7b7a54720c30ad6e385eb0
MISC metadata.xml 454 BLAKE2B 27091f845abce336c7701e56a7892c1493751d39c3c728c135bf8f55ae2ed1b310214242acaae39685d753514e3f8d780fdfa6ec4649f3ae134da529f48deec9 SHA512 b83d847ade88e8fe9ac0485d5fcfce27e6e3e36c0f546e60da509a9b96a2a043d0431c399b9374e0bd1cf0c364055c961ccc97ff572c0565ba608ead6c60dbae

View File

@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python library to retrieve observations and forecasts from NWS/NOAA"
HOMEPAGE="https://github.com/MatthewFlamm/pynws https://pypi.org/project/pynws/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/python-metar[${PYTHON_USEDEP}]"
BDEPEND="${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
}