bump smhi-pkg-1.0.16

This commit is contained in:
Andreas Billmeier 2022-10-06 07:47:45 +02:00 committed by Andreas Billmeier
parent a41518682b
commit 835b2b2d35
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 44 additions and 5 deletions

View File

@ -538,11 +538,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 1922 Ebuilds in total, 1915 of them have in total 1927 (35 different) licenses assigned.
There are 1923 Ebuilds in total, 1916 of them have in total 1928 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1156|
|MIT|1157|
|Apache-2.0|364|
|GPL-3|121|
|BSD|106|

View File

@ -1,3 +1,5 @@
DIST smhi-pkg-1.0.15.tar.gz 4880 BLAKE2B 42908570200e5d15f73e6a59e711f21f248ade2bff204885791a85e5507049d7ac7cb5887d13cb6d911d676875f4a098d6076c3f48bff905cb8f3257f2601f8c SHA512 ef3732d3bacad2128de5f3570115508063e0ea8e0a0593d4496463bf0844e8045a98aa665c4f3fc0309d99d8883966529f752f610b631e48e422844e6c8c3683
EBUILD smhi-pkg-1.0.15.ebuild 852 BLAKE2B a9859890d4bccd0e2bf42d52e3838432303ea1b796a78d476db2f3265df2d976de7cde0d7fbd99ff465aa06f140d39a841810aa6b2391505187cddfe5fd487e0 SHA512 57534533ba4f05528c7683b55612751a0e197bba526cf3f2b94ad8abffb1eb63becaea985e365a88866612ba85e50e6b43640de621ff1a0279ed6152e968b3f4
DIST smhi-pkg-1.0.16.tar.gz 5633 BLAKE2B 8b289c8bab06bd71c9b4e709cbe68a4d921dbf3d4e3f81011d3c6ee8ce460d26985c02ab3cd3e3ff39c217051ce45060cbb2bf0fe37d081285a04c34eaebf656 SHA512 7c52e8506e18eb4b9d77b04dc099ff75808cdd55eb002f89e866ad15b98e20bd259a4a3b0f2db053ec2ba6f3f7d6e168fb3be11a5a6e48d6ff505963ce9f5548
EBUILD smhi-pkg-1.0.15.ebuild 824 BLAKE2B 8c589fe404ce4823cc6691c66e5b0e1ac71676fe3061f019830e2cc2cfc6fa368f0d2594226dfb5ab81fe28da80559c6676e750a47d307537b3a371eac05d8d6 SHA512 1a1fb151c61c62c084fc0ababea400a24ca5f119d251ce8fb8af734c39b72d7f8c336ae4f9684c2a2b62e6d1807cf9c45c783dab5d9b0e6c8056f6bb53effb43
EBUILD smhi-pkg-1.0.16.ebuild 855 BLAKE2B f1be01ba3972fc8890157fb79c33f530007c2025956d0dbefae62a2d403e0555e5640b3ea89dd84b8088cca18dda71039e520fcaa6909ade4a090d9d78fb452f SHA512 29cf2fa94edb718271a44ed64045714ac9e68a0b4231c309a565dee08f9222ebd90b16568236b31be41eda20ee6fafbf5867efc31a288880dd1986b8f65b0e6c
MISC metadata.xml 451 BLAKE2B 6868c1f1378dd150b00c5b03d8e7067c3182c144e036303403f118ba591ca9c8be4cf8e4345b3f45d7bb699a83cb68387be0d5477f89f385d5d781c5fd2b0a6b SHA512 79bcf9d6d8ca3fc4a0cc8cb7dce8c7f00d6ebb650fd95bb15178139c2e0757dbe682614612d75eeb6aac8b973fa7cc34c546d0684b9fd23809f8c2556dff30f4

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,37 @@
# 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="Gets the weather forecast data from Swedish weather institute"
HOMEPAGE="https://github.com/joysoftware/pypi_smhi https://pypi.org/project/smhi-pkg/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${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