[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/files/, dev-python/debugpy/, profiles/prefix/darwin/macos/, ...

2024-03-29 Thread Michał Górny
commit: 471594b7f0a246ff2a6673175cc7625f2ae2a7c5
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 29 14:32:46 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 29 14:32:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=471594b7

dev-python/debugpy: Remove last-rited pkg

Closes: https://bugs.gentoo.org/924221
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest|  2 -
 dev-python/debugpy/debugpy-1.6.6.ebuild| 43 
 dev-python/debugpy/debugpy-1.8.0.ebuild| 79 --
 .../files/debugpy-1.6.6-unbundle-pydevd.patch  | 77 -
 .../files/debugpy-1.8.0-unbundle-pydevd.patch  | 46 -
 dev-python/debugpy/metadata.xml| 16 -
 profiles/package.mask  |  6 --
 profiles/prefix/darwin/macos/package.mask  |  1 -
 8 files changed, 270 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
deleted file mode 100644
index c4d06f27e148..
--- a/dev-python/debugpy/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST debugpy-1.6.6.gh.tar.gz 6942488 BLAKE2B 
18c6eee2322239e5cbbacf9431fa7480abcf14a68f290d2228edc8b2ead042e7b09d19ee5bcc60be32e8a6b0b34b925eaa8246991298744f3ca74d4ed2ea3f3e
 SHA512 
1a209bfd702d5f0649ce50b0910023e295953dd39cefdefb0b5af1d6023e629a727610789cd244e656bdf4276cee957fa463506ddaca603ab3ee85cc250dc212
-DIST debugpy-1.8.0.gh.tar.gz 6760323 BLAKE2B 
99c4188c0b0383dc4dcbdd86c4d35e6eb973ca32ba56b757adea9668b161f20f17b436e0dc019790b1e85586387fc848712143c5e3d3814e2522850d97a4048e
 SHA512 
f9e47371ca854c12811d1c0984f063b1ad5cac2bea769f91a67f9fa125cfcbeccbecafca9b9d5ea16a4ed8a1c123f34db3ba19efe1567b93a86cbd325239b355

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
deleted file mode 100644
index 1d59edda4b4d..
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-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="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-# This is completely broken
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.6.6-unbundle-pydevd.patch"
-)
-
-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
-}

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
deleted file mode 100644
index 71f66c164616..
--- a/dev-python/debugpy/debugpy-1.8.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 multiprocessing
-
-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="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-
-RDEPEND="
-   dev-python/pydevd[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # Unbundle dev-python/pydevd
-   rm -r src/debugpy/_vendored/pydevd || die
-   local PATCHES=(
-   "${FILESDIR}/${PN}-1.8.0-unbundle-pydevd.patch"
-   )
-
-   # 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
-
-   distutils-r1_python_prepare_all
-}

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2024-02-09 Thread Michał Górny
commit: 8f2b0f5c48c89195704d3184c21ed3f103fc8747
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  9 17:06:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  9 18:10:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f2b0f5c

