Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mimetic/
Date: Thu, 01 Apr 2021 00:43:55
Message-Id: 1617237803.5b5a1e70d27fd95601a9f9cc854c51e3603d97cc.sam@gentoo
1 commit: 5b5a1e70d27fd95601a9f9cc854c51e3603d97cc
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 1 00:31:40 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 1 00:43:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5a1e70
7
8 dev-libs/mimetic: port to EAPI 7
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-libs/mimetic/mimetic-0.9.8.ebuild | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-libs/mimetic/mimetic-0.9.8.ebuild b/dev-libs/mimetic/mimetic-0.9.8.ebuild
16 index 3f54ec09712..b47e8e69733 100644
17 --- a/dev-libs/mimetic/mimetic-0.9.8.ebuild
18 +++ b/dev-libs/mimetic/mimetic-0.9.8.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=7
26
27 inherit autotools
28
29 @@ -14,7 +14,7 @@ SLOT="0"
30 KEYWORDS="amd64 ~ppc64 x86"
31 IUSE="doc examples"
32
33 -DEPEND="doc? ( app-doc/doxygen )"
34 +BDEPEND="doc? ( app-doc/doxygen )"
35
36 PATCHES=( "${FILESDIR}/signed-char.patch" )
37
38 @@ -46,5 +46,5 @@ src_install() {
39 dodoc examples/{README,TODO,test.msg,*.cxx,*.h}
40 fi
41
42 - rm "${D}"/usr/$(get_libdir)/libmimetic.la || die
43 + rm "${ED}"/usr/$(get_libdir)/libmimetic.la || die
44 }