bump pyipma-3.0.4

This commit is contained in:
Andreas Billmeier 2022-09-14 20:27:36 +02:00 committed by Andreas Billmeier
parent 04d36b6f11
commit c45702b46e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -523,11 +523,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1886 Ebuilds in total, 1879 of them have in total 1891 (35 different) licenses assigned.
There are 1887 Ebuilds in total, 1880 of them have in total 1892 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1140|
|MIT|1141|
|Apache-2.0|355|
|GPL-3|116|
|BSD|104|

View File

@ -1,5 +1,7 @@
DIST pyipma-2.0.5.tar.gz 5718 BLAKE2B 0918441bcff5ae0c2be7fc8c7018f33ddb38ddd7944f0482f5b9d3cefb48c967b4d927f846f59bc7df39cebb3fcd767c594d0393e7cf5c1184f167ec4e6ab484 SHA512 a2e59c8562125b07b02285130ef0ca876a8e265d4d8bccff398008e008492204e3556273fca6943281658ec7645de1888721078f79326e7389a3de28ab51d3db
DIST pyipma-3.0.2.tar.gz 9498 BLAKE2B 94d9f886fd77db96270ae82a7a7e059002be3b7084d263f2b2acc933bd043230e8b6afff01aed8885021e7735f88b87193ef8ad202c094f9f0cb1ba1e95f5903 SHA512 eb601ac02fbb21998a054deee8054b94965c668f2aca4f48fbbd0e05346c00b58081cb992e48b3fa72f8a95f22b43baf8e4b5752c8c714b98ad828b86ed66a6b
DIST pyipma-3.0.4.tar.gz 13939 BLAKE2B a25e302faacaeda1ed5633ddca880fff04fb4d387fe1a50717f05704a0bab0acec1eae9f92bb33aa80fb94bc83277773e82a01c99e17f68f27af20a585c17d39 SHA512 a4b301994a878991ef411f7cf4b1ea7a937a47b8398f3570fcea5356d9c18442762dd43c7e10524cffadccd87d0e4ad4d5f51b2f01119d023f8afa799638bf56
EBUILD pyipma-2.0.5.ebuild 798 BLAKE2B 4c2f594ae459c8d323fbd5e868d9ea3ea54fb167f561e7c73386bf5abb0de8cfec5b8a4e5a84a1402587f1265c3b41d9509e266bf05e3314b61978aaeafb16dd SHA512 f4ef9a6b2bc18f71b6a09bdccde6764657ee3dc466adc65a21af187d3e65f185d2431d22885ec150fdcd435258e3736983677a4e78dbe6173c3bdd1778ee7c37
EBUILD pyipma-3.0.2.ebuild 829 BLAKE2B 1994307a0d19b539e523245fad53d9932259b449579b13a3cdd1e04b93c927922fc8f797ef97a518ce48dedf13e4025182e9118c73f5d54df7344c279abc0e13 SHA512 f37f4da18a83160134a2c3efbbd878f343aa64a6608ab2db2e7b8b14ff9c63acdcfb8e299294eb44b54a7e8b8dde74c163dcd8906e06f91ef4838c5665a7b779
EBUILD pyipma-3.0.4.ebuild 837 BLAKE2B 1e0bbf704c64defebd242f737a560df3d47a7187772661b06b99bc1095b5d13bd0ee94679e705a83bbb2f3e7b6321299614df2d2a3eff1ced9d6fd649e180904 SHA512 9eba6bda91b691f45e1b9d7f7efd51431b19cb838deb7b04207a6e2925594559cf32a2ebaa181b4a668e307e9b9ec42f1369d236485cee379998fe2129792022
MISC metadata.xml 450 BLAKE2B df2dc3a7c513d92b085f725112251b13442ccc1da6bfdb53413adeb923ce4dd3224901b1bbfc36946900f1658d8dcce00e6fde3f73bb1fee873bbff869b30ed8 SHA512 3d1b615084cf02b699db3fd46762ef1386e20eaf52c98223aa926b954c162bdabef76bc0e7a607103fbb4bc5da72165615274602a0908fde2bb2261267d9883a

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
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 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
sci-geosciences/geopy[${PYTHON_USEDEP}]"
BDEPEND="
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
}
distutils_enable_tests pytest