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 A24C6138334 for ; Wed, 4 Sep 2019 07:51:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AD54E07FA; Wed, 4 Sep 2019 07:51:11 +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 CF88BE07FA for ; Wed, 4 Sep 2019 07:51:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 82CF334AB93 for ; Wed, 4 Sep 2019 07:51:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F2F1720 for ; Wed, 4 Sep 2019 07:51:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1567583461.13c00964fd7f52a9b74e1eba62aae1594f215752.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/blis/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/blis/blis-0.5.2.ebuild sci-libs/blis/blis-0.6.0.ebuild X-VCS-Directories: sci-libs/blis/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 13c00964fd7f52a9b74e1eba62aae1594f215752 X-VCS-Branch: master Date: Wed, 4 Sep 2019 07:51:07 +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: 484faade-63f6-4088-8d56-c911d6b6dbbd X-Archives-Hash: 5a9f2407732dcb18c1d1ab272115016d commit: 13c00964fd7f52a9b74e1eba62aae1594f215752 Author: Mo Zhou gmail com> AuthorDate: Wed Sep 4 07:24:42 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 4 07:51:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c00964 sci-lib/blis: use python-any-r1 eclass instead of hardcoded python deps. Additionally, quote ${BLIS_FLAGS[@]}, and remove unused `eutils` Closes: https://bugs.gentoo.org/693130 Signed-off-by: Mo Zhou gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12859 Signed-off-by: Michał Górny gentoo.org> sci-libs/blis/blis-0.5.2.ebuild | 7 ++++--- sci-libs/blis/blis-0.6.0.ebuild | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sci-libs/blis/blis-0.5.2.ebuild b/sci-libs/blis/blis-0.5.2.ebuild index 785210e5b5a..2c8bf1dbc42 100644 --- a/sci-libs/blis/blis-0.5.2.ebuild +++ b/sci-libs/blis/blis-0.5.2.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit eutils +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) +inherit python-any-r1 DESCRIPTION="BLAS-like Library Instantiation Software Framework" HOMEPAGE="https://github.com/flame/blis" @@ -18,7 +19,7 @@ RDEPEND="eselect-ldso? ( !app-eselect/eselect-cblas >=app-eselect/eselect-blas-0.2 )" DEPEND="${RDEPEND} - dev-lang/python + ${PYTHON_DEPS} " PATCHES=( @@ -56,7 +57,7 @@ src_configure () { $(use_enable static-libs static) \ --enable-blas \ --enable-cblas \ - ${BLIS_FLAGS[@]} \ + "${BLIS_FLAGS[@]}" \ --enable-shared \ $confname || die } diff --git a/sci-libs/blis/blis-0.6.0.ebuild b/sci-libs/blis/blis-0.6.0.ebuild index ccb44fdd682..4d56f562212 100644 --- a/sci-libs/blis/blis-0.6.0.ebuild +++ b/sci-libs/blis/blis-0.6.0.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit eutils +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) +inherit python-any-r1 DESCRIPTION="BLAS-like Library Instantiation Software Framework" HOMEPAGE="https://github.com/flame/blis" @@ -18,7 +19,7 @@ RDEPEND="eselect-ldso? ( !app-eselect/eselect-cblas >=app-eselect/eselect-blas-0.2 )" DEPEND="${RDEPEND} - dev-lang/python + ${PYTHON_DEPS} " PATCHES=( @@ -55,7 +56,7 @@ src_configure () { $(use_enable static-libs static) \ --enable-blas \ --enable-cblas \ - ${BLIS_FLAGS[@]} \ + "${BLIS_FLAGS[@]}" \ --enable-shared \ $confname || die }