dev-python/flipr-api: add 1.5.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-04-09 10:36:36 +02:00 committed by Andreas Billmeier
parent d17fa4a0d4
commit c05988556b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -576,11 +576,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 1821 Ebuilds in total, 1810 of them have in total 1826 (36 different) licenses assigned.
There are 1822 Ebuilds in total, 1811 of them have in total 1827 (36 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1064|
|MIT|1065|
|Apache-2.0|393|
|GPL-3|115|
|BSD|96|

View File

@ -1,5 +1,7 @@
DIST flipr-api-1.4.2.tar.gz 7371 BLAKE2B dd45f734f0722eb04c770c63748a3d92c5cf48b76027fb8d9f174e3370427049e0c6fedbfccaf372d804aaf6e9d9c5c2d197559eda73a357eee420d73f653911 SHA512 a994da132b9604bcfb42242213760424d1c7f076bc802a94f7622a31eae194029aba5e06aeeac74a7267f776aba4e55d1411278c96b9b5270532747a9d80ffaf
DIST flipr-api-1.4.4.tar.gz 7485 BLAKE2B 5283fcdb0b26ca1de3b621c1bd7a1eda688f32bcdcd5428bba58509e9908089df2573bf7383fc84f8af3194597d66073b23cc16310f1b81dcbf36773d25df21f SHA512 677359a16dbd6f2b176694d03f7f3c1b4603332b564d97068b48409ce7c197152190ae38e98cfda9caab0cebe3678db5232ff7c78635cbc7521002828d48a01a
DIST flipr-api-1.5.0.tar.gz 7494 BLAKE2B 9ea13a2573c202f47a17de80f4a4e36079511320bd019490a21eaa425ab61da9575aa29a1dc9063cf586b5a3bc89a0757f8f36127f610bbab1b3f87ddb2706a9 SHA512 e1cacac11cef7b03c1da038c56f868b7dab09f8fb95868315a0f5d1c10337d0301faf1f9448f31067842949aeda56ea18b774cc20a6c6273bf88a001ecb7fd19
EBUILD flipr-api-1.4.2.ebuild 773 BLAKE2B cae370d086919a9d86db32cd188687c18411a8c082b9ad6509e1439b2d9166ac0e0ecfb04d5f91bb42b7795c515ac7a71547fe8a4c5af33181e7ecc5de311729 SHA512 f58b7d5fe11e479290960c8ffdb5cf9368fb095da18cf8b27b5c6583356167df77b24d7e6ac30b64dd3cecc6838581c8ce1d11230c93f3e6889433db828a8893
EBUILD flipr-api-1.4.4.ebuild 773 BLAKE2B cae370d086919a9d86db32cd188687c18411a8c082b9ad6509e1439b2d9166ac0e0ecfb04d5f91bb42b7795c515ac7a71547fe8a4c5af33181e7ecc5de311729 SHA512 f58b7d5fe11e479290960c8ffdb5cf9368fb095da18cf8b27b5c6583356167df77b24d7e6ac30b64dd3cecc6838581c8ce1d11230c93f3e6889433db828a8893
EBUILD flipr-api-1.5.0.ebuild 705 BLAKE2B 4d2f54c1d46bedb716cc3eaaccd3a245574dfd858583afb9bb94f632642226409e815a2d4b8f8a054595c659a97b04b597a795f1845a742994a080fdfd893919 SHA512 6a41e1d235defabd640c4a72e617f27670868832919cc668bc5da7f8ba584ecacbb5079f0b84295ecb5e884c043faa82813c88255603a79a22dd261e8a991edd
MISC metadata.xml 385 BLAKE2B e31fbd9684b7adabe5f604b9cc0e69ed63ce60a8ae0bfba76da29d6226b9c48120d0b62746ca73bab9e09ed8414f16c25ecf84ee8a1fab42c361b59958bfb968 SHA512 e2b2bd8b63fa6421cebb770045ff139f877d0e029f3b00fe866140c7b82d055ca2526ca52f59a97d86e3c77c40a9523fbe164ea89c6eea91e91a967b6c50bc6c

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Python client for flipr API."
HOMEPAGE="https://github.com/cnico/flipr-api https://pypi.org/project/flipr-api/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.25.0[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.7.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest