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 A8E2D139085 for ; Mon, 16 Jan 2017 10:27:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB42E234140; Mon, 16 Jan 2017 10:27:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7519234140 for ; Mon, 16 Jan 2017 10:27:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DBD45340EE8 for ; Mon, 16 Jan 2017 10:27:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96FFE2418 for ; Mon, 16 Jan 2017 10:27:04 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1484562418.cbfd522e0d0976eb08558bddb2758d8fdafe1b52.nimiux@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/asdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/asdf/asdf-3.2.0.ebuild X-VCS-Directories: dev-lisp/asdf/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: cbfd522e0d0976eb08558bddb2758d8fdafe1b52 X-VCS-Branch: master Date: Mon, 16 Jan 2017 10:27:04 +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: a0aa140b-d287-4360-ad67-d227cef2a468 X-Archives-Hash: d62c6958918d11ecb884af50c8bab7d6 commit: cbfd522e0d0976eb08558bddb2758d8fdafe1b52 Author: Chema Alonso Josa gentoo org> AuthorDate: Mon Jan 16 10:26:31 2017 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Jan 16 10:26:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbfd522e dev-lisp/asdf: Avoids installation of asdf.info Fixes bug #605752 Package-Manager: portage-2.3.0 dev-lisp/asdf/asdf-3.2.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-lisp/asdf/asdf-3.2.0.ebuild b/dev-lisp/asdf/asdf-3.2.0.ebuild index 9209e12..085373a 100644 --- a/dev-lisp/asdf/asdf-3.2.0.ebuild +++ b/dev-lisp/asdf/asdf-3.2.0.ebuild @@ -28,7 +28,9 @@ PDEPEND="~dev-lisp/uiop-${PV}" #S="${WORKDIR}" install_docs() { - (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf ; doinfo "${PN}.info") + # Not installing info file at the moment, see bug #605752 + #(cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf ; doinfo "${PN}.info") + (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf) } src_compile() {