dev-python/debugpy: Deselect newly failing tests

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/debugpy-1.8.0.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
index 69bfafef9d4e..71f66c164616 100644
--- a/dev-python/debugpy/debugpy-1.8.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -57,6 +57,10 @@ python_test() {
tests/debugpy/test_gevent.py::test_gevent
tests/debugpy/test_run.py::test_custom_python_args
tests/tests/test_timeline.py::test_occurrences
+   # TODO: random regressions
+   tests/debugpy/test_flask.py::test_flask_breakpoint_multiproc
+   tests/debugpy/test_exception.py::test_raise_exception_options
+   
tests/debugpy/test_exception.py::test_vsc_exception_options_raise_without_except
)
local EPYTEST_IGNORE=(
tests/tests/test_vendoring.py



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-12-02 Thread Arthur Zamarin
commit: abe9678b14588cae6b23c374d7953581985b4cd4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 15:01:22 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 15:01:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abe9678b

dev-python/debugpy: Stabilize 1.8.0 hppa, #918462

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
index aa76007a6796..69bfafef9d4e 100644
--- a/dev-python/debugpy/debugpy-1.8.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.8.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
dev-python/pydevd[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-12-02 Thread Arthur Zamarin
commit: e7b9da7bdba94d2c440aa14a82fc482851011332
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 09:27:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 09:27:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b9da7b

dev-python/debugpy: Stabilize 1.8.0 arm, #918462

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
index 393b66c2788e..aa76007a6796 100644
--- a/dev-python/debugpy/debugpy-1.8.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.8.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
dev-python/pydevd[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-11-25 Thread Sam James
commit: 743889f77a98d8a3e819fb73a32c32a81a267f8c
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 25 08:51:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 25 08:51:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743889f7

dev-python/debugpy: Stabilize 1.8.0 arm64, #918462

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
index 5324eccaca25..393b66c2788e 100644
--- a/dev-python/debugpy/debugpy-1.8.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.8.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
dev-python/pydevd[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-10-24 Thread Michał Górny
commit: ee61e60df88a71f78822307aa13cf253582ff4c4
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct 24 14:04:00 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 24 14:41:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee61e60d

dev-python/debugpy: Enable py3.12

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/debugpy-1.8.0.ebuild | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
index bf665f0da2e0..5324eccaca25 100644
--- a/dev-python/debugpy/debugpy-1.8.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.8.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 multiprocessing
 
@@ -61,6 +61,15 @@ python_test() {
local EPYTEST_IGNORE=(
tests/tests/test_vendoring.py
)
+
+   case ${EPYTHON} in
+   python3.12)
+   EPYTEST_DESELECT+=(
+   tests/debugpy/test_flask.py
+   )
+   ;;
+   esac
+
epytest -p timeout -p xdist -n "$(makeopts_jobs)" --dist=worksteal \
-k "not attach_pid"
 }



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2023-10-20 Thread Michał Górny
commit: f8c4b4f7d10385ae1d64c01cc854e758f1eda92d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 20 20:02:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 20 20:13:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c4b4f7

dev-python/debugpy: Bump to 1.8.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest|  1 +
 dev-python/debugpy/debugpy-1.8.0.ebuild| 66 ++
 .../files/debugpy-1.8.0-unbundle-pydevd.patch  | 46 +++
 3 files changed, 113 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index b5ce88b5c535..c4d06f27e148 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1 +1,2 @@
 DIST debugpy-1.6.6.gh.tar.gz 6942488 BLAKE2B 
18c6eee2322239e5cbbacf9431fa7480abcf14a68f290d2228edc8b2ead042e7b09d19ee5bcc60be32e8a6b0b34b925eaa8246991298744f3ca74d4ed2ea3f3e
 SHA512 
1a209bfd702d5f0649ce50b0910023e295953dd39cefdefb0b5af1d6023e629a727610789cd244e656bdf4276cee957fa463506ddaca603ab3ee85cc250dc212
+DIST debugpy-1.8.0.gh.tar.gz 6760323 BLAKE2B 
99c4188c0b0383dc4dcbdd86c4d35e6eb973ca32ba56b757adea9668b161f20f17b436e0dc019790b1e85586387fc848712143c5e3d3814e2522850d97a4048e
 SHA512 
f9e47371ca854c12811d1c0984f063b1ad5cac2bea769f91a67f9fa125cfcbeccbecafca9b9d5ea16a4ed8a1c123f34db3ba19efe1567b93a86cbd325239b355

diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild 
b/dev-python/debugpy/debugpy-1.8.0.ebuild
new file mode 100644
index ..bf665f0da2e0
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.8.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 multiprocessing
+
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/pydevd[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Unbundle dev-python/pydevd
+   rm -r src/debugpy/_vendored/pydevd || die
+   local PATCHES=(
+   "${FILESDIR}/${PN}-1.8.0-unbundle-pydevd.patch"
+   )
+
+   # 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
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   local EPYTEST_DESELECT=(
+   tests/debugpy/test_gevent.py::test_gevent
+   tests/debugpy/test_run.py::test_custom_python_args
+   tests/tests/test_timeline.py::test_occurrences
+   )
+   local EPYTEST_IGNORE=(
+   tests/tests/test_vendoring.py
+   )
+   epytest -p timeout -p xdist -n "$(makeopts_jobs)" --dist=worksteal \
+   -k "not attach_pid"
+}

diff --git a/dev-python/debugpy/files/debugpy-1.8.0-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.8.0-unbundle-pydevd.patch
new file mode 100644
index ..54ccdae4ca01
--- /dev/null
+++ b/dev-python/debugpy/files/debugpy-1.8.0-unbundle-pydevd.patch
@@ -0,0 +1,46 @@
+diff --git a/setup.py b/setup.py
+index 0bb4f00..abfce1c 100644
+--- a/setup.py
 b/setup.py
+@@ -18,12 +18,10 @@ del sys.path[0]
+ 
+ sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
+ import debugpy
+-import debugpy._vendored
+ 
+ del sys.path[0]
+ 
+ 
+-PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
+ DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
+ 
+ 
+@@ -146,8 +144,6 @@ if __name__ == "__main__":
+ extras["platforms"] = platforms
+ 
+ cmds = versioneer.get_cmdclass()
+-override_build(cmds)
+-override_build_py(cmds)
+ 
+ setuptools.setup(
+ name="debugpy",
+diff --git a/src/debugpy/_vendored/force_pydevd.py 
b/src/debugpy/_vendored/force_pydevd.py
+index cfd8927..0cb1bca 100644
+--- a/src/debugpy/_vendored/force_pydevd.py
 b/src/debugpy/_vendored/force_pydevd.py
+@@ -8,15 +8,6 @@ import warnings
+ 
+ from . import check_modules, prefix_matcher, preimport, vendored
+ 
+-# Ensure that pydevd is our vendored copy.
+-_unvendored, _ = 

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2023-03-11 Thread Michał Górny
commit: 86dba8272365f6c1e74b3aea7239600c6afc747d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 11 10:00:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 11 10:00:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86dba827

dev-python/debugpy: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest|  1 -
 dev-python/debugpy/debugpy-1.6.3.ebuild| 43 --
 .../files/debugpy-1.6.1-unbundle-pydevd.patch  | 94 --
 3 files changed, 138 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 23c020c4fa83..b5ce88b5c535 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,2 +1 @@
-DIST debugpy-1.6.3.gh.tar.gz 6697583 BLAKE2B 
38138be3294615e78995575c8f8ad1f990733be90cfaf76197c714e84f179086501417cc2d64627d3a8ecd0fa451e14e3229bd14d02353bc7512e288e8d4f092
 SHA512 
c055351351f6705b7bbab93ec07abba09027f1f2a52d90a242f51b4eb6fec19821fbb251b8c8e80587d1333faa4c6d7cab5dead938e9739c5c45013af8ee46a7
 DIST debugpy-1.6.6.gh.tar.gz 6942488 BLAKE2B 
18c6eee2322239e5cbbacf9431fa7480abcf14a68f290d2228edc8b2ead042e7b09d19ee5bcc60be32e8a6b0b34b925eaa8246991298744f3ca74d4ed2ea3f3e
 SHA512 
1a209bfd702d5f0649ce50b0910023e295953dd39cefdefb0b5af1d6023e629a727610789cd244e656bdf4276cee957fa463506ddaca603ab3ee85cc250dc212

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
deleted file mode 100644
index 9f7bbc8501a4..
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-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="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-
-# This is completely broken
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.6.1-unbundle-pydevd.patch"
-)
-
-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
-}

diff --git a/dev-python/debugpy/files/debugpy-1.6.1-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.6.1-unbundle-pydevd.patch
deleted file mode 100644
index c8ebe384349d..
--- a/dev-python/debugpy/files/debugpy-1.6.1-unbundle-pydevd.patch
+++ /dev/null
@@ -1,94 +0,0 @@
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -8,7 +8,6 @@ exclude = '''
- ( __pycache__
- | ^/.tox
- | ^/versioneer.py
--| ^/src/debugpy/_vendored
- | ^/src/debugpy/_version.py
- )
- '''
 a/setup.py
-+++ b/setup.py
-@@ -18,12 +18,10 @@ del sys.path[0]
- 
- sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
- import debugpy
--import debugpy._vendored
- 
- del sys.path[0]
- 
- 
--PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
- DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
- 
- 
-@@ -33,27 +31,6 @@ def get_buildplatform():
- return None
- 
- 
--def cython_build():
--print("Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)")
--subprocess.call(
--[
--sys.executable,
--os.path.join(PYDEVD_ROOT, "setup_pydevd_cython.py"),
--"build_ext",
--"-i",
--]
--)
--
--
--def iter_vendored_files():
--# Add pydevd files as data files for this package. They are not
--# treated as a package of their own, because we don't actually
--# want to provide pydevd - just use our own copy internally.
--for project in debugpy._vendored.list_all():
--for filename in debugpy._vendored.iter_packaging_files(project):
--yield filename
--
--
- # bdist_wheel determines whether the package is pure or not based on 
ext_modules.
- # However, all pydevd native modules are prebuilt and packaged as data, so 
they
- # should not be in the list.
-@@ -133,8 +110,6 @@ with open("DESCRIPTION.md", "r") as fh:
- 
- 
- if __name__ == "__main__":
--if not os.getenv("SKIP_CYTHON_BUILD"):
--cython_build()
- 
- extras = {}
- platforms = get_buildplatform()
-@@ -179,11 +154,9 @@ if __name__ == 

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: 8c3aa7c07d4dc2d35bd3fe5c9dfe285761a1cfde
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 09:43:00 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 09:43:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3aa7c0

dev-python/debugpy: Stabilize 1.6.6 hppa, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index de63569a975a..1d59edda4b4d 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: a7104460769654b38336f2fce7ea3955b8a66a9e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:33:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:33:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7104460

dev-python/debugpy: Stabilize 1.6.6 amd64, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index f3ae936ed976..240e666c3d6b 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: 3e23d9fcc36045fd6a365514a9d590cee7e25254
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:33:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:33:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e23d9fc

dev-python/debugpy: Stabilize 1.6.6 x86, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index 7668e26a8a12..f3ae936ed976 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: 7510c3e8e4e92809cd034d39e3d6687abba802a4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:33:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:33:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7510c3e8

dev-python/debugpy: Stabilize 1.6.6 ppc, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index 240e666c3d6b..de63569a975a 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: c0a526db1e27964f5dc3add73f9d66605553b8aa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:09:50 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:09:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a526db

dev-python/debugpy: Stabilize 1.6.6 arm64, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index e6ca407547fb..7668e26a8a12 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: 07e7740ccfeacd39784288594fc13531011eb430
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:06:44 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:06:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07e7740c

dev-python/debugpy: Stabilize 1.6.6 arm, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index f60a9e92a5c6..e6ca407547fb 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: 21b9242e16a5b409eb5c5b81ce82aef9e173bbc0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:06:19 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:06:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21b9242e

dev-python/debugpy: Stabilize 1.6.6 sparc, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index 61181fef6059..f60a9e92a5c6 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-03-11 Thread Arthur Zamarin
commit: d15b9801aad26e4b4d2b21a21b1fe45356e668d6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 11 08:04:26 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 11 08:04:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15b9801

dev-python/debugpy: Stabilize 1.6.6 ppc64, #900797

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
index 8579d79609a8..61181fef6059 100644
--- a/dev-python/debugpy/debugpy-1.6.6.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2023-02-02 Thread Andrew Ammerlaan
commit: ebbcc81afdcfaa490370f4c5137c660bedf54822
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Feb  2 16:36:09 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Feb  2 16:37:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebbcc81a

dev-python/debugpy: add 1.6.6

Closes: https://bugs.gentoo.org/892707
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/Manifest|  1 +
 dev-python/debugpy/debugpy-1.6.6.ebuild| 43 
 .../files/debugpy-1.6.6-unbundle-pydevd.patch  | 77 ++
 3 files changed, 121 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index b0fc004581f0..23c020c4fa83 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1 +1,2 @@
 DIST debugpy-1.6.3.gh.tar.gz 6697583 BLAKE2B 
38138be3294615e78995575c8f8ad1f990733be90cfaf76197c714e84f179086501417cc2d64627d3a8ecd0fa451e14e3229bd14d02353bc7512e288e8d4f092
 SHA512 
c055351351f6705b7bbab93ec07abba09027f1f2a52d90a242f51b4eb6fec19821fbb251b8c8e80587d1333faa4c6d7cab5dead938e9739c5c45013af8ee46a7
+DIST debugpy-1.6.6.gh.tar.gz 6942488 BLAKE2B 
18c6eee2322239e5cbbacf9431fa7480abcf14a68f290d2228edc8b2ead042e7b09d19ee5bcc60be32e8a6b0b34b925eaa8246991298744f3ca74d4ed2ea3f3e
 SHA512 
1a209bfd702d5f0649ce50b0910023e295953dd39cefdefb0b5af1d6023e629a727610789cd244e656bdf4276cee957fa463506ddaca603ab3ee85cc250dc212

diff --git a/dev-python/debugpy/debugpy-1.6.6.ebuild 
b/dev-python/debugpy/debugpy-1.6.6.ebuild
new file mode 100644
index ..8579d79609a8
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.6.6.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+# This is completely broken
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.6.6-unbundle-pydevd.patch"
+)
+
+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
+}

diff --git a/dev-python/debugpy/files/debugpy-1.6.6-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.6.6-unbundle-pydevd.patch
new file mode 100644
index ..d285775c9246
--- /dev/null
+++ b/dev-python/debugpy/files/debugpy-1.6.6-unbundle-pydevd.patch
@@ -0,0 +1,77 @@
+diff --git a/pyproject.toml b/pyproject.toml
+index 9a79e55..8725d19 100644
+--- a/pyproject.toml
 b/pyproject.toml
+@@ -8,7 +8,6 @@ exclude = '''
+ ( __pycache__
+ | ^/.tox
+ | ^/versioneer.py
+-| ^/src/debugpy/_vendored
+ | ^/src/debugpy/_version.py
+ )
+ '''
+diff --git a/setup.py b/setup.py
+index 3abc811..c11924c 100644
+--- a/setup.py
 b/setup.py
+@@ -18,12 +18,10 @@ del sys.path[0]
+ 
+ sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
+ import debugpy
+-import debugpy._vendored
+ 
+ del sys.path[0]
+ 
+ 
+-PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
+ DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
+ 
+ 
+@@ -146,8 +144,6 @@ if __name__ == "__main__":
+ extras["platforms"] = platforms
+ 
+ cmds = versioneer.get_cmdclass()
+-override_build(cmds)
+-override_build_py(cmds)
+ 
+ setuptools.setup(
+ name="debugpy",
+@@ -183,14 +179,9 @@ if __name__ == "__main__":
+ "debugpy.common",
+ "debugpy.launcher",
+ "debugpy.server",
+-"debugpy._vendored",
+ ],
+ package_data={
+ "debugpy": ["ThirdPartyNotices.txt"],
+-"debugpy._vendored": [
+-# pydevd extensions must be built before this list can be 
computed properly,
+-# so it is populated in the overridden 
build_py.finalize_options().
+-],  
+ },
+ ext_modules=ExtModules(),
+ has_ext_modules=lambda: True,
+diff --git a/src/debugpy/server/__init__.py b/src/debugpy/server/__init__.py
+index 42d5367..e333dcf 100644
+--- a/src/debugpy/server/__init__.py
 b/src/debugpy/server/__init__.py
