dev-python/pizzapi: add 0.0.6

Closes: #3606
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-09-22 09:10:56 +02:00
parent 26aa876c13
commit 27cbd9e2ee
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 39 additions and 5 deletions

View File

@ -606,11 +606,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 1986 Ebuilds in total, 1975 of them have in total 2000 (42 different) licenses assigned.
There are 1987 Ebuilds in total, 1976 of them have in total 2001 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1147|
|MIT|1148|
|Apache-2.0|443|
|GPL-3|117|
|BSD|112|

View File

@ -1,3 +1,5 @@
DIST pizzapi-0.0.3.tar.gz 5950 BLAKE2B 711262fbd1fcc5843f33fda2b8dafd52503d98533c4563b170e02e3bfc1c320e39b14983eb6764609b1e23bbd1e02e064f0299471b658efa2373c865a1e15911 SHA512 b9f6241b4222a9080767d6ff5394a97589a9adbb7ae60b1019af552cfb4e6d0bc531345d31e8e348621b7f30b3b97c253ad75ab44ea85bd4773c968fa47906a7
EBUILD pizzapi-0.0.3.ebuild 845 BLAKE2B 2c1919d1b5a5eced75806e99ec4257eeea87651d0e3c6f6cfbe78b0bbdd40d0255f243048746c6f086902a54f2ca8d23e9fc986b702ca684d2c35c582041b10c SHA512 3c64d145c66369b915c2eba1f6f11efde04a45149236f8990cefe618840bffabd7b6912a9def1d5eb429d37f7f4ccca42cc602d54a798c014a844a4000cc832a
DIST pizzapi-0.0.6.tar.gz 11435 BLAKE2B 9eafc2ca9908dbb2b7ce781e8caf66d8657972acdb2a9060314a3fb47ca16c986e8752e764fc6c56437463c0e1156a184454a914b8536047cc0ca006fcbd2089 SHA512 bef356aa7c6ceff9f10a93ec46e64eeab2dbd37261d37cc0bccf27ffe1ea227c64dd17d4e05ebc5c1984baa94999192a653a1fa57e7ab25ce4bb1e85441c566c
EBUILD pizzapi-0.0.3.ebuild 845 BLAKE2B 2162ad2c7d1b12ff4c2aef51deae35566a50c7d2af69449614800433d68e97895d97e5d64cfbabeb984b2e55381723ccc404da47d5981cf0f86c0f7e5d4ba8ab SHA512 7c06b79151c6b72b62ec203631950f2caf8c81a61e95eba5c35a9002f0c30053f99dc2369a5e8d01bfe14ffa42ef581ea09c68cc4fdc5a304c09dabef306b801
EBUILD pizzapi-0.0.6.ebuild 797 BLAKE2B c38d9e6bcf7de8819bfbc75ffc8d48519478d4ac0f92a26ca3a4ed2456b075107f7e62c5e29d796670bb0d2aabb1cf81ba69b46151b300140cdf09b960e1cfb9 SHA512 b7467c26dbad81ab417a89764c623376673ec35d3d0033a9753885e796bcbd3a2b1898c75de080a1c2dacb8442167c818fa457f273993b4ba483fc0e0ed99dce
MISC metadata.xml 501 BLAKE2B 043127b0a34f4f8094efd941d22f082aacd510091263bba227a87293710a2fba2d11b74ae35d9bee85a4081134c4f796f59a9cfaab5d99042d8c5873e3979a88 SHA512 9793841aca9afff620c0027e74b2d10b897e4f7021bbcbe01b6b7ce6a5bc2e9b303c5997d99c84905621085af4d07bb86ee998fbd38ecca1772cbacbc2afe57f

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi

View File

@ -0,0 +1,32 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="A Python wrapper for the Dominos Pizza API"
HOMEPAGE="https://github.com/aluttik/pizzapi https://pypi.org/project/pizzapi/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/pyhamcrest[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
)"
src_prepare() {
sed "s/packages=find_packages()/packages=find_packages(exclude=['tests','tests.*'])/g" -i setup.py || die
eapply_user
}
distutils_enable_tests pytest