dev-python/python-fullykiosk: change SRC_URI, drop olds

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-03 00:03:27 +01:00 committed by Andreas Billmeier
parent 876c9682f5
commit 1f30161f9a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 6 additions and 42 deletions

View File

@ -612,12 +612,12 @@ 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 1894 Ebuilds in total, 1883 of them have in total 1902 (40 different) licenses assigned.
There are 1893 Ebuilds in total, 1882 of them have in total 1901 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1092|
|Apache-2.0|411|
|Apache-2.0|410|
|GPL-3|123|
|BSD|102|
|GPL-2|27|

View File

@ -1,5 +1,3 @@
DIST python-fullykiosk-0.0.11.tar.gz 2664 BLAKE2B f15df5ff3d9e00978e2cdb7bf7aace99b0b701483f0c3e9d759db61aa9c45a249d6dc19ca8d3d0578ea08649649f8a3b927cdf7fee7f142387a397567b521911 SHA512 7857a4730485fa076af625dfd00ad2ea8886f829f8a3c15e1c3e5c0890a945d7f74b367032b4c1231c8e917a73937e7a582ac10accf5da53724128bc57cc702f
DIST python-fullykiosk-0.0.12.tar.gz 2834 BLAKE2B 116d0d26c36b042190f96c04a76f06fc8974a057597627ad71497f2bb5f3f69b80d01e57d76a1f766655e25db49a7e0102c0a2ccdddfd250b900a03045f8c27c SHA512 4446f034dd5d29021eaf408283524e8e89f7f50f8f2001c2d3abb7200b2ad296e660f03d79e258b55cc7d35e6fc01179d67263c4857c01e2b96d4fd64879a660
EBUILD python-fullykiosk-0.0.11.ebuild 725 BLAKE2B 2f2392a203f69c103b0ba5abcaee6bc43d955dc12a134c412de49a44097e82b322d4526397e58708a312c15224c8a93cee36d1a5db370fc72ee142e73e7379a4 SHA512 e012991e5835ccb1ad13370eee863e4330b6c286ac21518e0d6736812462baea03423f4607cc201726a5587fd6b266b9ae9533f8dd5c41d513a7713061f93662
EBUILD python-fullykiosk-0.0.12.ebuild 756 BLAKE2B ebe4475cc99eddca333cfe6272f13f8f44af60149d2c6248a0cc99e2efbd7393b38449e5a408f82d5f917532e9187bb3c58b3da768e3c82869066bd953049ba3 SHA512 0c0f00e532f1109e8f2d8bf04636b49544bc18eaa936b317f548c06730114096c90c20589615afbe5afdbd13567bfbf1b19a7d4c943c4b4c8ed62a7f11429e7f
EBUILD python-fullykiosk-0.0.12.ebuild 690 BLAKE2B a708aa27b78c8a67484cc0b5f3b9506cc1688912a4da80eb1035a496c57b6112f400724a59a5eb39e385ae659fe82ce022385125336f7e0af749aabb44faadb6 SHA512 91bc25b401ab8e3e96faaf37837cb2da19c4b3deebeaa92e8f277bee1957c14688bc2b2a05d838708403c4d97109936ac7dc2103b2691ec32b9cc98f58d7c0ec
MISC metadata.xml 531 BLAKE2B 815a54d819c67d3b3fde0eee8bb22ff5ee16da0a0e9ebd95b11e079ebb2e450523a8a6b3946b1ccdae9e24ad56543fc56414f26524e3135e809f8f20e3ae6900 SHA512 62ef7eb186e455a3ca0d3ef2802b58d658f5cc1934f87f69156be511c3fc6ea5345405a4d59692020ef7d5878c8558bb3c6e731c65f6de2115c4e059d339691d

View File

@ -1,33 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="Python wrapper for Fully Kiosk Browser REST API"
HOMEPAGE="https://github.com/cgarwood/python-fullykiosk https://pypi.org/project/python-fullykiosk/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -3,13 +3,13 @@
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper for Fully Kiosk Browser REST API"
HOMEPAGE="https://github.com/cgarwood/python-fullykiosk https://pypi.org/project/python-fullykiosk/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
@ -21,7 +21,6 @@ DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"