From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1564966-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 C68E7158089 for <garchives@archives.gentoo.org>; Tue, 24 Oct 2023 00:11:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3F692BC013; Tue, 24 Oct 2023 00:11: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 B151B2BC013 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Oct 2023 00:11: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 A04B7335CA6 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Oct 2023 00:11:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08146E88 for <gentoo-commits@lists.gentoo.org>; Tue, 24 Oct 2023 00:11:35 +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: <1698105974.36c2fbdab6b40b00759213951e00b9cc48d7a646.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/fortify-headers/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/fortify-headers/fortify-headers-9999.ebuild X-VCS-Directories: sys-libs/fortify-headers/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 36c2fbdab6b40b00759213951e00b9cc48d7a646 X-VCS-Branch: master Date: Tue, 24 Oct 2023 00:11:35 +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: 11b1ee75-d9a0-470a-be9b-f8df40e49c2e X-Archives-Hash: 46a53a2d0b2f803e7f7afeebef6077e3 commit: 36c2fbdab6b40b00759213951e00b9cc48d7a646 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Oct 24 00:06:14 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Oct 24 00:06:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c2fbda sys-libs/fortify-headers: update EAPI 7 -> 8, use live template Signed-off-by: Sam James <sam <AT> gentoo.org> sys-libs/fortify-headers/fortify-headers-9999.ebuild | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/sys-libs/fortify-headers/fortify-headers-9999.ebuild b/sys-libs/fortify-headers/fortify-headers-9999.ebuild index 27b835004a56..d272815bf352 100644 --- a/sys-libs/fortify-headers/fortify-headers-9999.ebuild +++ b/sys-libs/fortify-headers/fortify-headers-9999.ebuild @@ -1,14 +1,20 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -EGIT_REPO_URI="https://github.com/jvoisin/fortify-headers" -inherit git-r3 - -DESCRIPTION="A standalone implementation of fortify source" +DESCRIPTION="Standalone implementation of fortify source" HOMEPAGE="https://github.com/jvoisin/fortify-headers" +if [[ ${PV} == *9999* ]] ; then + EGIT_REPO_URI="https://github.com/jvoisin/fortify-headers" + inherit git-r3 +else + FORTIFY_COMMIT="" + SRC_URI="https://github.com/jvoisin/fortify-headers/archive/${FORTIFY_COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86" +fi + LICENSE="ISC" SLOT="0"