From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5929B1384B4 for ; Mon, 30 Nov 2015 18:33:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C74A0E089A; Mon, 30 Nov 2015 18:33:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CA01E089A for ; Mon, 30 Nov 2015 18:33:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74073340814 for ; Mon, 30 Nov 2015 18:33:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABE59A7A for ; Mon, 30 Nov 2015 18:33:37 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1448889219.a1fb6e9d2b23596ae7f5df600b789ca8b7ecd4d6.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/tmglib/tmglib-3.4.2.ebuild sci-libs/tmglib/tmglib-3.5.0.ebuild sci-libs/tmglib/tmglib-3.6.0.ebuild X-VCS-Directories: sci-libs/tmglib/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a1fb6e9d2b23596ae7f5df600b789ca8b7ecd4d6 X-VCS-Branch: master Date: Mon, 30 Nov 2015 18:33:37 +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: 1af5ff9a-5441-4ba9-b57e-e43a3358fce7 X-Archives-Hash: c0fa439c2d1dc6f3c3d62b7b82c433ff commit: a1fb6e9d2b23596ae7f5df600b789ca8b7ecd4d6 Author: Justin Lecher gentoo org> AuthorDate: Mon Nov 30 13:13:39 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Nov 30 13:13:39 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a1fb6e9d sci-libs/tmglib: Version Bump, fix python support, clean old Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> sci-libs/tmglib/tmglib-3.5.0.ebuild | 10 +++++++--- .../tmglib/{tmglib-3.4.2.ebuild => tmglib-3.6.0.ebuild} | 14 +++++++++----- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/sci-libs/tmglib/tmglib-3.5.0.ebuild b/sci-libs/tmglib/tmglib-3.5.0.ebuild index e93941e..4b5358f 100644 --- a/sci-libs/tmglib/tmglib-3.5.0.ebuild +++ b/sci-libs/tmglib/tmglib-3.5.0.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -inherit cmake-utils fortran-2 +PYTHON_COMPAT=( python2_7 ) + +inherit cmake-utils fortran-2 python-any-r1 MYP=lapack-${PV} @@ -17,7 +19,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="static-libs" -RDEPEND=" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} virtual/blas virtual/lapack" DEPEND="${RDEPEND} diff --git a/sci-libs/tmglib/tmglib-3.4.2.ebuild b/sci-libs/tmglib/tmglib-3.6.0.ebuild similarity index 82% rename from sci-libs/tmglib/tmglib-3.4.2.ebuild rename to sci-libs/tmglib/tmglib-3.6.0.ebuild index 9d98070..cf243a5 100644 --- a/sci-libs/tmglib/tmglib-3.4.2.ebuild +++ b/sci-libs/tmglib/tmglib-3.6.0.ebuild @@ -4,9 +4,11 @@ EAPI=5 -inherit cmake-utils fortran-2 +PYTHON_COMPAT=( python2_7 ) -MYP=lapack-3.4.2 +inherit cmake-utils fortran-2 python-any-r1 + +MYP=lapack-${PV} DESCRIPTION="Test Matrix Generator library for LAPACK" HOMEPAGE="http://www.netlib.org/lapack/" @@ -17,7 +19,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="static-libs" -RDEPEND=" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} virtual/blas virtual/lapack" DEPEND="${RDEPEND} @@ -56,6 +60,6 @@ src_compile() { src_install() { cmake-utils_src_install -C TESTING/MATGEN - use static-libs && CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" \ - cmake-utils_src_install -C TESTING/MATGEN + use static-libs \ + && CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" cmake-utils_src_install -C TESTING/MATGEN }