add pyipma-1.2.1

This commit is contained in:
Andreas Billmeier 2019-11-23 10:59:17 +01:00
parent 9252149982
commit f7a8cf3539
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2019-11-22
* add pyipma-1.2.1
* add PyOTA-2.1.0, phx-filters-2.0.2, phx-class-registry-3.0.5
* add georss-ign-sismologia-client-0.2
* add (old) iglo-1.2.5

View File

@ -0,0 +1,3 @@
DIST pyipma-1.2.1.tar.gz 4311 BLAKE2B 3405b76c6c30e089192bba3a80e5ce2b6a728cac55c8b652008df35c7170f16698803d10eee25b0d09b12b6ccdbe639e5868d51058714bdc8be554b888e0afc2 SHA512 30519bbf1fff668c9bc2710674b13436037d9759d1d967ed94bdef3fb0d8414d55b7856522cfd58be90cfaef7bda21c0d7528b0463728fb0f5f020f1f32d5cd5
EBUILD pyipma-1.2.1.ebuild 781 BLAKE2B 1d386d5309e42fc1f67f288071519efe65752ce34d8ab3e7da4d2ede553dd74855b373e16603038909f51bc45f56188fa8e1c26fac63a1dcb1e2b8e05aed6899 SHA512 f9bbc2523e716ce69ac72bbed8b0bfd9da283db4ebfdff1d5fbbc1d8027158bc5f8d96b37d13119b77069a24d3078171bad473c1c515aec135a485df1d784453
MISC metadata.xml 457 BLAKE2B f81986a7072f497ee25ab8ba2128ecdb4f674197ddfa0eca2be7634cfd9987e7bc4d8068edb29080eaa2f13f672095fd8a14af9d4f0b78457d8bace31eeb63d2 SHA512 e8f76b7166c0eeab8814c0c71b51c6111cb9aaa49ae58de8de715b455d299e18777207b1d387be3b8b111e0d9eec01b0df43dc555e08718c6126224a6e12ede6

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">pyipma</remote-id>
<maintainer status="unknown">
<email>diogogomes@gmail.com</email>
<name>Diogo Gomes</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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="Python library to retrieve information from Instituto Português do Mar e Atmosfera."
HOMEPAGE="https://github.com/dgomes/pyipma https://pypi.org/project/pyipma/"
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/geopy[${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
}