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 5B6821382C5 for ; Thu, 1 Apr 2021 00:43:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BC87E09D5; Thu, 1 Apr 2021 00:43:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 25B2FE09D4 for ; Thu, 1 Apr 2021 00:43:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C6E30340931 for ; Thu, 1 Apr 2021 00:43:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ED11638 for ; Thu, 1 Apr 2021 00:43:51 +0000 (UTC) From: "Sam James" 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" Message-ID: <1617237803.5b5a1e70d27fd95601a9f9cc854c51e3603d97cc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mimetic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/mimetic/mimetic-0.9.8.ebuild X-VCS-Directories: dev-libs/mimetic/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5b5a1e70d27fd95601a9f9cc854c51e3603d97cc X-VCS-Branch: master Date: Thu, 1 Apr 2021 00:43:51 +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: 360f5f7c-595a-4894-bffd-5fdea4638696 X-Archives-Hash: fb8b87d29f387efe5f91098d86d8e399 commit: 5b5a1e70d27fd95601a9f9cc854c51e3603d97cc Author: Sam James gentoo org> AuthorDate: Thu Apr 1 00:31:40 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 1 00:43:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5a1e70 dev-libs/mimetic: port to EAPI 7 Signed-off-by: Sam James gentoo.org> dev-libs/mimetic/mimetic-0.9.8.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/mimetic/mimetic-0.9.8.ebuild b/dev-libs/mimetic/mimetic-0.9.8.ebuild index 3f54ec09712..b47e8e69733 100644 --- a/dev-libs/mimetic/mimetic-0.9.8.ebuild +++ b/dev-libs/mimetic/mimetic-0.9.8.ebuild @@ -1,7 +1,7 @@ -# 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 @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="amd64 ~ppc64 x86" IUSE="doc examples" -DEPEND="doc? ( app-doc/doxygen )" +BDEPEND="doc? ( app-doc/doxygen )" PATCHES=( "${FILESDIR}/signed-char.patch" ) @@ -46,5 +46,5 @@ src_install() { dodoc examples/{README,TODO,test.msg,*.cxx,*.h} fi - rm "${D}"/usr/$(get_libdir)/libmimetic.la || die + rm "${ED}"/usr/$(get_libdir)/libmimetic.la || die }