Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: virtual/cblas/
Date: Wed, 12 Oct 2016 06:30:46
Message-Id: 1474747831.2b673b5657d4110fdd86130f9442212b6f8a6344.marbre@gentoo
1 commit: 2b673b5657d4110fdd86130f9442212b6f8a6344
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 20:00:09 2016 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Sat Sep 24 20:10:31 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2b673b56
7
8 virtual/cblas: Add version 3.6-r100 to reflect upstream numbering
9
10 blas/cblas and lapack nowadays have the same version numbering scheme.
11 Thus, provide a new virtual/cblas-3.6-r100 that ensures reference cblas
12 3.6.0 (or newer) compatibility.
13
14 Package-Manager: portage-2.2.28
15
16 virtual/cblas/cblas-3.6-r100.ebuild | 37 +++++++++++++++++++++++++++++++++++++
17 1 file changed, 37 insertions(+)
18
19 diff --git a/virtual/cblas/cblas-3.6-r100.ebuild b/virtual/cblas/cblas-3.6-r100.ebuild
20 new file mode 100644
21 index 0000000..2b5f942
22 --- /dev/null
23 +++ b/virtual/cblas/cblas-3.6-r100.ebuild
24 @@ -0,0 +1,37 @@
25 +# Copyright 1999-2016 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Id$
28 +
29 +EAPI=6
30 +
31 +MULTILIB_COMPAT=( abi_x86_{32,64} )
32 +
33 +inherit multilib-build
34 +
35 +DESCRIPTION="Virtual for BLAS C implementation"
36 +HOMEPAGE=""
37 +SRC_URI=""
38 +
39 +LICENSE=""
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
42 +IUSE="int64"
43 +
44 +RDEPEND="
45 + || (
46 + >=sci-libs/cblas-reference-20151113-r100[int64?,${MULTILIB_USEDEP}]
47 + >=sci-libs/openblas-0.2.11[int64?,${MULTILIB_USEDEP}]
48 + >=sci-libs/gsl-1.16-r2[-cblas-external,${MULTILIB_USEDEP}]
49 + >=sci-libs/gotoblas2-1.13[int64?,${MULTILIB_USEDEP}]
50 + sci-libs/mkl[int64?,${MULTILIB_USEDEP}]
51 + abi_x86_64? ( !abi_x86_32? ( >=sci-libs/atlas-3.9.34 ) )
52 + )
53 + int64? (
54 + || (
55 + >=sci-libs/openblas-0.2.11[int64,${MULTILIB_USEDEP}]
56 + >=sci-libs/cblas-reference-20110218-r1[int64,${MULTILIB_USEDEP}]
57 + >=sci-libs/gotoblas2-1.13[int64,${MULTILIB_USEDEP}]
58 + sci-libs/mkl[int64,${MULTILIB_USEDEP}]
59 + )
60 + )"
61 +DEPEND=""