+@@ -1,7 

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2023-02-02 Thread Andrew Ammerlaan
commit: 041945e3b29d8283898cf13f8a1163d0b736f3fa
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Feb  2 16:36:47 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Feb  2 16:37:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041945e3

dev-python/debugpy: add github upstream metadata

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/debugpy/metadata.xml b/dev-python/debugpy/metadata.xml
index a55c596e2ffb..a6c53f2a9008 100644
--- a/dev-python/debugpy/metadata.xml
+++ b/dev-python/debugpy/metadata.xml
@@ -7,6 +7,7 @@


debugpy
+   microsoft/debugpy

ptvsh...@microsoft.com
Microsoft Corporation



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-22 Thread Michał Górny
commit: ff80cad32a9722ed56fca5e11c63bce93b41e02f
Author: matoro  users  noreply  github  com>
AuthorDate: Wed Sep 21 21:56:41 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Sep 22 07:45:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff80cad3

dev-python/debugpy: Keyword 1.6.3 mips, #831222

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index 4c731f772480..76923ba042f7 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-20 Thread Michał Górny
commit: 72f306dce7c53b113b81d9aede84a3ff580e03ef
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 20 08:06:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 20 08:06:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f306dc

dev-python/debugpy: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest |  1 -
 dev-python/debugpy/debugpy-1.6.2.ebuild | 43 -
 2 files changed, 44 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index a2f2d0d904cc..b0fc004581f0 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,2 +1 @@
-DIST debugpy-1.6.2.gh.tar.gz 6684477 BLAKE2B 
ab1bdf394d3447ba347db149e5c4c36820df6df24c5d0984fe862419a490cea21b240322d76644bc9ebadbdf9a6d6c8709ae28452828d42b45d65edd2d2e58cb
 SHA512 
64ecd9f8290588358abcff538f2c68025f14efc38ac5b406f32cd40a580aab90e0b2f145de90ca81943872c70969d6294ac51b3151bc4e03f18370ddfbb9ac6c
 DIST debugpy-1.6.3.gh.tar.gz 6697583 BLAKE2B 
38138be3294615e78995575c8f8ad1f990733be90cfaf76197c714e84f179086501417cc2d64627d3a8ecd0fa451e14e3229bd14d02353bc7512e288e8d4f092
 SHA512 
c055351351f6705b7bbab93ec07abba09027f1f2a52d90a242f51b4eb6fec19821fbb251b8c8e80587d1333faa4c6d7cab5dead938e9739c5c45013af8ee46a7

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
deleted file mode 100644
index 4c731f772480..
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-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="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-# This is completely broken
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.6.1-unbundle-pydevd.patch"
-)
-
-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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-20 Thread Jakov Smolić
commit: 4e5f0dcdcad506f082ba9839b07101a05aa1af1f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Sep 20 07:43:02 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Sep 20 07:43:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5f0dcd

dev-python/debugpy: Stabilize 1.6.3 hppa, #871894

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index aced97c1a38a..4c731f772480 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Jakov Smolić
commit: 712099a735d88d93ff12d4b48a22ea3c9bc98f64
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 19 20:12:52 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 19 20:12:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712099a7

dev-python/debugpy: Stabilize 1.6.3 x86, #871894

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index e9a26964b957..aced97c1a38a 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Jakov Smolić
commit: 51cba8c80fce816bc364bbf8322d15393961e89b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 19 20:07:59 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 19 20:10:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51cba8c8

dev-python/debugpy: Stabilize 1.6.3 amd64, #871894

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index bdc743bb998c..e9a26964b957 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Arthur Zamarin
commit: 751e20383f881f97f2305aacf08f3f7356724aac
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 19:26:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 19:26:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=751e2038

dev-python/debugpy: Stabilize 1.6.3 arm64, #871894

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index e63f20885ae5..bdc743bb998c 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Arthur Zamarin
commit: 7f8a3ca9f0658aad7fef263676d87e9dda36979a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 19:26:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 19:26:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f8a3ca9

dev-python/debugpy: Stabilize 1.6.3 sparc, #871894

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index 63587932e900..e63f20885ae5 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Arthur Zamarin
commit: fafbc2df758ad4405183dc49d2aab8f1bb43371f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 19:25:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 19:25:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fafbc2df

dev-python/debugpy: Stabilize 1.6.3 ppc64, #871894

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index 16cebb939a42..63587932e900 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Arthur Zamarin
commit: 0690ed29055c9e392f40be1a3c8a2a8ec4612d77
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 19:24:47 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 19:24:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0690ed29

dev-python/debugpy: Stabilize 1.6.3 ppc, #871894

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index 08a507cc77bb..16cebb939a42 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-09-19 Thread Arthur Zamarin
commit: 483178254ab76a1305c8b5cfdd6998e9be38a4fe
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 19 19:23:48 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 19 19:23:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48317825

dev-python/debugpy: Stabilize 1.6.3 arm, #871894

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
index 87982f97e4bb..08a507cc77bb 100644
--- a/dev-python/debugpy/debugpy-1.6.3.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-16 Thread Arthur Zamarin
commit: 260d6e1e6ecd594fbc3ab66158405f20d5bfd01d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug 16 18:48:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug 16 18:50:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=260d6e1e

dev-python/debugpy: add 1.6.3

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/Manifest |  1 +
 dev-python/debugpy/debugpy-1.6.3.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index b76ab1bf672d..a2f2d0d904cc 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1 +1,2 @@
 DIST debugpy-1.6.2.gh.tar.gz 6684477 BLAKE2B 
ab1bdf394d3447ba347db149e5c4c36820df6df24c5d0984fe862419a490cea21b240322d76644bc9ebadbdf9a6d6c8709ae28452828d42b45d65edd2d2e58cb
 SHA512 
64ecd9f8290588358abcff538f2c68025f14efc38ac5b406f32cd40a580aab90e0b2f145de90ca81943872c70969d6294ac51b3151bc4e03f18370ddfbb9ac6c
+DIST debugpy-1.6.3.gh.tar.gz 6697583 BLAKE2B 
38138be3294615e78995575c8f8ad1f990733be90cfaf76197c714e84f179086501417cc2d64627d3a8ecd0fa451e14e3229bd14d02353bc7512e288e8d4f092
 SHA512 
c055351351f6705b7bbab93ec07abba09027f1f2a52d90a242f51b4eb6fec19821fbb251b8c8e80587d1333faa4c6d7cab5dead938e9739c5c45013af8ee46a7

diff --git a/dev-python/debugpy/debugpy-1.6.3.ebuild 
b/dev-python/debugpy/debugpy-1.6.3.ebuild
new file mode 100644
index ..87982f97e4bb
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.6.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# This is completely broken
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.6.1-unbundle-pydevd.patch"
+)
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2022-08-12 Thread Michał Górny
commit: f19d804b07dbcf7b625b7ab08f7e439f4cc7557f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Aug 12 14:06:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Aug 12 14:06:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f19d804b

dev-python/debugpy: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest|   1 -
 dev-python/debugpy/debugpy-1.6.0.ebuild|  43 -
 .../files/debugpy-1.6.0-unbundle-pydevd.patch  | 102 -
 3 files changed, 146 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 6cbfc4561c41..b76ab1bf672d 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,2 +1 @@
-DIST debugpy-1.6.0.gh.tar.gz 6366079 BLAKE2B 
134d2adcae6ec926dcdb7161f0874b830a1d0e3c55abb991f4861fa5a58045437ee4f4cb4c9572b902e3e33634bc3f9970ae055985b983d89d0ef1d99561bda8
 SHA512 
fe245d4ff751a6c2ef0e75a5249f99661b78075ac62c931c20e3ccbc9389d39a08dc2fda44a33eb23a0a76e5ee339edae439b0004d130cdfe421048f3cc83962
 DIST debugpy-1.6.2.gh.tar.gz 6684477 BLAKE2B 
ab1bdf394d3447ba347db149e5c4c36820df6df24c5d0984fe862419a490cea21b240322d76644bc9ebadbdf9a6d6c8709ae28452828d42b45d65edd2d2e58cb
 SHA512 
64ecd9f8290588358abcff538f2c68025f14efc38ac5b406f32cd40a580aab90e0b2f145de90ca81943872c70969d6294ac51b3151bc4e03f18370ddfbb9ac6c

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
deleted file mode 100644
index deb729af9f44..
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-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="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-# This is completely broken
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.6.0-unbundle-pydevd.patch"
-)
-
-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 || die
-
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/debugpy/files/debugpy-1.6.0-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.6.0-unbundle-pydevd.patch
deleted file mode 100644
index 41a0b8e39ba6..
--- a/dev-python/debugpy/files/debugpy-1.6.0-unbundle-pydevd.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-diff --git a/pyproject.toml b/pyproject.toml
-index 15ea7e1..d3a2764 100644
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -8,7 +8,6 @@ exclude = '''
- ( __pycache__
- | ^/.tox
- | ^/versioneer.py
--| ^/src/debugpy/_vendored
- | ^/src/debugpy/_version.py
- )
- '''
-diff --git a/setup.py b/setup.py
-index 2c0a2d6..7c22c0c 100644
 a/setup.py
