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 09FBE158086 for ; Tue, 12 Oct 2021 13:24:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6A90E07A5; Tue, 12 Oct 2021 13:24:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51293E07A5 for ; Tue, 12 Oct 2021 13:24:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D3CE343488 for ; Tue, 12 Oct 2021 13:24:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16C97148 for ; Tue, 12 Oct 2021 13:24:25 +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: <1634044747.647d7acd1a1dfcb912e5cc16cd67162301aa540f.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tomoe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/tomoe/tomoe-0.6.0-r6.ebuild X-VCS-Directories: app-i18n/tomoe/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 647d7acd1a1dfcb912e5cc16cd67162301aa540f X-VCS-Branch: master Date: Tue, 12 Oct 2021 13:24:25 +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: fcff542f-87fe-4a60-9e27-5c5c980906d4 X-Archives-Hash: ef0b239b96bebcb9697bd78e19dff51d commit: 647d7acd1a1dfcb912e5cc16cd67162301aa540f Author: Akinori Hattori gentoo org> AuthorDate: Tue Oct 12 13:19:07 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Oct 12 13:19:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=647d7acd app-i18n/tomoe: update to EAPI 7 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Akinori Hattori gentoo.org> app-i18n/tomoe/tomoe-0.6.0-r6.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/app-i18n/tomoe/tomoe-0.6.0-r6.ebuild b/app-i18n/tomoe/tomoe-0.6.0-r6.ebuild index ad6822db39c..27f3f0c86a8 100644 --- a/app-i18n/tomoe/tomoe-0.6.0-r6.ebuild +++ b/app-i18n/tomoe/tomoe-0.6.0-r6.ebuild @@ -1,9 +1,9 @@ -# Copyright 2006-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" - +EAPI="7" USE_RUBY="ruby25 ruby26 ruby27" + inherit autotools ruby-utils DESCRIPTION="Japanese handwriting recognition engine" @@ -14,9 +14,8 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 x86" IUSE="hyperestraier mysql ruby ${USE_RUBY//ruby/ruby_targets_ruby} subversion" -REQUIRED_USE="ruby? ( ^^ ( ${USE_RUBY//ruby/ruby_targets_ruby} ) )" - RESTRICT="test" +REQUIRED_USE="ruby? ( ^^ ( ${USE_RUBY//ruby/ruby_targets_ruby} ) )" RDEPEND="dev-libs/glib:2 hyperestraier? ( app-text/hyperestraier ) @@ -30,8 +29,8 @@ RDEPEND="dev-libs/glib:2 done) ) subversion? ( dev-vcs/subversion )" -DEPEND="${RDEPEND} - dev-util/glib-utils +DEPEND="${RDEPEND}" +BDEPEND="dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool virtual/pkgconfig" @@ -66,9 +65,9 @@ src_configure() { econf \ $(use_enable ruby dict-ruby) \ + $(use_with ruby ruby "$(type -P ${ruby})") \ --disable-static \ --without-python \ - $(use_with ruby ruby "$(type -P ${ruby})") \ --with-svn-include="${EPREFIX}"/usr/include \ --with-svn-lib="${EPREFIX}"/usr/$(get_libdir) }