Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: virtual/scalapack/
Date: Mon, 28 Dec 2015 08:17:21
Message-Id: 1451290251.f3eb8aa2cafa7cd684d9f6612e7b819f0b3a8171.jlec@gentoo
1 commit: f3eb8aa2cafa7cd684d9f6612e7b819f0b3a8171
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 08:10:51 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 08:10:51 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f3eb8aa2
7
8 virtual/scalapack: Version Bump, add ABI_x86 and int64 support
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 virtual/scalapack/metadata.xml | 4 ++++
14 virtual/scalapack/scalapack-2.0.2.ebuild | 27 +++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/virtual/scalapack/metadata.xml b/virtual/scalapack/metadata.xml
18 index f665797..c025a5b 100644
19 --- a/virtual/scalapack/metadata.xml
20 +++ b/virtual/scalapack/metadata.xml
21 @@ -7,4 +7,8 @@
22 version number corresponds to the version of the ScaLAPACK reference
23 implementation.
24 </longdescription>
25 + <use>
26 + <flag name="int64">Add eselect module for blas libraries built with 64 bits
27 + integer ABI</flag>
28 + </use>
29 </pkgmetadata>
30
31 diff --git a/virtual/scalapack/scalapack-2.0.2.ebuild b/virtual/scalapack/scalapack-2.0.2.ebuild
32 new file mode 100644
33 index 0000000..a4ff0bc
34 --- /dev/null
35 +++ b/virtual/scalapack/scalapack-2.0.2.ebuild
36 @@ -0,0 +1,27 @@
37 +# Copyright 1999-2015 Gentoo Foundation
38 +# Distributed under the terms of the GNU General Public License v2
39 +# $Id$
40 +
41 +EAPI=5
42 +
43 +MULTILIB_COMPAT=( abi_x86_{32,64} )
44 +
45 +inherit multilib-build
46 +
47 +DESCRIPTION="Virtual for ScaLAPACK implementation"
48 +HOMEPAGE=""
49 +SRC_URI=""
50 +
51 +LICENSE=""
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86 ~amd64-linux"
54 +IUSE="doc int64"
55 +
56 +RDEPEND="
57 + || (
58 + >=sci-libs/scalapack-${PV}
59 + sci-libs/mkl[int64?,${MULTILIB_USEDEP}]
60 + )
61 + int64? ( sci-libs/mkl[int64,${MULTILIB_USEDEP}] )
62 + doc? ( >=app-doc/scalapack-docs-2.0 )"
63 +DEPEND=""