-+++ b/setup.py
-@@ -18,12 +18,10 @@ del sys.path[0]
- 
- sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
- import debugpy
--import debugpy._vendored
- 
- del sys.path[0]
- 
- 
--PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
- DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
- 
- 
-@@ -33,27 +31,6 @@ def get_buildplatform():
- return None
- 
- 
--def cython_build():
--print("Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)")
--subprocess.call(
--[
--sys.executable,
--os.path.join(PYDEVD_ROOT, "setup_pydevd_cython.py"),
--"build_ext",
--"-i",
--]
--)
--
--
--def iter_vendored_files():
--# Add pydevd files as data files for this package. They are not
--# treated as a package of their own, because we don't actually
--# want to provide pydevd - just use our own copy internally.
--for project in debugpy._vendored.list_all():
--for filename in debugpy._vendored.iter_packaging_files(project):
--yield filename
--
--
- # bdist_wheel determines whether the package is pure or not based on 
ext_modules.
- # However, all pydevd native modules are prebuilt and packaged as data, so 
they
- # should not be in the list.
-@@ -133,8 +110,6 @@ with open("DESCRIPTION.md", "r") as fh:
- 
- 
- if __name__ == "__main__":
--if not os.getenv("SKIP_CYTHON_BUILD"):
--

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-12 Thread Agostino Sarubbo
commit: 20b4937f2232209d132a3dc77e3edcda49bf29a7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Aug 12 10:49:21 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Aug 12 10:49:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b4937f

dev-python/debugpy: x86 stable wrt bug #864495

Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index f1590800df08..4c731f772480 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-10 Thread Arthur Zamarin
commit: 2772df2d13f280507d26e9cdfcb79bbead8891a8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 10 07:52:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 10 08:04:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2772df2d

dev-python/debugpy: Stabilize 1.6.2 ppc64, #864495

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index 307130ce5da2..8dd3dbc39868 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-10 Thread Arthur Zamarin
commit: 72a6042a4fc2ca0399fa451ec1a61a9c2eca20ba
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 10 07:52:53 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 10 08:04:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72a6042a

dev-python/debugpy: Stabilize 1.6.2 ppc, #864495

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index 8dd3dbc39868..f1590800df08 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-09 Thread Agostino Sarubbo
commit: 545d6beee0d8691c5dcc370f196f07a635da0caf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  9 07:41:55 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  9 07:41:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=545d6bee

dev-python/debugpy: amd64 stable wrt bug #864495

Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index bf43a77521c7..307130ce5da2 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-08 Thread Arthur Zamarin
commit: 62c0b76b0c1290bbd0d40412238f366cd58fdc41
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug  9 04:00:35 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug  9 04:00:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c0b76b

dev-python/debugpy: Stabilize 1.6.2 hppa, #864495

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index 26d10a0917e8..bf43a77521c7 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-08 Thread Arthur Zamarin
commit: 6f62fdbea2aa5904412be254505b00f37b223d61
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug  9 04:00:34 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug  9 04:00:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f62fdbe

dev-python/debugpy: Stabilize 1.6.2 sparc, #864495

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index cbb4ada9728c..26d10a0917e8 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-08 Thread Arthur Zamarin
commit: 5a1c0919db41d39b444ad34127afdd3e1f45d7d3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug  8 19:50:04 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug  8 19:50:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a1c0919

dev-python/debugpy: Stabilize 1.6.2 arm, #864495

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index ec9701ed5e93..cbb4ada9728c 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-08-08 Thread Arthur Zamarin
commit: a629af7942b1db130bf1ce445c8dfaa42bc3f1c4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug  8 19:41:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug  8 19:41:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a629af79

dev-python/debugpy: Stabilize 1.6.2 arm64, #864495

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
index 87982f97e4bb..ec9701ed5e93 100644
--- a/dev-python/debugpy/debugpy-1.6.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2022-07-16 Thread Michał Górny
commit: d92463b47554acf0dfdda8e75cccd0c9ce450c89
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul 16 10:11:25 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul 16 10:11:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d92463b4

dev-python/debugpy: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest|  2 -
 dev-python/debugpy/debugpy-1.5.1.ebuild| 42 
 dev-python/debugpy/debugpy-1.6.1.ebuild| 43 
 .../files/debugpy-1.4.2-unbundle-pydevd.patch  | 78 --
 4 files changed, 165 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 87a753125cef..6cbfc4561c41 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,4 +1,2 @@
-DIST debugpy-1.5.1.gh.tar.gz 6675322 BLAKE2B 
a8e3a07d5dbd1b5ca39301e703b279514653606f98743a396693738c9a89403c73a6b6942e5dc368dd89eb8b74277e1808f9247573f330e3a94596c26af7e5be
 SHA512 
93ee526ca7cb3d44b85106a33d8f930f4f2b307eb26ede3ab6b5653de986a101b10f545f5de12cd8ee6ff9e9a12c5e4b57c4c40b1b3003c2f555676bd34482ce
 DIST debugpy-1.6.0.gh.tar.gz 6366079 BLAKE2B 
134d2adcae6ec926dcdb7161f0874b830a1d0e3c55abb991f4861fa5a58045437ee4f4cb4c9572b902e3e33634bc3f9970ae055985b983d89d0ef1d99561bda8
 SHA512 
fe245d4ff751a6c2ef0e75a5249f99661b78075ac62c931c20e3ccbc9389d39a08dc2fda44a33eb23a0a76e5ee339edae439b0004d130cdfe421048f3cc83962
-DIST debugpy-1.6.1.gh.tar.gz 6684941 BLAKE2B 
113ad9670cb9c80a28670be22265e110e5857d7093438db6ea531719de012a66c53ed9914c859c17f3bb5e03b88b11317173d261c9327e5434b5105396fac057
 SHA512 
28619e8e07265a8d983eccde28cc693b96ca5b94674ab0d512775a9c261f54baaa72e7bb8632b49b3715c2eb3626997cb967b5edb1b53672c6777493f0a46e50
 DIST debugpy-1.6.2.gh.tar.gz 6684477 BLAKE2B 
ab1bdf394d3447ba347db149e5c4c36820df6df24c5d0984fe862419a490cea21b240322d76644bc9ebadbdf9a6d6c8709ae28452828d42b45d65edd2d2e58cb
 SHA512 
64ecd9f8290588358abcff538f2c68025f14efc38ac5b406f32cd40a580aab90e0b2f145de90ca81943872c70969d6294ac51b3151bc4e03f18370ddfbb9ac6c

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
deleted file mode 100644
index ab764a291aae..
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-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="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-# There is not enough time in the universe for this test suite
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.4.2-unbundle-pydevd.patch"
-)
-
-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 || die
-
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/debugpy/debugpy-1.6.1.ebuild 
b/dev-python/debugpy/debugpy-1.6.1.ebuild
deleted file mode 100644
index 87982f97e4bb..
--- a/dev-python/debugpy/debugpy-1.6.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
-
-# This is completely broken
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.6.1-unbundle-pydevd.patch"
-)
-
-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 

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-15 Thread Agostino Sarubbo
commit: 6c65eeba885063ea37ecab23641f2672f0cfcfca
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jul 15 07:25:35 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jul 15 07:25:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c65eeba

dev-python/debugpy: x86 stable wrt bug #858065

Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index f03a0461077f..deb729af9f44 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-15 Thread Agostino Sarubbo
commit: e6f322694b22b16c478115722ca6826f4c35e103
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jul 15 07:20:55 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jul 15 07:21:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f32269

dev-python/debugpy: amd64 stable wrt bug #858065

Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index cf0c0bfcf569..f03a0461077f 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-15 Thread Arthur Zamarin
commit: 8aa31801e0f2c66cbb229014efa4be8859056005
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jul 15 06:00:16 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jul 15 06:00:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aa31801

dev-python/debugpy: Stabilize 1.6.0 hppa, #858065

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index 985184de11a3..cf0c0bfcf569 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-14 Thread Arthur Zamarin
commit: da4de30b33517af719278c26f6b0fd29a68a2430
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jul 14 20:44:20 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jul 14 20:44:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da4de30b

dev-python/debugpy: Stabilize 1.6.0 arm64, #858065

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index 94885ab7a0da..985184de11a3 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-14 Thread Arthur Zamarin
commit: 22e231bf929be3491446410a47c9bf1930ef2206
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jul 14 20:23:10 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jul 14 20:23:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e231bf

dev-python/debugpy: Stabilize 1.6.0 ppc64, #858065

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index c272031bf79f..94885ab7a0da 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-14 Thread Arthur Zamarin
commit: 4c959e0739ce8ae54a8e1ea7aa5013b448d861aa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jul 14 20:08:22 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jul 14 20:08:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c959e07

dev-python/debugpy: Stabilize 1.6.0 arm, #858065

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index 6dd0498d92f9..c272031bf79f 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-14 Thread Arthur Zamarin
commit: 36a08f8065a85ca4f67dcdbde69d34cbeff4931c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jul 14 19:41:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jul 14 19:41:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a08f80

dev-python/debugpy: Stabilize 1.6.0 ppc, #858065

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index f1d1f7df9c4f..6dd0498d92f9 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-14 Thread Arthur Zamarin
commit: a2e5bc92ca56b873427398e98f8e0059f5737aa9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jul 14 19:13:53 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jul 14 19:13:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2e5bc92

