dev-python/debugpy: drop 1.6.4

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-17 17:14:00 +01:00
committed by Andreas Billmeier
parent 79a307161d
commit d80d3ecb92
3 changed files with 2 additions and 43 deletions

View File

@@ -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 1713 Ebuilds in total, 1702 of them have in total 1720 (42 different) licenses assigned.
There are 1712 Ebuilds in total, 1701 of them have in total 1719 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|999|
|MIT|998|
|Apache-2.0|355|
|GPL-3|109|
|BSD|93|

View File

@@ -1,5 +1,3 @@
DIST debugpy-1.6.4.gh.tar.gz 6937201 BLAKE2B 9be3d508014bc46ed546e3184fea1ea36332025584dd87859f196bd9ed26b5eba9a0b622516fa0f3f9369ac3d90242d9e37412445a1045a52ce0be820b80e09b SHA512 0f353f745502a4ed6a644bc32aa148f45104e7f07daa41c0bf6e59eefdf104f6c5b4328693c237b9c6e8736b542e25938b336288f21cd4967bb81f6c42125fbc
DIST debugpy-1.8.0.gh.tar.gz 6760323 BLAKE2B 99c4188c0b0383dc4dcbdd86c4d35e6eb973ca32ba56b757adea9668b161f20f17b436e0dc019790b1e85586387fc848712143c5e3d3814e2522850d97a4048e SHA512 f9e47371ca854c12811d1c0984f063b1ad5cac2bea769f91a67f9fa125cfcbeccbecafca9b9d5ea16a4ed8a1c123f34db3ba19efe1567b93a86cbd325239b355
EBUILD debugpy-1.6.4.ebuild 1019 BLAKE2B 0f291f1d99a96d04124eacfdfc2c4dcee3af02c99b1dbef405871be25875dfb60200b73e8681df40f888845b3de781d673539e5c1a5b81990dc4ac3efab625d3 SHA512 5253adcb9fa791c32e6cb93ce39727a9a922c2c171efc12cf43c0053eb7226c6721355a994034d0f0c33986bcaf2e2dd1fdaa64e291486e5999726d762fbcb18
EBUILD debugpy-1.8.0.ebuild 1019 BLAKE2B 0f291f1d99a96d04124eacfdfc2c4dcee3af02c99b1dbef405871be25875dfb60200b73e8681df40f888845b3de781d673539e5c1a5b81990dc4ac3efab625d3 SHA512 5253adcb9fa791c32e6cb93ce39727a9a922c2c171efc12cf43c0053eb7226c6721355a994034d0f0c33986bcaf2e2dd1fdaa64e291486e5999726d762fbcb18
MISC metadata.xml 522 BLAKE2B 9c9cf443d38c8de3516a488f67f81b68759d11283efd464dba3fe27191f2b66cdd622d32465c0820152bda74e92b6c8e3ade57c92a40d61dbbc7587df50f2c60 SHA512 f5a601e50c25ca8105b3a2307bb3b183db6a85644d7bf7e67c036ac2807006a77c9856b9058c96590cd7c1041890d2a9863d0ec0991c75cc462c1cd7df6d8b39

View File

@@ -1,39 +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
inherit distutils-r1
DESCRIPTION="An implementation of the Debug Adapter Protocol for Python"
HOMEPAGE="https://github.com/microsoft/debugpy/ https://pypi.org/project/debugpy/"
SRC_URI="
https://github.com/microsoft/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
# This is completely broken
RESTRICT="test"
RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
distutils_enable_tests pytest
python_prepare_all() {
# Drop unnecessary and unrecognized option
# __main__.py: error: unrecognized arguments: -n8
# Do not timeout
sed -e '/addopts/d' -e '/timeout/d' -i pytest.ini || die
# Unbundle dev-python/pydevd
#rm -r src/debugpy/_vendored tests/tests/test_vendoring.py || die
distutils-r1_python_prepare_all
}