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 C65E215817D for ; Sun, 23 Jun 2024 06:21:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB190E2A35; Sun, 23 Jun 2024 06:21:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BDEEBE2A35 for ; Sun, 23 Jun 2024 06:21:22 +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 67906335C96 for ; Sun, 23 Jun 2024 06:21:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5DF91C65 for ; Sun, 23 Jun 2024 06:21:19 +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: <1719123507.b19aef227efe1602ffe9e1586504000934b84194.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/paxctld/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/paxctld/paxctld-1.2.5-r1.ebuild sys-apps/paxctld/paxctld-1.2.5.ebuild X-VCS-Directories: sys-apps/paxctld/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: b19aef227efe1602ffe9e1586504000934b84194 X-VCS-Branch: master Date: Sun, 23 Jun 2024 06:21:19 +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: c29715bc-3d60-49d1-a7f0-d5c51fc4c79f X-Archives-Hash: 87ac6b60974170097cb44f3335612017 commit: b19aef227efe1602ffe9e1586504000934b84194 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Jun 23 06:18:27 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Jun 23 06:18:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b19aef22 sys-apps/paxctld: EAPI 6 -> 8 Closes: https://bugs.gentoo.org/829703 Signed-off-by: Arthur Zamarin gentoo.org> ...axctld-1.2.5.ebuild => paxctld-1.2.5-r1.ebuild} | 30 +++++++++------------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/sys-apps/paxctld/paxctld-1.2.5.ebuild b/sys-apps/paxctld/paxctld-1.2.5-r1.ebuild similarity index 55% rename from sys-apps/paxctld/paxctld-1.2.5.ebuild rename to sys-apps/paxctld/paxctld-1.2.5-r1.ebuild index c4650263e8b3..cba38e8e2631 100644 --- a/sys-apps/paxctld/paxctld-1.2.5.ebuild +++ b/sys-apps/paxctld/paxctld-1.2.5-r1.ebuild @@ -1,37 +1,31 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=8 -inherit systemd +inherit systemd toolchain-funcs DESCRIPTION="PaX flags maintenance daemon" HOMEPAGE="https://www.grsecurity.net/" -SRC_URI="https://www.grsecurity.net/${PN}/${PN}_${PV}.orig.tar.gz - https://dev.gentoo.org/~blueness/hardened-sources/${PN}/${PN}_${PV}.orig.tar.gz" +SRC_URI="https://www.grsecurity.net/${PN}/${PN}_${PV}.orig.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="pam" - -RDEPEND="" -DEPEND="" src_prepare() { # Respect Gentoo flags and don't strip - sed -i \ - -e '/^CC/d' \ - -e '/^CFLAGS/d' \ - -e '/^LDFLAGS/d' \ - -e '/STRIP/d' \ - Makefile - - eapply_user + sed -i Makefile -e '/^CC=/d' -e '/^CFLAGS?=/d' -e '/^LDFLAGS=/d' -e '/STRIP/d' || die + + default +} + +src_compile() { + emake CC="$(tc-getCC)" } src_install() { default - systemd_dounit "${S}"/rpm/${PN}.service + systemd_dounit rpm/${PN}.service }