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 2C2B3138350 for ; Mon, 16 Mar 2020 21:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CBD2E0BAA; Mon, 16 Mar 2020 21:29:21 +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 7E12AE0BAA for ; Mon, 16 Mar 2020 21:29:21 +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 85B3934F210 for ; Mon, 16 Mar 2020 21:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE234188 for ; Mon, 16 Mar 2020 21:29:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1584393943.aba42a26f32c730e74b62f16e34983be4b14ebce.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libixion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libixion/libixion-9999.ebuild X-VCS-Directories: dev-libs/libixion/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: aba42a26f32c730e74b62f16e34983be4b14ebce X-VCS-Branch: master Date: Mon, 16 Mar 2020 21:29:18 +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: a803c179-9841-4659-9170-742b3fbe116a X-Archives-Hash: 40e531784c3b1a47108a82dffb43fb64 commit: aba42a26f32c730e74b62f16e34983be4b14ebce Author: Nils Freydank posteo de> AuthorDate: Mon Mar 2 22:24:34 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Mar 16 21:25:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba42a26 dev-libs/libixion: Update live ebuild Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Nils Freydank posteo.de> Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libixion/libixion-9999.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-libs/libixion/libixion-9999.ebuild b/dev-libs/libixion/libixion-9999.ebuild index f52b1d4a22b..741d54be08e 100644 --- a/dev-libs/libixion/libixion-9999.ebuild +++ b/dev-libs/libixion/libixion-9999.ebuild @@ -9,7 +9,7 @@ inherit python-single-r1 DESCRIPTION="General purpose formula parser & interpreter" HOMEPAGE="https://gitlab.com/ixion/ixion" -if [[ ${PV} == 9999 ]]; then +if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI="https://gitlab.com/ixion/ixion.git" inherit git-r3 autotools else @@ -38,15 +38,17 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == 9999 ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable python) \ - $(use_enable static-libs static) \ + local myeconfargs=( + $(use_enable debug) + $(use_enable python) + $(use_enable static-libs static) $(use_enable threads) + ) + econf "${myeconfargs[@]}" } src_install() {