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 203BD158451 for ; Fri, 12 Jan 2024 07:52:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F5CAE2A91; Fri, 12 Jan 2024 07:52:37 +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 62BC5E2A91 for ; Fri, 12 Jan 2024 07:52:37 +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 5CF81343110 for ; Fri, 12 Jan 2024 07:52:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 963A314B4 for ; Fri, 12 Jan 2024 07:52:34 +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: <1705045920.2abdc5003d4d02430aa3c53f4ab9d3a885d48bf4.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pwntools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pwntools/pwntools-9999.ebuild X-VCS-Directories: dev-util/pwntools/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2abdc5003d4d02430aa3c53f4ab9d3a885d48bf4 X-VCS-Branch: master Date: Fri, 12 Jan 2024 07:52:34 +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: ec75edbe-a2ea-495f-815d-80862eed7e23 X-Archives-Hash: 050e86d1053abbe29cabcdbf0149dc1f commit: 2abdc5003d4d02430aa3c53f4ab9d3a885d48bf4 Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Wed Nov 15 18:49:55 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Jan 12 07:52:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2abdc500 dev-util/pwntools: sync live Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/33841 Signed-off-by: Joonas Niilola gentoo.org> dev-util/pwntools/pwntools-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-util/pwntools/pwntools-9999.ebuild b/dev-util/pwntools/pwntools-9999.ebuild index c560e51d59ec..3bd677b51569 100644 --- a/dev-util/pwntools/pwntools-9999.ebuild +++ b/dev-util/pwntools/pwntools-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools inherit bash-completion-r1 distutils-r1 @@ -15,7 +15,9 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/Gallopsled/pwntools.git" else SRC_URI="https://github.com/Gallopsled/pwntools/archive/${PV/_beta/beta}.tar.gz -> ${P}.gh.tar.gz" - KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + if [[ ${PV} != *_beta* ]] ; then + KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + fi S="${WORKDIR}/${PN}-${PV/_beta/beta}" fi @@ -33,7 +35,7 @@ RDEPEND=" dev-python/packaging[${PYTHON_USEDEP}] >=dev-python/paramiko-1.15.2[${PYTHON_USEDEP}] >=dev-python/psutil-3.3.0[${PYTHON_USEDEP}] - >=dev-python/pyelftools-0.2.4[${PYTHON_USEDEP}] + >=dev-python/pyelftools-0.29[${PYTHON_USEDEP}] >=dev-python/pygments-2.0[${PYTHON_USEDEP}] >=dev-python/pyserial-2.7[${PYTHON_USEDEP}] dev-python/PySocks[${PYTHON_USEDEP}]