Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/zinnia-tomoe/
Date: Fri, 05 Nov 2021 14:35:14
Message-Id: 1636121497.9a7fe11dae355580c4f2e6699c4049cd78bcc559.hattya@gentoo
1 commit: 9a7fe11dae355580c4f2e6699c4049cd78bcc559
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 5 14:11:37 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 5 14:11:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a7fe11d
7
8 app-i18n/zinnia-tomoe: update to EAPI 8
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild | 14 +++++++-------
14 1 file changed, 7 insertions(+), 7 deletions(-)
15
16 diff --git a/app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild b/app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild
17 index 97bdbdaa6f7..81cfc5262b1 100644
18 --- a/app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild
19 +++ b/app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild
20 @@ -1,7 +1,7 @@
21 # Copyright 2013-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI="6"
25 +EAPI="8"
26
27 inherit autotools
28
29 @@ -16,16 +16,16 @@ SLOT="0"
30 KEYWORDS="amd64 ~arm64 ~ppc64 x86"
31 IUSE=""
32
33 -DEPEND="app-i18n/zinnia"
34 -RDEPEND="${DEPEND}"
35 -
36 +RDEPEND="app-i18n/zinnia"
37 +DEPEND="${RDEPEND}"
38 S="${WORKDIR}/${MY_P}"
39
40 -DOCS=(AUTHORS)
41 +DOCS=( AUTHORS )
42
43 src_prepare() {
44 default
45 - mv configure.in configure.ac || die
46 - sed -e "/^modeldir[[:space:]]*=/s/lib/$(get_libdir)/" -i Makefile.am || die
47 + sed -i "/^modeldir[[:space:]]*=/s/lib/$(get_libdir)/" Makefile.am || die
48 +
49 + mv configure.{in,ac} || die
50 eautoreconf
51 }