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 37D68158087 for ; Tue, 5 Oct 2021 13:36:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E314E0867; Tue, 5 Oct 2021 13:36:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47002E0866 for ; Tue, 5 Oct 2021 13:36:46 +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 9B9623430F9 for ; Tue, 5 Oct 2021 13:36:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 030A1DC for ; Tue, 5 Oct 2021 13:36:43 +0000 (UTC) From: "Akinori Hattori" 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" Message-ID: <1633440398.0964f4706de78ade27d95aa3cb82bb5d0b58f710.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/namazu/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/namazu/namazu-2.0.21.ebuild app-text/namazu/namazu-2.0.22_pre7.ebuild X-VCS-Directories: app-text/namazu/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 0964f4706de78ade27d95aa3cb82bb5d0b58f710 X-VCS-Branch: master Date: Tue, 5 Oct 2021 13:36:43 +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: 09eb3f1a-e343-4775-be19-e5e304587833 X-Archives-Hash: b97e1a369f871446b8dc9e3f4060e63c commit: 0964f4706de78ade27d95aa3cb82bb5d0b58f710 Author: Akinori Hattori gentoo org> AuthorDate: Tue Oct 5 13:26:38 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Oct 5 13:26:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0964f470 app-text/namazu: update to EAPI 7 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Akinori Hattori gentoo.org> app-text/namazu/namazu-2.0.21.ebuild | 14 +++++++------- app-text/namazu/namazu-2.0.22_pre7.ebuild | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app-text/namazu/namazu-2.0.21.ebuild b/app-text/namazu/namazu-2.0.21.ebuild index 5d0b4d0d14e..68d7835962b 100644 --- a/app-text/namazu/namazu-2.0.21.ebuild +++ b/app-text/namazu/namazu-2.0.21.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 elisp-common @@ -30,8 +30,8 @@ RDEPEND="dev-perl/File-MMagic dev-lang/tk:0 www-client/lynx )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" +DEPEND="${RDEPEND}" +BDEPEND="nls? ( sys-devel/gettext )" PATCHES=( "${FILESDIR}"/${PN}-gentoo.patch @@ -43,8 +43,8 @@ PATCHES=( src_prepare() { default - mv configure.{in,ac} - mv tk${PN}/configure.{in,ac} + mv configure.{in,ac} || die + mv tk${PN}/configure.{in,ac} || die eautoreconf } @@ -64,7 +64,7 @@ src_configure() { } src_compile() { - emake + default if use emacs; then cd lisp diff --git a/app-text/namazu/namazu-2.0.22_pre7.ebuild b/app-text/namazu/namazu-2.0.22_pre7.ebuild index 8517c855436..e6044e412bd 100644 --- a/app-text/namazu/namazu-2.0.22_pre7.ebuild +++ b/app-text/namazu/namazu-2.0.22_pre7.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 elisp-common @@ -32,8 +32,8 @@ RDEPEND="dev-perl/File-MMagic dev-lang/tk:0 www-client/lynx )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" +DEPEND="${RDEPEND}" +BDEPEND="nls? ( sys-devel/gettext )" S="${WORKDIR}"/${MY_P} PATCHES=( "${FILESDIR}"/${PN}-gentoo.patch ) @@ -41,8 +41,8 @@ PATCHES=( "${FILESDIR}"/${PN}-gentoo.patch ) src_prepare() { default - mv configure.{in,ac} - mv tk${PN}/configure.{in,ac} + mv configure.{in,ac} || die + mv tk${PN}/configure.{in,ac} || die eautoreconf } @@ -62,7 +62,7 @@ src_configure() { } src_compile() { - emake + default if use emacs; then cd lisp