dev-python/debugpy: Stabilize 1.6.0 sparc, #858065

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
index 783b447c47b0..f1d1f7df9c4f 100644
--- a/dev-python/debugpy/debugpy-1.6.0.ebuild
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86"
 
 # This is completely broken
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-07-08 Thread Arthur Zamarin
commit: af64345e43ecb41ca124f9a6dbad403f6af61705
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jul  8 07:03:16 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jul  8 07:40:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af64345e

dev-python/debugpy: add 1.6.2

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/Manifest |  1 +
 dev-python/debugpy/debugpy-1.6.2.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 77220b73cb2a..87a753125cef 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,3 +1,4 @@
 DIST debugpy-1.5.1.gh.tar.gz 6675322 BLAKE2B 
a8e3a07d5dbd1b5ca39301e703b279514653606f98743a396693738c9a89403c73a6b6942e5dc368dd89eb8b74277e1808f9247573f330e3a94596c26af7e5be
 SHA512 
93ee526ca7cb3d44b85106a33d8f930f4f2b307eb26ede3ab6b5653de986a101b10f545f5de12cd8ee6ff9e9a12c5e4b57c4c40b1b3003c2f555676bd34482ce
 DIST debugpy-1.6.0.gh.tar.gz 6366079 BLAKE2B 
134d2adcae6ec926dcdb7161f0874b830a1d0e3c55abb991f4861fa5a58045437ee4f4cb4c9572b902e3e33634bc3f9970ae055985b983d89d0ef1d99561bda8
 SHA512 
fe245d4ff751a6c2ef0e75a5249f99661b78075ac62c931c20e3ccbc9389d39a08dc2fda44a33eb23a0a76e5ee339edae439b0004d130cdfe421048f3cc83962
 DIST debugpy-1.6.1.gh.tar.gz 6684941 BLAKE2B 
113ad9670cb9c80a28670be22265e110e5857d7093438db6ea531719de012a66c53ed9914c859c17f3bb5e03b88b11317173d261c9327e5434b5105396fac057
 SHA512 
28619e8e07265a8d983eccde28cc693b96ca5b94674ab0d512775a9c261f54baaa72e7bb8632b49b3715c2eb3626997cb967b5edb1b53672c6777493f0a46e50
+DIST debugpy-1.6.2.gh.tar.gz 6684477 BLAKE2B 
ab1bdf394d3447ba347db149e5c4c36820df6df24c5d0984fe862419a490cea21b240322d76644bc9ebadbdf9a6d6c8709ae28452828d42b45d65edd2d2e58cb
 SHA512 
64ecd9f8290588358abcff538f2c68025f14efc38ac5b406f32cd40a580aab90e0b2f145de90ca81943872c70969d6294ac51b3151bc4e03f18370ddfbb9ac6c

diff --git a/dev-python/debugpy/debugpy-1.6.2.ebuild 
b/dev-python/debugpy/debugpy-1.6.2.ebuild
new file mode 100644
index ..87982f97e4bb
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.6.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# This is completely broken
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.6.1-unbundle-pydevd.patch"
+)
+
+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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2022-07-07 Thread Arthur Zamarin
commit: f81adcaf6e1416bf78432fdab271dff8f2e5345e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jul  7 19:09:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jul  7 19:11:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f81adcaf

dev-python/debugpy: add 1.6.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/Manifest|  1 +
 dev-python/debugpy/debugpy-1.6.1.ebuild| 43 ++
 .../files/debugpy-1.6.1-unbundle-pydevd.patch  | 94 ++
 3 files changed, 138 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index ee60328d2071..77220b73cb2a 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,2 +1,3 @@
 DIST debugpy-1.5.1.gh.tar.gz 6675322 BLAKE2B 
a8e3a07d5dbd1b5ca39301e703b279514653606f98743a396693738c9a89403c73a6b6942e5dc368dd89eb8b74277e1808f9247573f330e3a94596c26af7e5be
 SHA512 
93ee526ca7cb3d44b85106a33d8f930f4f2b307eb26ede3ab6b5653de986a101b10f545f5de12cd8ee6ff9e9a12c5e4b57c4c40b1b3003c2f555676bd34482ce
 DIST debugpy-1.6.0.gh.tar.gz 6366079 BLAKE2B 
134d2adcae6ec926dcdb7161f0874b830a1d0e3c55abb991f4861fa5a58045437ee4f4cb4c9572b902e3e33634bc3f9970ae055985b983d89d0ef1d99561bda8
 SHA512 
fe245d4ff751a6c2ef0e75a5249f99661b78075ac62c931c20e3ccbc9389d39a08dc2fda44a33eb23a0a76e5ee339edae439b0004d130cdfe421048f3cc83962
+DIST debugpy-1.6.1.gh.tar.gz 6684941 BLAKE2B 
113ad9670cb9c80a28670be22265e110e5857d7093438db6ea531719de012a66c53ed9914c859c17f3bb5e03b88b11317173d261c9327e5434b5105396fac057
 SHA512 
28619e8e07265a8d983eccde28cc693b96ca5b94674ab0d512775a9c261f54baaa72e7bb8632b49b3715c2eb3626997cb967b5edb1b53672c6777493f0a46e50

diff --git a/dev-python/debugpy/debugpy-1.6.1.ebuild 
b/dev-python/debugpy/debugpy-1.6.1.ebuild
new file mode 100644
index ..87982f97e4bb
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.6.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# This is completely broken
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.6.1-unbundle-pydevd.patch"
+)
+
+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
+}

diff --git a/dev-python/debugpy/files/debugpy-1.6.1-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.6.1-unbundle-pydevd.patch
new file mode 100644
index ..c8ebe384349d
--- /dev/null
+++ b/dev-python/debugpy/files/debugpy-1.6.1-unbundle-pydevd.patch
@@ -0,0 +1,94 @@
+--- a/pyproject.toml
 b/pyproject.toml
+@@ -8,7 +8,6 @@ exclude = '''
+ ( __pycache__
+ | ^/.tox
+ | ^/versioneer.py
+-| ^/src/debugpy/_vendored
+ | ^/src/debugpy/_version.py
+ )
+ '''
+--- a/setup.py
 b/setup.py
+@@ -18,12 +18,10 @@ del sys.path[0]
+ 
+ sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
+ import debugpy
+-import debugpy._vendored
+ 
+ del sys.path[0]
+ 
+ 
+-PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
+ DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
+ 
+ 
+@@ -33,27 +31,6 @@ def get_buildplatform():
+ return None
+ 
+ 
+-def cython_build():
+-print("Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)")
+-subprocess.call(
+-[
+-sys.executable,
+-os.path.join(PYDEVD_ROOT, "setup_pydevd_cython.py"),
+-"build_ext",
+-"-i",
+-]
+-)
+-
+-
+-def iter_vendored_files():
+-# Add pydevd files as data files for this package. They are not
+-# treated as a package of their own, because we don't actually
+-# want to provide pydevd - just use our own copy internally.
+-for project in debugpy._vendored.list_all():
+-for filename in debugpy._vendored.iter_packaging_files(project):
+-yield filename
+-
+-
+ # bdist_wheel determines whether the package is pure or not based on 
ext_modules.
+ # However, all pydevd native modules are prebuilt and packaged as 

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/files/, dev-python/debugpy/

2022-06-10 Thread Andrew Ammerlaan
commit: 6a8fe995ba01fb0faa5368fe96712cfb71dc3f92
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Fri Jun 10 12:11:16 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Fri Jun 10 14:29:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a8fe995

dev-python/debugpy: add 1.6.0

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/Manifest|   1 +
 dev-python/debugpy/debugpy-1.6.0.ebuild|  43 +
 .../files/debugpy-1.4.2-unbundle-pydevd.patch  | 156 +-
 ...d.patch => debugpy-1.6.0-unbundle-pydevd.patch} | 180 -
 4 files changed, 224 insertions(+), 156 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 319bc0505a84..ee60328d2071 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1 +1,2 @@
 DIST debugpy-1.5.1.gh.tar.gz 6675322 BLAKE2B 
a8e3a07d5dbd1b5ca39301e703b279514653606f98743a396693738c9a89403c73a6b6942e5dc368dd89eb8b74277e1808f9247573f330e3a94596c26af7e5be
 SHA512 
93ee526ca7cb3d44b85106a33d8f930f4f2b307eb26ede3ab6b5653de986a101b10f545f5de12cd8ee6ff9e9a12c5e4b57c4c40b1b3003c2f555676bd34482ce
+DIST debugpy-1.6.0.gh.tar.gz 6366079 BLAKE2B 
134d2adcae6ec926dcdb7161f0874b830a1d0e3c55abb991f4861fa5a58045437ee4f4cb4c9572b902e3e33634bc3f9970ae055985b983d89d0ef1d99561bda8
 SHA512 
fe245d4ff751a6c2ef0e75a5249f99661b78075ac62c931c20e3ccbc9389d39a08dc2fda44a33eb23a0a76e5ee339edae439b0004d130cdfe421048f3cc83962

diff --git a/dev-python/debugpy/debugpy-1.6.0.ebuild 
b/dev-python/debugpy/debugpy-1.6.0.ebuild
new file mode 100644
index ..783b447c47b0
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.6.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# This is completely broken
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.6.0-unbundle-pydevd.patch"
+)
+
+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 || die
+
+   distutils-r1_python_prepare_all
+}

diff --git a/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch
index 7047877ef279..3d60bcd18cbc 100644
--- a/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch
+++ b/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch
@@ -1,78 +1,78 @@
-diff --git a/setup.py b/setup.py
-index ee5bbba..f69dc95 100644
 a/setup.py
