public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/plasma/
@ 2022-06-02  1:23 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-06-02  1:23 UTC (permalink / raw
  To: gentoo-commits

commit:     473d4ede7e72f53122b8ab5bfb5df6a5cffda139
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Jun  1 11:06:28 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Jun  2 01:23:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=473d4ede

sci-libs/plasma: new package, add 21.8.29

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 sci-libs/plasma/Manifest              |  1 +
 sci-libs/plasma/metadata.xml          | 15 ++++++++++
 sci-libs/plasma/plasma-21.8.29.ebuild | 54 +++++++++++++++++++++++++++++++++++
 3 files changed, 70 insertions(+)

diff --git a/sci-libs/plasma/Manifest b/sci-libs/plasma/Manifest
new file mode 100644
index 000000000..b805bc355
--- /dev/null
+++ b/sci-libs/plasma/Manifest
@@ -0,0 +1 @@
+DIST plasma-21.8.29.tar.gz 596586 BLAKE2B c41e8b86827ec0137b35bd882ae09acfdcf81f75dc45c17be79b2f08f237ce9c82c58fb4815f1c7b285df7ce9f7e3308d1fb7d0b5596dbb72d2583ccae9af8fd SHA512 4f56d4e31c2fdf52d4504856d3fb54f49f5f1b946e477a0125b24eabf11737064e81ba4fd87e6c3d480259e8a97bdcf13d7db2925a55e4a5ef595b2fbb94d684

diff --git a/sci-libs/plasma/metadata.xml b/sci-libs/plasma/metadata.xml
new file mode 100644
index 000000000..690a401a9
--- /dev/null
+++ b/sci-libs/plasma/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <maintainer type="person">
+        <email>lssndrbarbieri@gmail.com</email>
+        <name>Alessandro Barbieri</name>
+    </maintainer>
+    <upstream>
+        <bugs-to>https://bitbucket.org/icl/plasma/issues</bugs-to>
+        <remote-id type="bitbucket">icl/plasma</remote-id>
+        <remote-id type="github">NLAFET/plasma</remote-id>
+    </upstream>
+    <longdescription lang="en">PLASMA is a software package for solving problems in dense linear algebra using OpenMP. PLASMA provides implementations of state-of-the-art algorithms using cutting-edge task scheduling techniques. PLASMA currently offers a collection of routines for solving linear systems of equations, least squares problems, eigenvalue problems, and singular value problems.</longdescription>
+    <!--<use><flag name="magma">Use magma as dependency</flag></use>-->
+</pkgmetadata>

diff --git a/sci-libs/plasma/plasma-21.8.29.ebuild b/sci-libs/plasma/plasma-21.8.29.ebuild
new file mode 100644
index 000000000..7ef115592
--- /dev/null
+++ b/sci-libs/plasma/plasma-21.8.29.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake edo python-any-r1
+
+DESCRIPTION="PLASMA parallel library for dense linear algebra"
+HOMEPAGE="
+	https://bitbucket.org/icl/plasma
+	https://github.com/NLAFET/plasma
+"
+SRC_URI="https://bitbucket.org/icl/plasma/downloads/${P}.tar.gz"
+
+KEYWORDS="~amd64"
+LICENSE="BSD-2"
+SLOT="0"
+# TODO: magma (requires cuda)
+
+RDEPEND="
+	dev-lang/lua
+	virtual/blas
+	virtual/cblas
+	virtual/lapack
+	virtual/lapacke
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${PYTHON_DEPS}
+	virtual/pkgconfig
+"
+
+DOCS=( README.md ChangeLog )
+
+src_prepare() {
+#	edo rm -r tools/lua*
+	edo sed -e "s|DESTINATION lib|DESTINATION $(get_libdir)|g" -i CMakeLists.txt
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DPLASMA_DETECT_LUA=ON
+		-DPLASMA_DETECT_MAGMA=OFF
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/plasma/
@ 2022-12-14 14:45 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-12-14 14:45 UTC (permalink / raw
  To: gentoo-commits

commit:     30d66f2c57a7c81cbb176e92e03128559afb6bfc
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Dec 14 14:31:49 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Dec 14 14:31:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=30d66f2c

sci-libs/plasma: remove python requirements

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 .../plasma/{plasma-21.8.29.ebuild => plasma-21.8.29-r1.ebuild}   | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/sci-libs/plasma/plasma-21.8.29.ebuild b/sci-libs/plasma/plasma-21.8.29-r1.ebuild
similarity index 88%
rename from sci-libs/plasma/plasma-21.8.29.ebuild
rename to sci-libs/plasma/plasma-21.8.29-r1.ebuild
index 7ef115592..1eaa70701 100644
--- a/sci-libs/plasma/plasma-21.8.29.ebuild
+++ b/sci-libs/plasma/plasma-21.8.29-r1.ebuild
@@ -3,9 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake edo python-any-r1
+inherit cmake edo
 
 DESCRIPTION="PLASMA parallel library for dense linear algebra"
 HOMEPAGE="
@@ -27,10 +25,7 @@ RDEPEND="
 	virtual/lapacke
 "
 DEPEND="${RDEPEND}"
-BDEPEND="
-	${PYTHON_DEPS}
-	virtual/pkgconfig
-"
+BDEPEND="virtual/pkgconfig"
 
 DOCS=( README.md ChangeLog )
 


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-12-14 14:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-14 14:45 [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/plasma/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2022-06-02  1:23 Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox