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 5EEEF138825 for ; Mon, 10 Nov 2014 23:34:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA847E09CD; Mon, 10 Nov 2014 23:33:58 +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 765BAE09CD for ; Mon, 10 Nov 2014 23:33:58 +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 6DB58340523 for ; Mon, 10 Nov 2014 23:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3BB89E0C for ; Mon, 10 Nov 2014 23:33:55 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1415662417.18d61d4db02599198a3bac4e64f41d509e563cc7.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: virtual/cblas/ X-VCS-Repository: proj/sci X-VCS-Files: virtual/cblas/ChangeLog virtual/cblas/cblas-2.0-r3.ebuild X-VCS-Directories: virtual/cblas/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 18d61d4db02599198a3bac4e64f41d509e563cc7 X-VCS-Branch: master Date: Mon, 10 Nov 2014 23:33:55 +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: 27e1ebf2-72d6-434b-90b4-32c9484a2cf6 X-Archives-Hash: fe9c7f5488772b7052206a4318d5ee03 commit: 18d61d4db02599198a3bac4e64f41d509e563cc7 Author: Christoph Junghans gentoo org> AuthorDate: Mon Nov 10 23:33:37 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Mon Nov 10 23:33:37 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=18d61d4d added multilib support (bug #528622) Package-Manager: portage-2.2.8-r2 --- virtual/cblas/ChangeLog | 5 +++++ virtual/cblas/cblas-2.0-r3.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/virtual/cblas/ChangeLog b/virtual/cblas/ChangeLog index fce9238..7c01c5f 100644 --- a/virtual/cblas/ChangeLog +++ b/virtual/cblas/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/virtual/cblas/ChangeLog,v 1.6 2010/01/11 10:56:05 ulm Exp $ +*cblas-2.0-r3 (10 Nov 2014) + + 10 Nov 2014; Christoph Junghans +cblas-2.0-r3.ebuild: + added multilib support (bug #528622) + *cblas-2.0-r2 (13 Oct 2014) 13 Oct 2014; Mark Wright +cblas-2.0-r2.ebuild: diff --git a/virtual/cblas/cblas-2.0-r3.ebuild b/virtual/cblas/cblas-2.0-r3.ebuild new file mode 100644 index 0000000..b7a94e8 --- /dev/null +++ b/virtual/cblas/cblas-2.0-r3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit multilib-build + +DESCRIPTION="Virtual for BLAS C implementation" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="int64" + +RDEPEND=" + int64? ( + || ( + >=sci-libs/openblas-0.2.11[int64,${MULTILIB_USEDEP}] + >=sci-libs/cblas-reference-20110218-r1[int64,${MULTILIB_USEDEP}] + ) + ) + || ( + >=sci-libs/cblas-reference-20110218-r1[int64?,${MULTILIB_USEDEP}] + >=sci-libs/openblas-0.2.11[int64?,${MULTILIB_USEDEP}] + >=sci-libs/gsl-1.16-r2[-cblas-external,${MULTILIB_USEDEP}] + abi_x86_64? ( !abi_x86_32? ( || ( + >=sci-libs/gotoblas2-1.13 + >=sci-libs/atlas-3.9.34 + >=sci-libs/mkl-10.3 + ) ) ) + )" +DEPEND=""