-+++ b/setup.py
-@@ -21,12 +21,10 @@ del sys.path[0]
- 
- sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
- import debugpy
--import debugpy._vendored
- 
- del sys.path[0]
- 
- 
--PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
- DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
- 
- 
-@@ -36,27 +34,6 @@ def get_buildplatform():
- return None
- 
- 
--def cython_build():
--print("Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)")
--subprocess.call(
--[
--sys.executable,
--os.path.join(PYDEVD_ROOT, "setup_cython.py"),
--"build_ext",
--"-i",
--]
--)
--
--
--def iter_vendored_files():
--# Add pydevd files as data files for this package. They are not
--# treated as a package of their own, because we don't actually
--# want to provide pydevd - just use our own copy internally.
--for project in debugpy._vendored.list_all():
--for filename in debugpy._vendored.iter_packaging_files(project):
--yield filename
--
--
- # bdist_wheel determines whether the package is pure or not based on 
ext_modules.
- # However, all pydevd native modules are prebuilt and packaged as data, so 
they
- # should not be in the list.
-@@ -121,8 +98,6 @@ with open("DESCRIPTION.md", "r") as fh:
- 
- 
- if __name__ == "__main__":
--if not os.getenv("SKIP_CYTHON_BUILD"):
--cython_build()
- 
- extras = {}
- platforms = get_buildplatform()
-@@ -165,11 +140,9 @@ if __name__ == "__main__":
- 

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-05-25 Thread Andrew Ammerlaan
commit: 294a6b46ee78edd57b61dabb43821e0b9f19d56c
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Wed May 25 08:59:51 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Wed May 25 09:07:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=294a6b46

dev-python/debugpy: enable py3.11

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index 8c11cbf4f6e0..ab764a291aae 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 inherit distutils-r1
 
 DESCRIPTION="An implementation of the Debug Adapter Protocol for Python"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-02-14 Thread Matt Turner
commit: 907cd1222c2079f7f20e2af3de2a49dbc7467d69
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Feb 14 08:27:12 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Feb 14 08:35:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=907cd122

dev-python/debugpy: Keyword 1.5.1 alpha, #831222

Signed-off-by: Matt Turner  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index a4218d515238..8c11cbf4f6e0 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2022-01-30 Thread James Le Cuirot
commit: 00c57bfdcdae6da98fba51655d4a700b20b3c49c
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Jan 30 12:48:11 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Jan 30 13:31:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c57bfd

dev-python/debugpy: Keyword 1.5.1 for ~m68k

Signed-off-by: James Le Cuirot  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index cdb218a91fd7..a4218d515238 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-19 Thread Sam James
commit: 2da9d68eb7450b7bbf1b1dce398d2388760231b6
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 20 03:54:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 20 03:54:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2da9d68e

dev-python/debugpy: Stabilize 1.5.1 hppa, #821763

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index afcbb13ed0a2..cdb218a91fd7 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-19 Thread Arthur Zamarin
commit: 609b729433c615f349ccbcb2d0631d3f6af39042
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Nov 19 19:23:44 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Nov 19 19:23:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609b7294

dev-python/debugpy: Stabilize 1.5.1 arm64, #821763

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index ef7014d110e1..afcbb13ed0a2 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-19 Thread Sam James
commit: 648eb1c8820bc74ef0908cac21ddf84bf1a9e279
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 19 11:58:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 19 11:58:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648eb1c8

dev-python/debugpy: Stabilize 1.5.1 arm arm, #821763

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index 47ba5a752dba..ef7014d110e1 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-19 Thread Sam James
commit: 95d2f2c29f80c8c2759fd0709bd6b8f2bc83f365
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 19 09:06:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 19 09:06:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d2f2c2

dev-python/debugpy: Keyword 1.5.1 s390, #808378

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index 4833979127ac..47ba5a752dba 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-19 Thread Sam James
commit: efff081766ef81e4fd3d32c0d97c5a53ffc1859a
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 19 08:34:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 19 08:34:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efff0817

dev-python/debugpy: Stabilize 1.5.1 ppc, #821763

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index bad0e00b4fcf..4833979127ac 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-18 Thread Sam James
commit: 3777058af535a0690ab0166e8e9753d2c9736f74
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov 19 07:30:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov 19 07:30:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3777058a

dev-python/debugpy: Stabilize 1.5.1 ppc64, #821763

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index 5bcaae11f653..bad0e00b4fcf 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-16 Thread Sam James
commit: e685dd40a9dbe5b920924e1935bd287e2b3df95e
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 17 07:55:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 17 07:55:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e685dd40

dev-python/debugpy: Keyword 1.5.1 hppa, #808378

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index bb0f04598f2f..5bcaae11f653 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-14 Thread Sam James
commit: f31df498c566d6f27f3054b0be85a76e4d8fe273
Author: Sam James  gentoo  org>
AuthorDate: Mon Nov 15 06:02:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Nov 15 06:02:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f31df498

dev-python/debugpy: Keyword 1.5.1 ia64, #808378

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index 7793c7bc80ed..bb0f04598f2f 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-14 Thread Michał Górny
commit: f350d9ec24ac1ec796ffa6a1142a063650d8b7f1
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 14 08:38:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 14 08:46:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f350d9ec

dev-python/debugpy: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest |  1 -
 dev-python/debugpy/debugpy-1.5.0.ebuild | 42 -
 2 files changed, 43 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 9a401da63608..319bc0505a84 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,2 +1 @@
-DIST debugpy-1.5.0.gh.tar.gz 6676475 BLAKE2B 
a8aa0afe7b76beb6ba539e23558d6a0c8babfd55de9a4a0bc9aabbec8a2318e600df62b063a8d674d9402e35fd595b030efca570b4a67ec82dadb98875261e13
 SHA512 
b5ca216aede744a9b1e067056601470e78b8af1fabb181dc0bf6e87bc166cc8d6cad24f5695986686cac69f8ce41246bb0f074078ef3750f6e65b4d8fe55e869
 DIST debugpy-1.5.1.gh.tar.gz 6675322 BLAKE2B 
a8e3a07d5dbd1b5ca39301e703b279514653606f98743a396693738c9a89403c73a6b6942e5dc368dd89eb8b74277e1808f9247573f330e3a94596c26af7e5be
 SHA512 
93ee526ca7cb3d44b85106a33d8f930f4f2b307eb26ede3ab6b5653de986a101b10f545f5de12cd8ee6ff9e9a12c5e4b57c4c40b1b3003c2f555676bd34482ce

diff --git a/dev-python/debugpy/debugpy-1.5.0.ebuild 
b/dev-python/debugpy/debugpy-1.5.0.ebuild
deleted file mode 100644
index cbb6127cca56..
--- a/dev-python/debugpy/debugpy-1.5.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-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 ~ppc ~ppc64 ~riscv ~sparc ~x86"
-
-# There is not enough time in the universe for this test suite
-RESTRICT="test"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.4.2-unbundle-pydevd.patch"
-)
-
-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 || die
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-11 Thread Jakov Smolić
commit: b28ef28e654fcb3659829adf5892bb3057e1cd47
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Nov 11 08:36:03 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Nov 11 08:36:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28ef28e

dev-python/debugpy: Stabilize 1.5.1 x86, #821763

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index ffda500d0cb..7793c7bc80e 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-05 Thread Jakov Smolić
commit: 1ffd30c36eb77fc7a8b2767a3de76831e481d002
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Nov  5 14:56:39 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Nov  5 14:56:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffd30c3

dev-python/debugpy: Stabilize 1.5.1 amd64, #821763

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index 5cfd8e9ece6..ffda500d0cb 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc ~x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-11-04 Thread Sam James
commit: e1d070aec89a3497c58ea8cea096579ad805a7b9
Author: Sam James  gentoo  org>
AuthorDate: Fri Nov  5 02:19:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Nov  5 02:19:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d070ae

dev-python/debugpy: Stabilize 1.5.1 sparc, #821763

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
index cbb6127cca5..5cfd8e9ece6 100644
--- a/dev-python/debugpy/debugpy-1.5.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc ~x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-10-19 Thread Michał Górny
commit: 8ca1e572288b6490da6b9182201be1ab64d4bd22
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct 19 05:58:33 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 19 07:22:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca1e572

dev-python/debugpy: Bump to 1.5.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest |  1 +
 dev-python/debugpy/debugpy-1.5.1.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index d9567ae5c0a..9a401da6360 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1 +1,2 @@
 DIST debugpy-1.5.0.gh.tar.gz 6676475 BLAKE2B 
a8aa0afe7b76beb6ba539e23558d6a0c8babfd55de9a4a0bc9aabbec8a2318e600df62b063a8d674d9402e35fd595b030efca570b4a67ec82dadb98875261e13
 SHA512 
b5ca216aede744a9b1e067056601470e78b8af1fabb181dc0bf6e87bc166cc8d6cad24f5695986686cac69f8ce41246bb0f074078ef3750f6e65b4d8fe55e869
+DIST debugpy-1.5.1.gh.tar.gz 6675322 BLAKE2B 
a8e3a07d5dbd1b5ca39301e703b279514653606f98743a396693738c9a89403c73a6b6942e5dc368dd89eb8b74277e1808f9247573f330e3a94596c26af7e5be
 SHA512 
93ee526ca7cb3d44b85106a33d8f930f4f2b307eb26ede3ab6b5653de986a101b10f545f5de12cd8ee6ff9e9a12c5e4b57c4c40b1b3003c2f555676bd34482ce

