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 1A9FB138334 for ; Fri, 20 Jul 2018 14:05:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B0D3E0C0C; Fri, 20 Jul 2018 14:05:48 +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 20AA1E0C0C for ; Fri, 20 Jul 2018 14:05:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B5B21335C39 for ; Fri, 20 Jul 2018 14:05:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9900037A for ; Fri, 20 Jul 2018 14:05:44 +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: <1532095526.3e455da8e4875793247ddbf271f7c5ff5a514c6f.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/mecab-perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/mecab-perl/mecab-perl-0.996.ebuild X-VCS-Directories: dev-perl/mecab-perl/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 3e455da8e4875793247ddbf271f7c5ff5a514c6f X-VCS-Branch: master Date: Fri, 20 Jul 2018 14:05:44 +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: f03e6796-b034-4409-adfd-eb27a24f2ef9 X-Archives-Hash: 916cd2f554bc30761a4c181f5463852b commit: 3e455da8e4875793247ddbf271f7c5ff5a514c6f Author: Akinori Hattori gentoo org> AuthorDate: Fri Jul 20 14:05:26 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Fri Jul 20 14:05:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e455da8 dev-perl/mecab-perl: update to EAPI 6 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-perl/mecab-perl/mecab-perl-0.996.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-perl/mecab-perl/mecab-perl-0.996.ebuild b/dev-perl/mecab-perl/mecab-perl-0.996.ebuild index 58c968211d7..adbae9099c7 100644 --- a/dev-perl/mecab-perl/mecab-perl-0.996.ebuild +++ b/dev-perl/mecab-perl/mecab-perl-0.996.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" inherit perl-module @@ -17,8 +17,10 @@ IUSE="" DEPEND="~app-text/mecab-${PV}" RDEPEND="${DEPEND}" +DOCS=( AUTHORS README test.pl ) +HTML_DOCS=( bindings.html ) + src_install() { perl-module_src_install - dohtml bindings.html - dodoc test.pl + einstalldocs }