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 8BEBA138334 for ; Fri, 20 Jul 2018 14:22:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 783ABE07F6; Fri, 20 Jul 2018 14:22:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47617E07F6 for ; Fri, 20 Jul 2018 14:22:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 126A8335CFD for ; Fri, 20 Jul 2018 14:22:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1168737B for ; Fri, 20 Jul 2018 14:22:16 +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: <1532096505.b9480a100fdfd7f92cbbe382ac9d8a7a33a0d514.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mecab-ruby/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/mecab-ruby/mecab-ruby-0.996-r1.ebuild X-VCS-Directories: dev-ruby/mecab-ruby/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: b9480a100fdfd7f92cbbe382ac9d8a7a33a0d514 X-VCS-Branch: master Date: Fri, 20 Jul 2018 14:22:16 +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-Archives-Salt: ed481ec2-78dc-432e-8b6f-f0d4220a15c1 X-Archives-Hash: 55974843c7ad14836fec9b44a914d123 commit: b9480a100fdfd7f92cbbe382ac9d8a7a33a0d514 Author: Akinori Hattori gentoo org> AuthorDate: Fri Jul 20 14:21:45 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Fri Jul 20 14:21:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9480a10 dev-ruby/mecab-ruby: update to EAPI 6 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ruby/mecab-ruby/mecab-ruby-0.996-r1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-ruby/mecab-ruby/mecab-ruby-0.996-r1.ebuild b/dev-ruby/mecab-ruby/mecab-ruby-0.996-r1.ebuild index 9d96dab3cff..14e17b2d3b0 100644 --- a/dev-ruby/mecab-ruby/mecab-ruby-0.996-r1.ebuild +++ b/dev-ruby/mecab-ruby/mecab-ruby-0.996-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI="6" USE_RUBY="ruby22 ruby23 ruby24 ruby25" @@ -19,6 +19,9 @@ IUSE="" DEPEND="~app-text/mecab-${PV}" RDEPEND="${DEPEND}" +DOCS=( AUTHORS README test.rb ) +HTML_DOCS=( bindings.html ) + each_ruby_configure() { ${RUBY} extconf.rb || die } @@ -32,6 +35,5 @@ each_ruby_install() { } all_ruby_install() { - dodoc AUTHORS README test.rb - dohtml bindings.html + einstalldocs }