diff --git a/README.md b/README.md index 8564cb894..76707afe4 100644 --- a/README.md +++ b/README.md @@ -612,11 +612,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 1638 Ebuilds in total, 1627 of them have in total 1645 (42 different) licenses assigned. +There are 1637 Ebuilds in total, 1626 of them have in total 1644 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|948| +|MIT|947| |Apache-2.0|343| |GPL-3|105| |BSD|88| diff --git a/dev-python/pyipp/Manifest b/dev-python/pyipp/Manifest index 8e827a0a6..a7601f3c7 100644 --- a/dev-python/pyipp/Manifest +++ b/dev-python/pyipp/Manifest @@ -1,5 +1,3 @@ -DIST pyipp-0.12.1.tar.gz 15092 BLAKE2B 80e73c61e069d45bb0664edfac075a645d02a9e8bd2ba77c0636b46a13f55bf392e1eb41d1405b15b8da4b6b547657c63e33feff733854e34fcd51f9ad0e4d83 SHA512 0cde1123d8f9ddd8bf43102a6a391775ddcc059dd86e57a8e4cece99513cddc825db6fd8ef0b8ba84f58b9a9226183349d928625ff3b9b19b81532fa6c998473 DIST pyipp-0.14.4.tar.gz 15044 BLAKE2B d2af3e82d2e604f8daa19f2b0b76c6533493a2bc5f97a989676de3ae7fa4c330af0f4e9d001bb1cbc6cca7554be3e0f887ccee00aa9284c2582716051853be59 SHA512 250f343cf70286f7cde5e2f4580aee766471a2ab19f17706f39fa8ecd84e1c3837a19896dc4546b00da80647f6512255c6e2ff060fa9e1f3cb0c74e6861ef834 -EBUILD pyipp-0.12.1-r1.ebuild 1079 BLAKE2B e4f364bd7d3c19cb4750da918ac41b51c3ff9d124a1d60a692f0f5cfae8540f3ee6ccdcc179e3c026e220ae2599f5ce8581bcff984df70e9000d7adaf57c6b09 SHA512 654ac96ea6b25e57aa95a33e05f355c30ad28ce1e40b2633b8d611ecee171f3a0b900c1a60d82388285f77f0078a613fce3b282103b31a029c8fbd63b5ae82b3 EBUILD pyipp-0.14.4.ebuild 1079 BLAKE2B 9786650aab1c72a47c1ddd2ed63e71c08af116acbce4688db0311c0b1b9655422abd2bf674719c4c042f330d8d4d36ac66d85de9f726045a30c934ddda6e87fa SHA512 eb14445be9464f1a14460aa975c104b56cb5c6fdcff188b09c922997b913f7748b3199cb456792719b4d5410a6e8334258f1da8539c215864ecec9cd6c7faae0 MISC metadata.xml 522 BLAKE2B 6d5e04048c6b7a10b711eee89b3cb8ad2a2f8c7322bb8f25bdecc02b75e4cb20ca194787e348924b515dae72df30f3249e504606c456774a99ec96f0db3e67f1 SHA512 d9ce732153d352341b952a4044b56f0fc16fa09b0186de47166d6a7f099916d4025e7cfbbb0a9a25392ae9de4fed798429cd43f20cd501336c3081ce3f2fb72c diff --git a/dev-python/pyipp/pyipp-0.12.1-r1.ebuild b/dev-python/pyipp/pyipp-0.12.1-r1.ebuild deleted file mode 100644 index d0d8f8292..000000000 --- a/dev-python/pyipp/pyipp-0.12.1-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=poetry -inherit distutils-r1 pypi - -DESCRIPTION="Asynchronous Python client for Internet Printing Protocol (IPP)." -HOMEPAGE="https://github.com/ctalkington/python-ipp https://pypi.org/project/pyipp/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" - -RDEPEND=">=dev-python/aiohttp-3.6.2[${PYTHON_USEDEP}] - >=dev-python/awesomeversion-21.10.1[${PYTHON_USEDEP}] - >=dev-python/backoff-1.9.0[${PYTHON_USEDEP}] - >=dev-python/deepmerge-0.1.0[${PYTHON_USEDEP}] - >=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/aresponses[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pytest-freezegun[${PYTHON_USEDEP}] - dev-python/freezegun[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest