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 41782138330 for ; Mon, 5 Sep 2016 04:34:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1540D21C060; Mon, 5 Sep 2016 04:34:15 +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 A412821C060 for ; Mon, 5 Sep 2016 04:34:14 +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 0EEB43406C2 for ; Mon, 5 Sep 2016 04:34:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C550B246F for ; Mon, 5 Sep 2016 04:34:10 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1473049579.000d301be46a1df5da1f07b49823176c1ff8980b.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/units/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-calculators/units/units-2.13-r1.ebuild X-VCS-Directories: sci-calculators/units/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 000d301be46a1df5da1f07b49823176c1ff8980b X-VCS-Branch: master Date: Mon, 5 Sep 2016 04:34:10 +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: 5c49b3d2-df1d-472f-8f72-f868a2060444 X-Archives-Hash: 74758c69937ff205ec7bdaa78906a0a8 commit: 000d301be46a1df5da1f07b49823176c1ff8980b Author: Jeroen Roovers gentoo org> AuthorDate: Mon Sep 5 04:26:19 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Sep 5 04:26:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=000d301b sci-calculators/units: Fix whitespace. Package-Manager: portage-2.3.0 sci-calculators/units/units-2.13-r1.ebuild | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/sci-calculators/units/units-2.13-r1.ebuild b/sci-calculators/units/units-2.13-r1.ebuild index 33bb1a7..588585b 100644 --- a/sci-calculators/units/units-2.13-r1.ebuild +++ b/sci-calculators/units/units-2.13-r1.ebuild @@ -25,14 +25,21 @@ RDEPEND=" ${PYTHON_DEPS} dev-python/unidecode[${PYTHON_USEDEP}] dev-python/future[${PYTHON_USEDEP}] - )" -DEPEND="${RDEPEND}" + ) +" +DEPEND=" + ${RDEPEND} +" -PATCHES=( "${FILESDIR}/${P}-fix-python.patch" ) +PATCHES=( + "${FILESDIR}"/${P}-fix-python.patch +) src_prepare() { default - sed -e "/^outfile/s|'.*'|'${EPREFIX}/usr/share/units/currency.units'|g" \ + + sed \ + -e "/^outfile/s|'.*'|'${EPREFIX}/usr/share/units/currency.units'|g" \ -i units_cur3 || die eautoreconf @@ -40,5 +47,6 @@ src_prepare() { src_install() { default + use units_cur && python_foreach_impl python_newscript units_cur{3,} }