From 48a55457f51c544bb6c99b07be24aecbfeec14c9 Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Sun, 17 Dec 2023 18:17:21 +0100 Subject: [PATCH] dev-python/voip-utils: drop 0.0.7 Signed-off-by: Andreas Billmeier --- README.md | 6 ++-- dev-python/voip-utils/Manifest | 2 -- dev-python/voip-utils/voip-utils-0.0.7.ebuild | 31 ------------------- 3 files changed, 3 insertions(+), 36 deletions(-) delete mode 100644 dev-python/voip-utils/voip-utils-0.0.7.ebuild diff --git a/README.md b/README.md index 9938697f1..a3b3d184b 100644 --- a/README.md +++ b/README.md @@ -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 1571 Ebuilds in total, 1560 of them have in total 1577 (42 different) licenses assigned. +There are 1569 Ebuilds in total, 1558 of them have in total 1575 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|901| -|Apache-2.0|338| +|MIT|900| +|Apache-2.0|337| |GPL-3|97| |BSD|87| |LGPL-3|22| diff --git a/dev-python/voip-utils/Manifest b/dev-python/voip-utils/Manifest index 461c51566..72ecaa5bb 100644 --- a/dev-python/voip-utils/Manifest +++ b/dev-python/voip-utils/Manifest @@ -1,5 +1,3 @@ -DIST voip-utils-0.0.7.tar.gz 12643 BLAKE2B ed704e33a93267bd9aa5c7a54b51e950fe7cb733ae478c406dc0195135d1adbc0cca0c7c25d410b96569eccd5eb8ec94dea007fe88d97229caf986c955d50189 SHA512 dbba1b247834f23819a4a3870f006d8ca43b07d5726c37a4a10f2b795578f2448b604fc49d978c5e33d78249877b6f0847eea40fe844b3519cffa77bbb2a9a87 DIST voip-utils-0.1.0.tar.gz 13346 BLAKE2B 7ea9c8752d7404e0a18ee0c4d20f92496ab0244087c3b8fc98786bd83f7c6dc27c6555f25cb091bbbc0980a32e56e73b601ed37ea6780d3e01cd14527f8a1ac9 SHA512 1be2f83a47d7bd98177eacab8a392b3347e1d29b05d86f4f34d787898945057a8d9fc6c0b9e459e648f3c26a17fb23aea15f02c4e8064799998e7c4a0f002e1f -EBUILD voip-utils-0.0.7.ebuild 669 BLAKE2B 19fb611ad389f5b6aa9060f530f08629ae31f11dbc4112d74c37b8736f91c5c6d33120b91c0ff1eaf9ca8df18ca4ff22f2896c233495782145c4d1aab6514c17 SHA512 a54fc59704127e9bb640726640e5e4fa38be3fef5b0d10136cbbe77dccf67e078551c5fc082ed011698a0620fd512fa497b2b360fce1818cb64f7e1a68879521 EBUILD voip-utils-0.1.0.ebuild 669 BLAKE2B 19fb611ad389f5b6aa9060f530f08629ae31f11dbc4112d74c37b8736f91c5c6d33120b91c0ff1eaf9ca8df18ca4ff22f2896c233495782145c4d1aab6514c17 SHA512 a54fc59704127e9bb640726640e5e4fa38be3fef5b0d10136cbbe77dccf67e078551c5fc082ed011698a0620fd512fa497b2b360fce1818cb64f7e1a68879521 MISC metadata.xml 544 BLAKE2B 6ab6be6f08cefe9dfdaa1717e2538916d941c5a092c87664d54a53973c997b14f2509a08e01628f757cd70d4f0b51e3f25215a548d617d431ed01fe06e7d36df SHA512 c69400f5d1b0db9884662233e84f32bf3aea4f00154bbb9cb95e45409139033db24e117a06855e3224f4ed20a7ae1ba546110f49ad391ac7a962d1356d71e1ea diff --git a/dev-python/voip-utils/voip-utils-0.0.7.ebuild b/dev-python/voip-utils/voip-utils-0.0.7.ebuild deleted file mode 100644 index 365121912..000000000 --- a/dev-python/voip-utils/voip-utils-0.0.7.ebuild +++ /dev/null @@ -1,31 +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=setuptools -PYPI_NO_NORMALIZE=1 -inherit distutils-r1 pypi -DESCRIPTION="Voice over IP Utilities" -HOMEPAGE="https://github.com/home-assistant-libs/voip-utils https://pypi.org/project/voip-utils/" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS="README.md" - -RDEPEND="~dev-python/opuslib-3.0.1[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" - -python_test() { - py.test -v -v || die -} - -distutils_enable_tests pytest