diff --git a/dev-python/debugpy/debugpy-1.5.1.ebuild 
b/dev-python/debugpy/debugpy-1.5.1.ebuild
new file mode 100644
index 000..cbb6127cca5
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.5.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+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 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# There is not enough time in the universe for this test suite
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.4.2-unbundle-pydevd.patch"
+)
+
+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 || die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-10-17 Thread Michał Górny
commit: 782d86bd2dba251e5793f15c0de7166e50afdace
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Oct 17 07:35:40 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Oct 17 07:41:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782d86bd

dev-python/debugpy: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/debugpy/Manifest |  2 --
 dev-python/debugpy/debugpy-1.4.1.ebuild | 39 -
 dev-python/debugpy/debugpy-1.4.2.ebuild | 44 -
 3 files changed, 85 deletions(-)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 8a2f2e5b390..d9567ae5c0a 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,3 +1 @@
-DIST debugpy-1.4.1.tar.gz 6687670 BLAKE2B 
c7761f354700d366d49365b0294ba1f07f357283c7527fc961c702bf99d808835741a899909e37092026c81ff19f6d96ef09c06512c8315ccad158b6e8e47697
 SHA512 
aef7779cb3a1af76b5cd3d6e8c7e0b78ffe08d1ebe25cf617ca3eb00966d5b3920358809c018f5f1f9eb56b913211134acfdba7d4c0d0174e4d6cfdae058d5f5
-DIST debugpy-1.4.2.tar.gz 6673987 BLAKE2B 
c61d09bc036f3a12e343be3d81b2e834bd69d33df80a6b9e4111d11a2eaea221feea3ac093ca06ad1a840dcab7d53d7b321276c4103420f34adac7a4a4ac8141
 SHA512 
7c0908ab9202cebb020ca72c558f3c1abc28b44fb968cce4387750f18e67198ad52dd6743061888610ed733e0f7334f986c2655ec7b0a2631acc4919cd9e6c20
 DIST debugpy-1.5.0.gh.tar.gz 6676475 BLAKE2B 
a8aa0afe7b76beb6ba539e23558d6a0c8babfd55de9a4a0bc9aabbec8a2318e600df62b063a8d674d9402e35fd595b030efca570b4a67ec82dadb98875261e13
 SHA512 
b5ca216aede744a9b1e067056601470e78b8af1fabb181dc0bf6e87bc166cc8d6cad24f5695986686cac69f8ce41246bb0f074078ef3750f6e65b4d8fe55e869

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
deleted file mode 100644
index 9e2e9b284cd..000
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-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/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc"
-
-# There is not enough time in the universe for this test suite
-RESTRICT="test"
-
-# These files are included pre-built in the sources
-# TODO: Investigate what this is and if/how we can compile this properly
-QA_PREBUILT="
-   
/usr/lib/python*/site-packages/${PN}/_vendored/pydevd/pydevd_attach_to_process/attach_linux_*.so
-"
-
-python_prepare_all() {
-   # Drop unnecessary and unrecognized option
-   # __main__.py: error: unrecognized arguments: -n8
-   # Do not timeout
-   sed -i \
-   -e 's/-n8//g' \
-   -e '/timeout/d' \
-   pytest.ini || die
-
-   distutils-r1_python_prepare_all
-}
-
-distutils_enable_tests pytest

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
deleted file mode 100644
index cb5a0779151..000
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-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/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
-
-# There is not enough time in the universe for this test suite
-RESTRICT="test"
-
-BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
-
-RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
-
-PATCHES=(
-   "${FILESDIR}/${P}-unbundle-pydevd.patch"
-)
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # Drop unnecessary and unrecognized option
-   # __main__.py: error: unrecognized arguments: -n8
-   # Do not timeout
-   sed -i \
-   -e 's/-n8//g' \
-   -e '/timeout/d' \
-   pytest.ini || die
-
-   # Unbundle dev-python/pydevd
-   rm -r src/debugpy/_vendored || die
-
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-10-13 Thread Arthur Zamarin
commit: b32a6e82a301f748f066b1d034433a215adeacfc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Oct 13 18:25:55 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Oct 13 19:02:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32a6e82

dev-python/debugpy: add 1.5.0, enable py3.10

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/debugpy/Manifest |  1 +
 dev-python/debugpy/debugpy-1.5.0.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index 0a861ef1295..8a2f2e5b390 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1,2 +1,3 @@
 DIST debugpy-1.4.1.tar.gz 6687670 BLAKE2B 
c7761f354700d366d49365b0294ba1f07f357283c7527fc961c702bf99d808835741a899909e37092026c81ff19f6d96ef09c06512c8315ccad158b6e8e47697
 SHA512 
aef7779cb3a1af76b5cd3d6e8c7e0b78ffe08d1ebe25cf617ca3eb00966d5b3920358809c018f5f1f9eb56b913211134acfdba7d4c0d0174e4d6cfdae058d5f5
 DIST debugpy-1.4.2.tar.gz 6673987 BLAKE2B 
c61d09bc036f3a12e343be3d81b2e834bd69d33df80a6b9e4111d11a2eaea221feea3ac093ca06ad1a840dcab7d53d7b321276c4103420f34adac7a4a4ac8141
 SHA512 
7c0908ab9202cebb020ca72c558f3c1abc28b44fb968cce4387750f18e67198ad52dd6743061888610ed733e0f7334f986c2655ec7b0a2631acc4919cd9e6c20
+DIST debugpy-1.5.0.gh.tar.gz 6676475 BLAKE2B 
a8aa0afe7b76beb6ba539e23558d6a0c8babfd55de9a4a0bc9aabbec8a2318e600df62b063a8d674d9402e35fd595b030efca570b4a67ec82dadb98875261e13
 SHA512 
b5ca216aede744a9b1e067056601470e78b8af1fabb181dc0bf6e87bc166cc8d6cad24f5695986686cac69f8ce41246bb0f074078ef3750f6e65b4d8fe55e869

diff --git a/dev-python/debugpy/debugpy-1.5.0.ebuild 
b/dev-python/debugpy/debugpy-1.5.0.ebuild
new file mode 100644
index 000..cbb6127cca5
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.5.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+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 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# There is not enough time in the universe for this test suite
+RESTRICT="test"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.4.2-unbundle-pydevd.patch"
+)
+
+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 || die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-10-10 Thread Sam James
commit: 7607c3126b608ad966a12b8f37f0fc29b6ea2ea9
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 10 23:44:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 10 23:44:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7607c312

dev-python/debugpy: Keyword 1.4.2 x86, #812452

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index b4f0af0ccd6..cb5a0779151 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-12 Thread Sam James
commit: ee7d8bfb4c74f2addd71c667d45010778db8c6b7
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 12 17:38:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 12 17:38:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7d8bfb

dev-python/debugpy: Keyword 1.4.2 arm, #812452

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index 62503a083ad..b4f0af0ccd6 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-12 Thread Sam James
commit: b3dd2b7963f9e6e3488f3ea800c0f65ab4e2bde9
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 12 17:38:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 12 17:38:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3dd2b79

dev-python/debugpy: Keyword 1.4.2 arm64, #812452

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index af2f4b1de9b..62503a083ad 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-12 Thread Sam James
commit: 22e8fdac5bc002583f31311430b20fad13d7bd2f
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 12 08:21:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 12 08:21:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e8fdac

dev-python/debugpy: Keyword 1.4.2 ppc, #812452

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index bfe4d5a36b2..af2f4b1de9b 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-12 Thread Sam James
commit: 3c1468b24ccb2f6d5fa12293eb5d12b32e07a944
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 12 08:21:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 12 08:21:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c1468b2

dev-python/debugpy: Keyword 1.4.2 ppc64, #812452

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index cc47d146814..bfe4d5a36b2 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~ppc64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-12 Thread Andrew Ammerlaan
commit: 503dfc4ad6cf03c31cfaef30e9b97af551e42cce
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Sun Sep 12 08:15:12 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Sep 12 08:16:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503dfc4a

dev-python/debugpy: disable py3.10

pydevd (bundled by this version of debugpy) does
not work with python3.10 yet (next release will though)

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/debugpy-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
index 096d5d66653..9e2e9b284cd 100644
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-11 Thread Sam James
commit: a60bd52578293d86b6fe8cfddae934f3355b36fc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Sep 11 11:14:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep 11 15:59:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a60bd525

dev-python/debugpy: keyworded 1.4.2 for sparc, bug #812452

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index 4569bdc92ac..cc47d146814 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-11 Thread Yixun Lan
commit: af645f658afec434ff2e318c3925b1a71e681477
Author: Yixun Lan  gentoo  org>
AuthorDate: Sat Sep 11 12:46:49 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sat Sep 11 12:46:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af645f65

dev-python/debugpy: keyword ~riscv

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index 814441d2e40..4569bdc92ac 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-10 Thread Andrew Ammerlaan
commit: c5bef7dc15c8015b989b4d234c22e65c9a9b2874
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Fri Sep 10 13:40:06 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Fri Sep 10 13:40:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5bef7dc

dev-python/debugpy: restore amd64 keyword

other keywords can be added after pydevd has been keyworded

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/debugpy-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
index 1d2e0eec0d0..814441d2e40 100644
--- a/dev-python/debugpy/debugpy-1.4.2.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/, dev-python/debugpy/files/

2021-09-09 Thread Andrew Ammerlaan
commit: b8d3a7b1f7e33488fd4fe6bdcfa77af5b4de2c70
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Sep  9 16:23:05 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Sep  9 16:25:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d3a7b1

