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 17D501581D3 for ; Sun, 26 May 2024 15:26:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E9C0E29F2; Sun, 26 May 2024 15:26:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 057A0E29F2 for ; Sun, 26 May 2024 15:26:27 +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 2AC7F34302C for ; Sun, 26 May 2024 15:26:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABAB01736 for ; Sun, 26 May 2024 15:26:24 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716737176.be05f3db8e49604e9ffd30faf6dad79bc6b22e30.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/elfix/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/elfix/elfix-0.9.5.ebuild X-VCS-Directories: sys-apps/elfix/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: be05f3db8e49604e9ffd30faf6dad79bc6b22e30 X-VCS-Branch: master Date: Sun, 26 May 2024 15:26:24 +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: c445b8f4-2c67-4bc9-9dca-32c57e839a27 X-Archives-Hash: 2b8ed1ad6f57163ace33d0cadc11f965 commit: be05f3db8e49604e9ffd30faf6dad79bc6b22e30 Author: Arthur Zamarin gentoo org> AuthorDate: Sun May 26 15:26:16 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun May 26 15:26:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be05f3db sys-apps/elfix: drop 0.9.5 Signed-off-by: Arthur Zamarin gentoo.org> sys-apps/elfix/elfix-0.9.5.ebuild | 47 --------------------------------------- 1 file changed, 47 deletions(-) diff --git a/sys-apps/elfix/elfix-0.9.5.ebuild b/sys-apps/elfix/elfix-0.9.5.ebuild deleted file mode 100644 index 0f1ed96f6f05..000000000000 --- a/sys-apps/elfix/elfix-0.9.5.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ ${PV} == *9999* ]] ; then - EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/elfix.git" - inherit autotools git-r3 -else - SRC_URI="https://dev.gentoo.org/~blueness/elfix/${P}.tar.gz" - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86" -fi - -DESCRIPTION="A suite of tools to work with ELF objects on Hardened Gentoo" -HOMEPAGE="https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml - https://dev.gentoo.org/~blueness/elfix/" - -LICENSE="GPL-3" -SLOT="0" -IUSE="+ptpax test +xtpax" -REQUIRED_USE="|| ( ptpax xtpax )" -# These only work with a properly configured PaX kernel -RESTRICT="!test? ( test ) test" - -DOCS=( AUTHORS ChangeLog INSTALL README THANKS TODO ) - -DEPEND="~dev-python/pypax-${PV}[ptpax=,xtpax=] - ptpax? ( dev-libs/elfutils ) - xtpax? ( sys-apps/attr )" - -RDEPEND="${DEPEND}" - -src_prepare() { - default - if [[ ${PV} == *9999* ]]; then - eautoreconf - cd doc && ./make.sh || die - fi -} - -src_configure() { - rm -f "${S}/scripts/setup.py" - econf \ - $(use_enable test tests) \ - $(use_enable ptpax) \ - $(use_enable xtpax) -}