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 102A713835B for ; Mon, 12 Apr 2021 09:30:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6285CE0841; Mon, 12 Apr 2021 09:30:19 +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 4AA1FE0841 for ; Mon, 12 Apr 2021 09:30:19 +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 45D33335CC1 for ; Mon, 12 Apr 2021 09:30:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FE1764B for ; Mon, 12 Apr 2021 09:30:15 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1618214060.956793289a2e739abc535a45060656a5bbde8a69.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sci-libs/chaco/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-libs/chaco/chaco-2.2.ebuild X-VCS-Directories: sci-libs/chaco/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 956793289a2e739abc535a45060656a5bbde8a69 X-VCS-Branch: master Date: Mon, 12 Apr 2021 09:30:15 +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: 9bdb97c5-0701-4fc0-82b7-837195076538 X-Archives-Hash: 0ea74aa446da4aeebe5253c3d125f763 commit: 956793289a2e739abc535a45060656a5bbde8a69 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Apr 12 07:54:20 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Apr 12 07:54:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=95679328 sci-libs/chaco: added missing die Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> sci-libs/chaco/chaco-2.2.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sci-libs/chaco/chaco-2.2.ebuild b/sci-libs/chaco/chaco-2.2.ebuild index 12c58a451..745dd01c6 100644 --- a/sci-libs/chaco/chaco-2.2.ebuild +++ b/sci-libs/chaco/chaco-2.2.ebuild @@ -13,14 +13,10 @@ KEYWORDS="~amd64 ~x86" PATCHES=( "${FILESDIR}/makefile.patch" ) S="${WORKDIR}/Chaco-${PV}" -#src_prepare() { -# eapply_user -#} - src_install() { - pushd code + pushd code || die emake - popd + popd || die dobin "exec/chaco" dodoc -r doc/. }