From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1336664-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9A843158086 for <garchives@archives.gentoo.org>; Fri, 5 Nov 2021 14:35:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87D4EE08ED; Fri, 5 Nov 2021 14:35:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3644EE08ED for <gentoo-commits@lists.gentoo.org>; Fri, 5 Nov 2021 14:35:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7696B343167 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Nov 2021 14:12:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 878E4195 for <gentoo-commits@lists.gentoo.org>; Fri, 5 Nov 2021 14:12:15 +0000 (UTC) From: "Akinori Hattori" <hattya@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, "Akinori Hattori" <hattya@gentoo.org> Message-ID: <1636121497.9a7fe11dae355580c4f2e6699c4049cd78bcc559.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/zinnia-tomoe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild X-VCS-Directories: app-i18n/zinnia-tomoe/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 9a7fe11dae355580c4f2e6699c4049cd78bcc559 X-VCS-Branch: master Date: Fri, 5 Nov 2021 14:12:15 +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: 168124c6-5622-4b65-af73-63de64e28368 X-Archives-Hash: a64628f73f7ed9b21ea6e15400ffde9f commit: 9a7fe11dae355580c4f2e6699c4049cd78bcc559 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org> AuthorDate: Fri Nov 5 14:11:37 2021 +0000 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org> CommitDate: Fri Nov 5 14:11:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a7fe11d app-i18n/zinnia-tomoe: update to EAPI 8 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org> app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 index 97bdbdaa6f7..81cfc5262b1 100644 --- a/app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild +++ b/app-i18n/zinnia-tomoe/zinnia-tomoe-0.6.0_p20080911.ebuild @@ -1,7 +1,7 @@ # Copyright 2013-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="8" inherit autotools @@ -16,16 +16,16 @@ SLOT="0" KEYWORDS="amd64 ~arm64 ~ppc64 x86" IUSE="" -DEPEND="app-i18n/zinnia" -RDEPEND="${DEPEND}" - +RDEPEND="app-i18n/zinnia" +DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_P}" -DOCS=(AUTHORS) +DOCS=( AUTHORS ) src_prepare() { default - mv configure.in configure.ac || die - sed -e "/^modeldir[[:space:]]*=/s/lib/$(get_libdir)/" -i Makefile.am || die + sed -i "/^modeldir[[:space:]]*=/s/lib/$(get_libdir)/" Makefile.am || die + + mv configure.{in,ac} || die eautoreconf }