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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4A98138334 for ; Tue, 10 Dec 2019 03:36:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0F98E0955; Tue, 10 Dec 2019 03:36:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CA8CAE0955 for ; Tue, 10 Dec 2019 03:36:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C60C34D7CC for ; Tue, 10 Dec 2019 03:36:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAB99895 for ; Tue, 10 Dec 2019 03:35:57 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1575948952.7924ee799d9dc44458d0ae77046e4792d2e83313.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/unifdef/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/unifdef/unifdef-2.10.ebuild dev-util/unifdef/unifdef-2.11.ebuild X-VCS-Directories: dev-util/unifdef/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 7924ee799d9dc44458d0ae77046e4792d2e83313 X-VCS-Branch: master Date: Tue, 10 Dec 2019 03:35:57 +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: 361ba1be-e450-4bbc-9a5c-65045d8a63d8 X-Archives-Hash: c19d1c26730f32dd4c49cf0462701260 commit: 7924ee799d9dc44458d0ae77046e4792d2e83313 Author: Aaron Bauman gentoo org> AuthorDate: Tue Dec 10 03:34:57 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue Dec 10 03:35:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7924ee79 dev-util/unifdef: port to EAPI 7 Signed-off-by: Aaron Bauman gentoo.org> dev-util/unifdef/unifdef-2.10.ebuild | 10 ++++++---- dev-util/unifdef/unifdef-2.11.ebuild | 8 +++++--- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/dev-util/unifdef/unifdef-2.10.ebuild b/dev-util/unifdef/unifdef-2.10.ebuild index 038a1285cef..7cafc8e46a0 100644 --- a/dev-util/unifdef/unifdef-2.10.ebuild +++ b/dev-util/unifdef/unifdef-2.10.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 + inherit toolchain-funcs -DESCRIPTION="remove #ifdef'ed lines from a file while otherwise leaving the file alone" -HOMEPAGE="http://dotat.at/prog/unifdef/" -SRC_URI="http://dotat.at/prog/unifdef/${P}.tar.gz" +DESCRIPTION="Remove #ifdef'ed lines from a file while otherwise leaving the file alone" +HOMEPAGE="https://dotat.at/prog/unifdef/" +SRC_URI="https://dotat.at/prog/unifdef/${P}.tar.gz" LICENSE="BSD" SLOT="0" @@ -17,4 +18,5 @@ DOCS=( README ) src_prepare() { sed -i '/^prefix/s:=.*:=/usr:' Makefile || die tc-export CC + default } diff --git a/dev-util/unifdef/unifdef-2.11.ebuild b/dev-util/unifdef/unifdef-2.11.ebuild index cb5bb658372..848ad49bbe5 100644 --- a/dev-util/unifdef/unifdef-2.11.ebuild +++ b/dev-util/unifdef/unifdef-2.11.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 + inherit toolchain-funcs DESCRIPTION="remove #ifdef'ed lines from a file while otherwise leaving the file alone" -HOMEPAGE="http://dotat.at/prog/unifdef/" -SRC_URI="http://dotat.at/prog/unifdef/${P}.tar.gz" +HOMEPAGE="https://dotat.at/prog/unifdef/" +SRC_URI="https://dotat.at/prog/unifdef/${P}.tar.gz" LICENSE="BSD" SLOT="0" @@ -17,4 +18,5 @@ DOCS=( README ) src_prepare() { sed -i "/^prefix/s:=.*:=${EPREFIX}/usr:" Makefile || die tc-export CC + default }