From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1482791-garchives=archives.gentoo.org@lists.gentoo.org> 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 2576C15800F for <garchives@archives.gentoo.org>; Wed, 1 Feb 2023 07:38:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4698FE0DA9; Wed, 1 Feb 2023 07:38:14 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C686E0DA9 for <gentoo-commits@lists.gentoo.org>; Wed, 1 Feb 2023 07:38:14 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41DF3340B29 for <gentoo-commits@lists.gentoo.org>; Wed, 1 Feb 2023 07:38:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0210899 for <gentoo-commits@lists.gentoo.org>; Wed, 1 Feb 2023 07:38:11 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1675237081.e36c733c6b8677b6192b99879f6b1e46154e3838.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/checksec/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/checksec/checksec-2.4.0-r1.ebuild app-admin/checksec/checksec-2.4.0.ebuild app-admin/checksec/checksec-2.5.0-r1.ebuild app-admin/checksec/checksec-2.5.0.ebuild app-admin/checksec/checksec-2.6.0-r1.ebuild app-admin/checksec/checksec-2.6.0.ebuild X-VCS-Directories: app-admin/checksec/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e36c733c6b8677b6192b99879f6b1e46154e3838 X-VCS-Branch: master Date: Wed, 1 Feb 2023 07:38:11 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1041cd81-ef0d-4761-aee4-98d58608e2d6 X-Archives-Hash: 83aae1500191e7ac3350756210271911 commit: e36c733c6b8677b6192b99879f6b1e46154e3838 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Feb 1 07:37:34 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Feb 1 07:38:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e36c733c app-admin/checksec: add blocker on older pwntools Bug: https://bugs.gentoo.org/892724 Signed-off-by: Sam James <sam <AT> gentoo.org> .../checksec/{checksec-2.4.0.ebuild => checksec-2.4.0-r1.ebuild} | 4 +++- .../checksec/{checksec-2.5.0.ebuild => checksec-2.5.0-r1.ebuild} | 4 +++- .../checksec/{checksec-2.6.0.ebuild => checksec-2.6.0-r1.ebuild} | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/app-admin/checksec/checksec-2.4.0.ebuild b/app-admin/checksec/checksec-2.4.0-r1.ebuild similarity index 89% rename from app-admin/checksec/checksec-2.4.0.ebuild rename to app-admin/checksec/checksec-2.4.0-r1.ebuild index d0139d89d00f..67293f88dcbb 100644 --- a/app-admin/checksec/checksec-2.4.0.ebuild +++ b/app-admin/checksec/checksec-2.4.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -15,6 +15,8 @@ IUSE="" S="${WORKDIR}"/${MY_PN}-${PV} +RDEPEND="!<dev-util/pwntools-4.10.0_beta0-r2" + DOCS=( ChangeLog README.md ) PATCHES=( diff --git a/app-admin/checksec/checksec-2.5.0.ebuild b/app-admin/checksec/checksec-2.5.0-r1.ebuild similarity index 89% rename from app-admin/checksec/checksec-2.5.0.ebuild rename to app-admin/checksec/checksec-2.5.0-r1.ebuild index 901655f5fae5..14c85d9f0ddc 100644 --- a/app-admin/checksec/checksec-2.5.0.ebuild +++ b/app-admin/checksec/checksec-2.5.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -15,6 +15,8 @@ IUSE="" S="${WORKDIR}"/${MY_PN}-${PV} +RDEPEND="!<dev-util/pwntools-4.10.0_beta0-r2" + DOCS=( ChangeLog README.md ) PATCHES=( diff --git a/app-admin/checksec/checksec-2.6.0.ebuild b/app-admin/checksec/checksec-2.6.0-r1.ebuild similarity index 89% rename from app-admin/checksec/checksec-2.6.0.ebuild rename to app-admin/checksec/checksec-2.6.0-r1.ebuild index 1811c76d6d91..3be8fd79b6c4 100644 --- a/app-admin/checksec/checksec-2.6.0.ebuild +++ b/app-admin/checksec/checksec-2.6.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -15,6 +15,8 @@ IUSE="" S="${WORKDIR}"/${MY_PN}-${PV} +RDEPEND="!<dev-util/pwntools-4.10.0_beta0-r2" + DOCS=( ChangeLog README.md ) src_prepare() {