bump pyipma-2.0.2

This commit is contained in:
Andreas Billmeier 2020-01-21 17:56:34 +01:00
parent 6d97723c16
commit 7f98bb5104
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 34 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* bump zigpy-zigate-0.5.1
* bump PyYAML-5.3
* bump pyintesishome-1.6
* bump pyipma-2.0.2
2020-01-18 homeassistant-0.104.2
* bump pyvizio-0.1.1

View File

@ -1,3 +1,5 @@
DIST pyipma-1.2.1.tar.gz 4311 BLAKE2B 3405b76c6c30e089192bba3a80e5ce2b6a728cac55c8b652008df35c7170f16698803d10eee25b0d09b12b6ccdbe639e5868d51058714bdc8be554b888e0afc2 SHA512 30519bbf1fff668c9bc2710674b13436037d9759d1d967ed94bdef3fb0d8414d55b7856522cfd58be90cfaef7bda21c0d7528b0463728fb0f5f020f1f32d5cd5
DIST pyipma-2.0.2.tar.gz 5366 BLAKE2B 7a70a6b66ea434d61d5ab559be40fb36b8390f95acc87bb8659f854f01d5160cf8ecc676a8bf6ff3beff1472e4f2668132eea48ee34082c55fb29272c3f551b1 SHA512 6a7c2f729d566d672a7acf51b96ba38dcd89f485818a3e1c34dec6b0140e43a9233b6ef1880bdb7ff2e6ee9333541fef5de37d61688ef9cedc565cff5f857e58
EBUILD pyipma-1.2.1.ebuild 781 BLAKE2B 2cf129a07293288a2859a476f702860a9d96e4d610063b00f2b72cbce64c49adc993f5f70dbda9c549116755d63f020a78811446140d402a5d51a83af0a21084 SHA512 33cb41b603200601b3abfb88e72181ed9fc6bfdcd5a87579018f039e496d93668ccbf9d9669a5f319535fe23e1b9c2be2d5ccd101e5132fda8f7a08d2fbd9395
EBUILD pyipma-2.0.2.ebuild 781 BLAKE2B 2cf129a07293288a2859a476f702860a9d96e4d610063b00f2b72cbce64c49adc993f5f70dbda9c549116755d63f020a78811446140d402a5d51a83af0a21084 SHA512 33cb41b603200601b3abfb88e72181ed9fc6bfdcd5a87579018f039e496d93668ccbf9d9669a5f319535fe23e1b9c2be2d5ccd101e5132fda8f7a08d2fbd9395
MISC metadata.xml 435 BLAKE2B ecb42a56661d785cf77cb9cf8d31df0d46828cfc6ff38cc0c8a9899c5d20d00185f4c2e712fe8c0a399d5005fad74e39090efaa6db75c113d9bc47b15fb92488 SHA512 eb87d5c8647ea9af16e987b6db9b28832e85f401a23089de4685c0ba4c9605b9f345f51bd06e75dd6af7b1a4af034a8b437d0e8dc67e3bc099523115e12abd8c

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