From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 64693158091 for ; Sun, 12 Jun 2022 14:52:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98A79E0918; Sun, 12 Jun 2022 14:52:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7AA59E0917 for ; Sun, 12 Jun 2022 14:52:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50FC2341BDE for ; Sun, 12 Jun 2022 14:52:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9082644B for ; Sun, 12 Jun 2022 14:52:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1655045476.8da7d26c21708d43d3e13c54beec4213793d97a5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pydevd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pydevd/pydevd-2.8.0-r1.ebuild X-VCS-Directories: dev-python/pydevd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8da7d26c21708d43d3e13c54beec4213793d97a5 X-VCS-Branch: master Date: Sun, 12 Jun 2022 14:52:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cf145fb8-34ff-4c3f-8066-da6e5583f143 X-Archives-Hash: b5a0fb17cd4478f1117ecd1c9cd295c1 commit: 8da7d26c21708d43d3e13c54beec4213793d97a5 Author: Sam James gentoo org> AuthorDate: Sun Jun 12 14:33:38 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 12 14:51:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8da7d26c dev-python/pydevd: fix distutils-r1 usage Closes: https://bugs.gentoo.org/851564 Signed-off-by: Sam James gentoo.org> dev-python/pydevd/pydevd-2.8.0-r1.ebuild | 89 ++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) diff --git a/dev-python/pydevd/pydevd-2.8.0-r1.ebuild b/dev-python/pydevd/pydevd-2.8.0-r1.ebuild new file mode 100644 index 000000000000..a4da1a2f06b0 --- /dev/null +++ b/dev-python/pydevd/pydevd-2.8.0-r1.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) +inherit distutils-r1 toolchain-funcs + +MY_P="pydev_debugger_${PV//./_}" + +DESCRIPTION="PyDev.Debugger (used in PyDev, PyCharm and VSCode Python)" +HOMEPAGE="https://github.com/fabioz/PyDev.Debugger/" +SRC_URI="https://github.com/fabioz/PyDev.Debugger/archive/${MY_P}.tar.gz" +S="${WORKDIR}/PyDev.Debugger-${MY_P}" + +LICENSE="EPL-1.0" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86" + +# After removing and recompiling the prebuilt lib the tests fail? +# For some reason the test suite is executing a slightly different gdb command +# then before, which is lacking the file name of the lib that was pre built: +# gdb: No symbol table is loaded. Use the "file" command +# This also happens outside of portage so it is not related to any *FLAGS +RESTRICT="test" + +BDEPEND=" + test? ( + dev-python/untangle[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + ) +" + +# Block against the version of debugpy that still bundles pydevd +RDEPEND=" + !