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 54FF3138359 for ; Sun, 30 Aug 2020 07:15:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05B41E0903; Sun, 30 Aug 2020 07:15:54 +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 DC334E0903 for ; Sun, 30 Aug 2020 07:15:53 +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 5E676340D65 for ; Sun, 30 Aug 2020 07:15:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B06FA2FD for ; Sun, 30 Aug 2020 07:15:50 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1598771737.adc1e8ec9c58fdb797df8d1ae25dc94aa9587415.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/xnec2c/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/xnec2c/xnec2c-3.5.1.ebuild X-VCS-Directories: sci-electronics/xnec2c/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: adc1e8ec9c58fdb797df8d1ae25dc94aa9587415 X-VCS-Branch: master Date: Sun, 30 Aug 2020 07:15:50 +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: e97cc0be-6b27-46ef-871c-688f6da3f819 X-Archives-Hash: cc67d0d9d9a47599e23fcfc7db5419a5 commit: adc1e8ec9c58fdb797df8d1ae25dc94aa9587415 Author: Thomas Beierlein gentoo org> AuthorDate: Sun Aug 30 07:14:42 2020 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sun Aug 30 07:15:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc1e8ec sci-electronics/xnec2c: Bump EAPI, fix QA problems use docinto and dodoc instead of dohtml and insinto Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Thomas Beierlein gentoo.org> sci-electronics/xnec2c/xnec2c-3.5.1.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild b/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild index 8bcf439db3c..134ddca07cc 100644 --- a/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild +++ b/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 inherit autotools eutils @@ -20,6 +20,8 @@ DEPEND="${RDEPEND} sys-devel/gettext" src_prepare() { + eapply_user + glib-gettextize --force --copy || die eautoreconf } @@ -28,7 +30,7 @@ src_install() { default dodoc AUTHORS README doc/*.txt - use doc && dohtml -r doc/*.html doc/images - insinto /usr/share/doc/${PF}/examples - use examples && doins examples/* + use doc && dodoc -r doc/*.html doc/images + docinto examples + use examples && dodoc examples/* }