* [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
@ 2012-11-29 0:09 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2012-11-29 0:09 UTC (permalink / raw
To: gentoo-commits
commit: 74f60e1643bc61885d9639eb8c4c8a104dc394bc
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 29 00:09:08 2012 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Nov 29 00:09:08 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=74f60e16
sci-libs/tmglib: Initial import
Package-Manager: portage-2.2.01.21313-prefix
---
sci-libs/tmglib/ChangeLog | 9 +++++
sci-libs/tmglib/metadata.xml | 9 +++++
sci-libs/tmglib/tmglib-3.4.2.ebuild | 59 +++++++++++++++++++++++++++++++++++
3 files changed, 77 insertions(+), 0 deletions(-)
diff --git a/sci-libs/tmglib/ChangeLog b/sci-libs/tmglib/ChangeLog
new file mode 100644
index 0000000..2bfcf4a
--- /dev/null
+++ b/sci-libs/tmglib/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/tmglib
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*tmglib-3.4.2 (29 Nov 2012)
+
+ 29 Nov 2012; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,
+ +tmglib-3.4.2.ebuild:
+ sci-libs/tmglib: Initial import
diff --git a/sci-libs/tmglib/metadata.xml b/sci-libs/tmglib/metadata.xml
new file mode 100644
index 0000000..ea03b28
--- /dev/null
+++ b/sci-libs/tmglib/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+ This is a library to generate matrices to test LAPACK
+ implementations.
+</longdescription>
+</pkgmetadata>
diff --git a/sci-libs/tmglib/tmglib-3.4.2.ebuild b/sci-libs/tmglib/tmglib-3.4.2.ebuild
new file mode 100644
index 0000000..62dda7a
--- /dev/null
+++ b/sci-libs/tmglib/tmglib-3.4.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit cmake-utils fortran-2
+
+MYP=lapack-3.4.2
+
+DESCRIPTION="Test Matrix Generator library for LAPACK"
+HOMEPAGE="http://www.netlib.org/lapack/"
+SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="static-libs"
+
+RDEPEND="virtual/lapack"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+S="${WORKDIR}/${MYP}"
+
+src_prepare() {
+ use static-libs && mkdir "${WORKDIR}/${PN}_static"
+}
+
+src_configure() {
+ tmg_configure() {
+ local mycmakeargs=(
+ -DUSE_OPTIMIZED_BLAS=ON
+ -DUSE_OPTIMIZED_LAPACK=ON
+ -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
+ -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
+ -DTESTING=ON
+ $@
+ )
+ cmake-utils_src_configure
+ }
+
+ tmg_configure -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF
+ use static-libs && \
+ CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" tmg_configure \
+ -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON
+}
+
+src_compile() {
+ cmake-utils_src_compile -C TESTING/MATGEN
+ use static-libs && CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" \
+ cmake-utils_src_compile -C TESTING/MATGEN
+}
+
+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
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
@ 2013-02-22 16:03 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-02-22 16:03 UTC (permalink / raw
To: gentoo-commits
commit: 2d5c747245b4c322055003294fa0bb101dbb47d9
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 16:02:53 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 16:02:53 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2d5c7472
sci-libs/tmglib: Add missing dep on virtual/blas
Package-Manager: portage-2.2.0_alpha163
---
sci-libs/tmglib/ChangeLog | 6 +++++-
sci-libs/tmglib/metadata.xml | 4 ++--
sci-libs/tmglib/tmglib-3.4.2.ebuild | 6 ++++--
3 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/sci-libs/tmglib/ChangeLog b/sci-libs/tmglib/ChangeLog
index 2bfcf4a..b923543 100644
--- a/sci-libs/tmglib/ChangeLog
+++ b/sci-libs/tmglib/ChangeLog
@@ -1,7 +1,11 @@
# ChangeLog for sci-libs/tmglib
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 22 Feb 2013; Justin Lecher <jlec@gentoo.org> tmglib-3.4.2.ebuild,
+ metadata.xml:
+ Add missing dep on virtual/blas
+
*tmglib-3.4.2 (29 Nov 2012)
29 Nov 2012; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,
diff --git a/sci-libs/tmglib/metadata.xml b/sci-libs/tmglib/metadata.xml
index ea03b28..4fe72b4 100644
--- a/sci-libs/tmglib/metadata.xml
+++ b/sci-libs/tmglib/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sci</herd>
-<longdescription lang="en">
+ <herd>sci</herd>
+ <longdescription lang="en">
This is a library to generate matrices to test LAPACK
implementations.
</longdescription>
diff --git a/sci-libs/tmglib/tmglib-3.4.2.ebuild b/sci-libs/tmglib/tmglib-3.4.2.ebuild
index 62dda7a..07fe7af 100644
--- a/sci-libs/tmglib/tmglib-3.4.2.ebuild
+++ b/sci-libs/tmglib/tmglib-3.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -17,7 +17,9 @@ SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
-RDEPEND="virtual/lapack"
+RDEPEND="
+ virtual/blas
+ virtual/lapack"
DEPEND="${RDEPEND}
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
@ 2014-01-28 19:01 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2014-01-28 19:01 UTC (permalink / raw
To: gentoo-commits
commit: c6a5bc93dd337ffbd26dd137ef3b18213aa5af87
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 9 17:26:55 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Dec 9 17:26:55 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c6a5bc93
sci-libs/tmglib: Version bump
Package-Manager: portage-2.2.7-prefix
---
sci-libs/tmglib/ChangeLog | 5 +++
sci-libs/tmglib/tmglib-3.5.0.ebuild | 61 +++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/sci-libs/tmglib/ChangeLog b/sci-libs/tmglib/ChangeLog
index b923543..54e33f9 100644
--- a/sci-libs/tmglib/ChangeLog
+++ b/sci-libs/tmglib/ChangeLog
@@ -2,6 +2,11 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*tmglib-3.5.0 (09 Dec 2013)
+
+ 09 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org> +tmglib-3.5.0.ebuild:
+ sci-libs/tmglib: Version bump
+
22 Feb 2013; Justin Lecher <jlec@gentoo.org> tmglib-3.4.2.ebuild,
metadata.xml:
Add missing dep on virtual/blas
diff --git a/sci-libs/tmglib/tmglib-3.5.0.ebuild b/sci-libs/tmglib/tmglib-3.5.0.ebuild
new file mode 100644
index 0000000..0c76283
--- /dev/null
+++ b/sci-libs/tmglib/tmglib-3.5.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils fortran-2
+
+MYP=lapack-${PV}
+
+DESCRIPTION="Test Matrix Generator library for LAPACK"
+HOMEPAGE="http://www.netlib.org/lapack/"
+SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="static-libs"
+
+RDEPEND="
+ virtual/blas
+ virtual/lapack"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+S="${WORKDIR}/${MYP}"
+
+src_prepare() {
+ use static-libs && mkdir "${WORKDIR}/${PN}_static"
+}
+
+src_configure() {
+ tmg_configure() {
+ local mycmakeargs=(
+ -DUSE_OPTIMIZED_BLAS=ON
+ -DUSE_OPTIMIZED_LAPACK=ON
+ -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
+ -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
+ -DTESTING=ON
+ $@
+ )
+ cmake-utils_src_configure
+ }
+
+ tmg_configure -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF
+ use static-libs && \
+ CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" tmg_configure \
+ -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON
+}
+
+src_compile() {
+ cmake-utils_src_compile -C TESTING/MATGEN
+ use static-libs && CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" \
+ cmake-utils_src_compile -C TESTING/MATGEN
+}
+
+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
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
@ 2015-11-30 18:33 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2015-11-30 18:33 UTC (permalink / raw
To: gentoo-commits
commit: a1fb6e9d2b23596ae7f5df600b789ca8b7ecd4d6
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 13:13:39 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> 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 <jlec <AT> 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
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
@ 2015-11-30 18:33 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2015-11-30 18:33 UTC (permalink / raw
To: gentoo-commits
commit: 7bef2d2f75737e2e890d9c947ab3c8c571fececa
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 14:49:57 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 14:49:57 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7bef2d2f
sci-libs/tmglib: Only require python for tests
Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-libs/tmglib/tmglib-3.5.0.ebuild | 7 ++++---
sci-libs/tmglib/tmglib-3.6.0.ebuild | 7 ++++---
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/sci-libs/tmglib/tmglib-3.5.0.ebuild b/sci-libs/tmglib/tmglib-3.5.0.ebuild
index 4b5358f..36512bd 100644
--- a/sci-libs/tmglib/tmglib-3.5.0.ebuild
+++ b/sci-libs/tmglib/tmglib-3.5.0.ebuild
@@ -17,14 +17,15 @@ SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
+IUSE="static-libs test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-RDEPEND="${PYTHON_DEPS}
+RDEPEND="
virtual/blas
virtual/lapack"
DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
virtual/pkgconfig"
S="${WORKDIR}/${MYP}"
diff --git a/sci-libs/tmglib/tmglib-3.6.0.ebuild b/sci-libs/tmglib/tmglib-3.6.0.ebuild
index cf243a5..4f66f45 100644
--- a/sci-libs/tmglib/tmglib-3.6.0.ebuild
+++ b/sci-libs/tmglib/tmglib-3.6.0.ebuild
@@ -17,14 +17,15 @@ SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
+IUSE="static-libs test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-RDEPEND="${PYTHON_DEPS}
+RDEPEND="
virtual/blas
virtual/lapack"
DEPEND="${RDEPEND}
+ test? ( ${PYTHON_DEPS} )
virtual/pkgconfig"
S="${WORKDIR}/${MYP}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
@ 2020-09-22 15:11 Aisha Tammy
0 siblings, 0 replies; 6+ messages in thread
From: Aisha Tammy @ 2020-09-22 15:11 UTC (permalink / raw
To: gentoo-commits
commit: daa9d7efd761ef2dd3c6e8a0e4869ffa94a9b3ed
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 15:11:25 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 15:11:43 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=daa9d7ef
sci-libs/tmglib: drop package
included in newer sci-libs/lapack in ::gentoo
(only needed for older sci-libs/lapack-reference)
not ported to newer python eclass
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sci-libs/tmglib/metadata.xml | 12 -------
sci-libs/tmglib/tmglib-3.5.0.ebuild | 65 -------------------------------------
sci-libs/tmglib/tmglib-3.6.0.ebuild | 65 -------------------------------------
3 files changed, 142 deletions(-)
diff --git a/sci-libs/tmglib/metadata.xml b/sci-libs/tmglib/metadata.xml
deleted file mode 100644
index cbd1ba7ba..000000000
--- a/sci-libs/tmglib/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
-This is a library to generate matrices to test LAPACK
-implementations.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-libs/tmglib/tmglib-3.5.0.ebuild b/sci-libs/tmglib/tmglib-3.5.0.ebuild
deleted file mode 100644
index b6be5eb1f..000000000
--- a/sci-libs/tmglib/tmglib-3.5.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils fortran-2 python-any-r1
-
-MYP=lapack-${PV}
-
-DESCRIPTION="Test Matrix Generator library for LAPACK"
-HOMEPAGE="http://www.netlib.org/lapack/"
-SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs test"
-
-REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- virtual/blas
- virtual/lapack"
-DEPEND="${RDEPEND}
- test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-S="${WORKDIR}/${MYP}"
-
-src_prepare() {
- use static-libs && mkdir "${WORKDIR}/${PN}_static"
-}
-
-src_configure() {
- tmg_configure() {
- local mycmakeargs=(
- -DUSE_OPTIMIZED_BLAS=ON
- -DUSE_OPTIMIZED_LAPACK=ON
- -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
- -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
- -DTESTING=ON
- $@
- )
- cmake-utils_src_configure
- }
-
- tmg_configure -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF
- use static-libs && \
- BUILD_DIR="${WORKDIR}/${PN}_static" tmg_configure \
- -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON
-}
-
-src_compile() {
- cmake-utils_src_compile -C TESTING/MATGEN
- use static-libs && BUILD_DIR="${WORKDIR}/${PN}_static" \
- cmake-utils_src_compile -C TESTING/MATGEN
-}
-
-src_install() {
- cmake-utils_src_install -C TESTING/MATGEN
- use static-libs && BUILD_DIR="${WORKDIR}/${PN}_static" \
- cmake-utils_src_install -C TESTING/MATGEN
-}
diff --git a/sci-libs/tmglib/tmglib-3.6.0.ebuild b/sci-libs/tmglib/tmglib-3.6.0.ebuild
deleted file mode 100644
index cac26b9df..000000000
--- a/sci-libs/tmglib/tmglib-3.6.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils fortran-2 python-any-r1
-
-MYP=lapack-${PV}
-
-DESCRIPTION="Test Matrix Generator library for LAPACK"
-HOMEPAGE="http://www.netlib.org/lapack/"
-SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs test"
-
-REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- virtual/blas
- virtual/lapack"
-DEPEND="${RDEPEND}
- test? ( ${PYTHON_DEPS} )
- virtual/pkgconfig"
-
-S="${WORKDIR}/${MYP}"
-
-src_prepare() {
- use static-libs && mkdir "${WORKDIR}/${PN}_static"
-}
-
-src_configure() {
- tmg_configure() {
- local mycmakeargs=(
- -DUSE_OPTIMIZED_BLAS=ON
- -DUSE_OPTIMIZED_LAPACK=ON
- -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
- -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
- -DTESTING=ON
- $@
- )
- cmake-utils_src_configure
- }
-
- tmg_configure -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF
- use static-libs && \
- BUILD_DIR="${WORKDIR}/${PN}_static" tmg_configure \
- -DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON
-}
-
-src_compile() {
- cmake-utils_src_compile -C TESTING/MATGEN
- use static-libs && BUILD_DIR="${WORKDIR}/${PN}_static" \
- cmake-utils_src_compile -C TESTING/MATGEN
-}
-
-src_install() {
- cmake-utils_src_install -C TESTING/MATGEN
- use static-libs \
- && BUILD_DIR="${WORKDIR}/${PN}_static" cmake-utils_src_install -C TESTING/MATGEN
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-09-22 15:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-28 19:01 [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/ Sebastien Fabbro
-- strict thread matches above, loose matches on Subject: below --
2020-09-22 15:11 Aisha Tammy
2015-11-30 18:33 Justin Lecher
2015-11-30 18:33 Justin Lecher
2013-02-22 16:03 Justin Lecher
2012-11-29 0:09 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox