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 320D4158041 for ; Fri, 29 Mar 2024 07:51:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72904E2A29; Fri, 29 Mar 2024 07:51:03 +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 52115E2A29 for ; Fri, 29 Mar 2024 07:51:03 +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 4EE49335D6A for ; Fri, 29 Mar 2024 07:51:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1B4A1606 for ; Fri, 29 Mar 2024 07:51:00 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1711698657.b91e3faab0bbb54c22f4289897d5d6ef90a1c590.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-debug/pwndbg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-debug/pwndbg/pwndbg-99999999.ebuild X-VCS-Directories: dev-debug/pwndbg/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: b91e3faab0bbb54c22f4289897d5d6ef90a1c590 X-VCS-Branch: master Date: Fri, 29 Mar 2024 07:51:00 +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: 2b2dc7f6-687b-462e-9370-d2a09dae64d8 X-Archives-Hash: 5296d71ac6825a2b78ee6838082dfdd2 commit: b91e3faab0bbb54c22f4289897d5d6ef90a1c590 Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Sun Feb 18 22:21:51 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Mar 29 07:50:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b91e3faa dev-debug/pwndbg: sync live Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/35415 Signed-off-by: Joonas Niilola gentoo.org> dev-debug/pwndbg/pwndbg-99999999.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-debug/pwndbg/pwndbg-99999999.ebuild b/dev-debug/pwndbg/pwndbg-99999999.ebuild index 304326ef2983..660b4d397fec 100644 --- a/dev-debug/pwndbg/pwndbg-99999999.ebuild +++ b/dev-debug/pwndbg/pwndbg-99999999.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry DISTUTILS_SINGLE_IMPL=1 -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 wrapper @@ -18,7 +18,7 @@ if [[ ${PV} == "99999999" ]]; then else MY_PV="${PV:0:4}.${PV:4:2}.${PV:6:2}" SRC_URI="https://github.com/pwndbg/pwndbg/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="~amd64 ~x86" S="${WORKDIR}/${PN}-${MY_PV}" fi @@ -36,12 +36,15 @@ RDEPEND=" >=dev-python/pygments-2.15.1[${PYTHON_USEDEP}] >=dev-python/tabulate-0.9.0[${PYTHON_USEDEP}] >=dev-python/typing-extensions-4.6.1[${PYTHON_USEDEP}] - >=dev-util/pwntools-4.10.0[${PYTHON_USEDEP}] + >=dev-util/pwntools-4.11.0[${PYTHON_USEDEP}] >=dev-util/ROPgadget-7.2[${PYTHON_USEDEP}] >=dev-util/unicorn-2.0.1[python,${PYTHON_USEDEP}] ') " +# Tests are architectur-specific (precompiled binaries) +RESTRICT="test" + src_prepare() { if [[ ${PV} != 99999999 ]]; then sed -e "s/__version__ = '\(.*\)'/__version__ = '${PV}'/" \