From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1325041-garchives=archives.gentoo.org@lists.gentoo.org> 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 28734158018 for <garchives@archives.gentoo.org>; Tue, 28 Sep 2021 01:45:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63291E0948; Tue, 28 Sep 2021 01:45:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A2C8E0953 for <gentoo-commits@lists.gentoo.org>; Tue, 28 Sep 2021 01:45:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58F45342B4B for <gentoo-commits@lists.gentoo.org>; Tue, 28 Sep 2021 01:45:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8379C11D for <gentoo-commits@lists.gentoo.org>; Tue, 28 Sep 2021 01:45:38 +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: <1632793517.4e898ba90c404819ef8efd7e96ccb78ad8fddc5f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ima-evm-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild X-VCS-Directories: app-crypt/ima-evm-utils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4e898ba90c404819ef8efd7e96ccb78ad8fddc5f X-VCS-Branch: master Date: Tue, 28 Sep 2021 01:45:38 +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: 09856869-a961-4335-8086-8858f3c9c106 X-Archives-Hash: 706f671e6efb99a225cfba26b73d2aa5 commit: 4e898ba90c404819ef8efd7e96ccb78ad8fddc5f Author: Christopher Byrne <salah.coronya <AT> gmail <DOT> com> AuthorDate: Mon Aug 16 01:27:00 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Sep 28 01:45:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e898ba9 app-crypt/ima-evm-utils: Update live ebuild to EAPI 7 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Christopher Byrne <salah.coronya <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/20260 Signed-off-by: Sam James <sam <AT> gentoo.org> app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild b/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild index d967038aff7..50b1baf00da 100644 --- a/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild +++ b/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild @@ -1,18 +1,19 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools git-r3 DESCRIPTION="Supporting tools for IMA and EVM" HOMEPAGE="http://linux-ima.sourceforge.net" -EGIT_REPO_URI="git://git.code.sf.net/p/linux-ima/ima-evm-utils" +EGIT_REPO_URI="https://git.code.sf.net/p/linux-ima/ima-evm-utils" RDEPEND=" dev-libs/openssl:0= sys-apps/keyutils:=" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" app-text/asciidoc app-text/docbook-xsl-stylesheets dev-libs/libxslt"