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 B9CD9138334 for ; Fri, 20 Sep 2019 19:08:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3857E088C; Fri, 20 Sep 2019 19:08:09 +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 A9B96E088C for ; Fri, 20 Sep 2019 19:08:09 +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 3F39934B406 for ; Fri, 20 Sep 2019 19:08:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B837A4D3 for ; Fri, 20 Sep 2019 19:08:06 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1569006479.a4673d6ed944e1f384597731051ff0e83f9d1adf.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lgi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lgi/lgi-0.9.0-r1.ebuild X-VCS-Directories: dev-lua/lgi/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: a4673d6ed944e1f384597731051ff0e83f9d1adf X-VCS-Branch: master Date: Fri, 20 Sep 2019 19:08:06 +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: b7ed2734-2e49-485c-a85a-c37e80a1911b X-Archives-Hash: 3459d4b4cd82ca62ca7d620f3da220ff commit: a4673d6ed944e1f384597731051ff0e83f9d1adf Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Sep 20 19:07:35 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Sep 20 19:07:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4673d6e dev-lua/lgi: fix dohtml use in src_install(), bug #694958 Ebuild failed at src_install() as: ``` * ERROR: dev-lua/lgi-0.9.0-r1::gentoo failed (install phase): * 'dohtml' has been banned for EAPI '7' ``` Switched to the direct 'dodoc'. While at it disabled compression for provided samples and markdown docs. Reported-by: dashmz web.de Closes: https://bugs.gentoo.org/694958 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Sergei Trofimovich gentoo.org> dev-lua/lgi/lgi-0.9.0-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-lua/lgi/lgi-0.9.0-r1.ebuild b/dev-lua/lgi/lgi-0.9.0-r1.ebuild index e6445f8259a..b0035719374 100644 --- a/dev-lua/lgi/lgi-0.9.0-r1.ebuild +++ b/dev-lua/lgi/lgi-0.9.0-r1.ebuild @@ -47,8 +47,9 @@ src_test() { src_install() { emake DESTDIR="${D}" install - dohtml -r docs/* + docompress -x /usr/share/doc/${PF} dodoc README.md + dodoc -r docs/* if use examples; then dodoc -r samples fi