dev-python/debugpy: add version 1.4.2

No keywords until I'm sure the unbundling hack doesn't produce any
unexpected side effects

Bug: https://bugs.gentoo.org/812041
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/Manifest|  1 +
 dev-python/debugpy/debugpy-1.4.2.ebuild| 44 
 .../files/debugpy-1.4.2-unbundle-pydevd.patch  | 78 ++
 3 files changed, 123 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
index f429037ba87..0a861ef1295 100644
--- a/dev-python/debugpy/Manifest
+++ b/dev-python/debugpy/Manifest
@@ -1 +1,2 @@
 DIST debugpy-1.4.1.tar.gz 6687670 BLAKE2B 
c7761f354700d366d49365b0294ba1f07f357283c7527fc961c702bf99d808835741a899909e37092026c81ff19f6d96ef09c06512c8315ccad158b6e8e47697
 SHA512 
aef7779cb3a1af76b5cd3d6e8c7e0b78ffe08d1ebe25cf617ca3eb00966d5b3920358809c018f5f1f9eb56b913211134acfdba7d4c0d0174e4d6cfdae058d5f5
+DIST debugpy-1.4.2.tar.gz 6673987 BLAKE2B 
c61d09bc036f3a12e343be3d81b2e834bd69d33df80a6b9e4111d11a2eaea221feea3ac093ca06ad1a840dcab7d53d7b321276c4103420f34adac7a4a4ac8141
 SHA512 
7c0908ab9202cebb020ca72c558f3c1abc28b44fb968cce4387750f18e67198ad52dd6743061888610ed733e0f7334f986c2655ec7b0a2631acc4919cd9e6c20

diff --git a/dev-python/debugpy/debugpy-1.4.2.ebuild 
b/dev-python/debugpy/debugpy-1.4.2.ebuild
new file mode 100644
index 000..1d2e0eec0d0
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.4.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..9} )
+
+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/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+
+# There is not enough time in the universe for this test suite
+RESTRICT="test"
+
+BDEPEND="test? ( dev-python/pytest-timeout[${PYTHON_USEDEP}] )"
+
+RDEPEND="dev-python/pydevd[${PYTHON_USEDEP}]"
+
+PATCHES=(
+   "${FILESDIR}/${P}-unbundle-pydevd.patch"
+)
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Drop unnecessary and unrecognized option
+   # __main__.py: error: unrecognized arguments: -n8
+   # Do not timeout
+   sed -i \
+   -e 's/-n8//g' \
+   -e '/timeout/d' \
+   pytest.ini || die
+
+   # Unbundle dev-python/pydevd
+   rm -r src/debugpy/_vendored || die
+
+   distutils-r1_python_prepare_all
+}

diff --git a/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch 
b/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch
new file mode 100644
index 000..7047877ef27
--- /dev/null
+++ b/dev-python/debugpy/files/debugpy-1.4.2-unbundle-pydevd.patch
@@ -0,0 +1,78 @@
+diff --git a/setup.py b/setup.py
+index ee5bbba..f69dc95 100644
+--- a/setup.py
 b/setup.py
+@@ -21,12 +21,10 @@ del sys.path[0]
+ 
+ sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 
"src"))
+ import debugpy
+-import debugpy._vendored
+ 
+ del sys.path[0]
+ 
+ 
+-PYDEVD_ROOT = debugpy._vendored.project_root("pydevd")
+ DEBUGBY_ROOT = os.path.dirname(os.path.abspath(debugpy.__file__))
+ 
+ 
+@@ -36,27 +34,6 @@ def get_buildplatform():
+ return None
+ 
+ 
+-def cython_build():
+-print("Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)")
+-subprocess.call(
+-[
+-sys.executable,
+-os.path.join(PYDEVD_ROOT, "setup_cython.py"),
+-"build_ext",
+-"-i",
+-]
+-)
+-
+-
+-def iter_vendored_files():
+-# Add pydevd files as data files for this package. They are not
+-# treated as a package of their own, because we don't actually
+-# want to provide pydevd - just use our own copy internally.
+-for project in debugpy._vendored.list_all():
+-for filename in debugpy._vendored.iter_packaging_files(project):
+-yield filename
+-
+-
+ # bdist_wheel determines whether the package is pure or not based on 
ext_modules.
+ # However, all pydevd native modules are prebuilt and packaged as data, so 
they
+ # should not be in the list.
+@@ -121,8 +98,6 @@ with open("DESCRIPTION.md", "r") as fh:
+ 
+ 
+ if __name__ == "__main__":
+-if not os.getenv("SKIP_CYTHON_BUILD"):
+-cython_build()
+ 
+ extras = {}
+ platforms = get_buildplatform()
+@@ -165,11 +140,9 @@ if __name__ == "__main__":
+ "debugpy.common",

[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-07 Thread Sam James
commit: 59071fbaf4570fb7e7cff385e86285b95bbec600
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep  8 01:25:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep  8 01:25:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59071fba

dev-python/debugpy: Keyword 1.4.1 arm, #810070

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
index 4236a4bb82f..096d5d66653 100644
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-06 Thread Sam James
commit: 14f6e1ebe29549c1948f847bedd7a270e92b4ec9
Author: Sam James  gentoo  org>
AuthorDate: Tue Sep  7 02:46:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Sep  7 02:46:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14f6e1eb

dev-python/debugpy: Keyword 1.4.1 ppc64, #810070

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
index ba3d2a1fc53..4236a4bb82f 100644
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~riscv ~sparc"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-09-06 Thread Sam James
commit: f2a52b9df52d6f024f3bcb8ac7a3cc83eb36bc14
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  6 21:26:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  6 21:26:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2a52b9d

dev-python/debugpy: Keyword 1.4.1 ppc, #810070

Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
index 91ed0c5562a..ba3d2a1fc53 100644
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~sparc"
+KEYWORDS="~amd64 ~ppc ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-08-27 Thread Yixun Lan
commit: 8ddb0340a83d91020e3793548a38d3cf907297da
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Aug 27 19:26:03 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Aug 27 21:12:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ddb0340

dev-python/debugpy: keyword ~riscv

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-python/debugpy/debugpy-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
index 5d66c556413..91ed0c5562a 100644
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~sparc"
+KEYWORDS="~amd64 ~riscv ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-08-26 Thread Sam James
commit: 812ee540b9fd01ddc9140dc0c58282484f56d2f7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Aug 26 19:08:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 26 20:36:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812ee540

dev-python/debugpy: keyworded 1.4.1 for sparc, bug #810070

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-python/debugpy/debugpy-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
index f49de56ebc4..5d66c556413 100644
--- a/dev-python/debugpy/debugpy-1.4.1.ebuild
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/microsoft/${PN}/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~sparc"
 
 # There is not enough time in the universe for this test suite
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-python/debugpy/

2021-08-24 Thread Andrew Ammerlaan
commit: da0f62bc1a88d9b4a94249013057b7ecae404d7d
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Tue Aug 24 18:02:03 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug 24 18:41:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da0f62bc

dev-python/debugpy: import from ::guru, new dep of ipykernel

Closes: https://bugs.gentoo.org/800133
Closes: https://bugs.gentoo.org/796854
Closes: https://bugs.gentoo.org/796857
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/debugpy/Manifest |  1 +
 dev-python/debugpy/debugpy-1.4.1.ebuild | 39 +
 dev-python/debugpy/metadata.xml | 15 +
 3 files changed, 55 insertions(+)

diff --git a/dev-python/debugpy/Manifest b/dev-python/debugpy/Manifest
new file mode 100644
index 000..f429037ba87
--- /dev/null
+++ b/dev-python/debugpy/Manifest
@@ -0,0 +1 @@
+DIST debugpy-1.4.1.tar.gz 6687670 BLAKE2B 
c7761f354700d366d49365b0294ba1f07f357283c7527fc961c702bf99d808835741a899909e37092026c81ff19f6d96ef09c06512c8315ccad158b6e8e47697
 SHA512 
aef7779cb3a1af76b5cd3d6e8c7e0b78ffe08d1ebe25cf617ca3eb00966d5b3920358809c018f5f1f9eb56b913211134acfdba7d4c0d0174e4d6cfdae058d5f5

diff --git a/dev-python/debugpy/debugpy-1.4.1.ebuild 
b/dev-python/debugpy/debugpy-1.4.1.ebuild
new file mode 100644
index 000..f49de56ebc4
--- /dev/null
+++ b/dev-python/debugpy/debugpy-1.4.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+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/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# There is not enough time in the universe for this test suite
+RESTRICT="test"
+
+# These files are included pre-built in the sources
+# TODO: Investigate what this is and if/how we can compile this properly
+QA_PREBUILT="
+   
/usr/lib/python*/site-packages/${PN}/_vendored/pydevd/pydevd_attach_to_process/attach_linux_*.so
+"
+
+python_prepare_all() {
+   # Drop unnecessary and unrecognized option
+   # __main__.py: error: unrecognized arguments: -n8
+   # Do not timeout
+   sed -i \
+   -e 's/-n8//g' \
+   -e '/timeout/d' \
+   pytest.ini || die
+
+   distutils-r1_python_prepare_all
+}
+
+distutils_enable_tests pytest

diff --git a/dev-python/debugpy/metadata.xml b/dev-python/debugpy/metadata.xml
new file mode 100644
index 000..a8dc7238588
--- /dev/null
+++ b/dev-python/debugpy/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+   
+   debugpy
+   
+   ptvsh...@microsoft.com
+   Microsoft Corporation
+   
+   
+