summaryrefslogtreecommitdiff
path: root/sci-libs/clblas
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sci-libs/clblas
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'sci-libs/clblas')
-rw-r--r--sci-libs/clblas/Manifest1
-rw-r--r--sci-libs/clblas/clblas-2.12-r2.ebuild83
-rw-r--r--sci-libs/clblas/files/clblas-2.12-Detect-CBLAS-when-building-the-client.patch24
-rw-r--r--sci-libs/clblas/files/clblas-2.12-disable-multilib-cflags.patch26
-rw-r--r--sci-libs/clblas/files/clblas-2.12-fix-doxygen-output-dir.patch16
-rw-r--r--sci-libs/clblas/files/clblas-2.12-fix-pthread-linkage.patch18
-rw-r--r--sci-libs/clblas/files/clblas-2.12-reproducible-build.patch17
-rw-r--r--sci-libs/clblas/files/clblas-2.12-use-boost-dynamic-libs.patch16
-rw-r--r--sci-libs/clblas/files/clblas-2.12-use-system-mathjax.patch18
-rw-r--r--sci-libs/clblas/metadata.xml29
10 files changed, 0 insertions, 248 deletions
diff --git a/sci-libs/clblas/Manifest b/sci-libs/clblas/Manifest
deleted file mode 100644
index 5ccea72193cb..000000000000
--- a/sci-libs/clblas/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST clblas-2.12.tar.gz 1157445 BLAKE2B 27352a7775db94808ce21f2b4a39fe505d4f37be4305dc7fb5a4068a86d3f51a9e4863931f634150762b31256f9f7e8e5d0d8b70f404b5a9ddb8a489b800aea6 SHA512 5d9b0c58adde69e83d95e9c713e0cdc5f64785fe7e05553a14c57fa483c4ef39e9dc780c26880a7f15924967d5ce4ea29035c29d63eac7ee5a2ae5ddacac2b72
diff --git a/sci-libs/clblas/clblas-2.12-r2.ebuild b/sci-libs/clblas/clblas-2.12-r2.ebuild
deleted file mode 100644
index 504863aa4bb9..000000000000
--- a/sci-libs/clblas/clblas-2.12-r2.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DOCS_BUILDER="doxygen"
-DOCS_DEPEND="<dev-libs/mathjax-3"
-DOCS_CONFIG_NAME="clBLAS.doxy"
-DOCS_DIR="doc"
-
-inherit python-any-r1 toolchain-funcs cmake docs
-
-MYPN="clBLAS"
-
-DESCRIPTION="Library containing BLAS routines for OpenCL"
-HOMEPAGE="https://github.com/clMathLibraries/clBLAS"
-SRC_URI="https://github.com/clMathLibraries/${MYPN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MYPN}-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0/2" # soname version
-KEYWORDS="~amd64 ~riscv ~x86"
-IUSE="+client examples ktest performance test"
-# the testsuite is hopelessly broken and upstream is pretty much dead
-RESTRICT="test"
-
-RDEPEND="
- virtual/opencl
- client? ( virtual/cblas )
-"
-DEPEND="
- ${RDEPEND}
- dev-util/opencl-headers
-"
-BDEPEND="${PYTHON_DEPS}
- client? ( virtual/pkgconfig )
-"
-
-CMAKE_USE_DIR="${S}/src"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.12-disable-multilib-cflags.patch
- "${FILESDIR}"/${PN}-2.12-fix-pthread-linkage.patch
- "${FILESDIR}"/${PN}-2.12-fix-doxygen-output-dir.patch
- "${FILESDIR}"/${PN}-2.12-use-system-mathjax.patch
- "${FILESDIR}"/${PN}-2.12-reproducible-build.patch
- "${FILESDIR}"/${PN}-2.12-use-boost-dynamic-libs.patch
- "${FILESDIR}"/${PN}-2.12-Detect-CBLAS-when-building-the-client.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_RUNTIME=ON
- -DBUILD_SAMPLE=OFF
- # tests are beyond repair
- -DBUILD_TEST=OFF
- -DBUILD_CLIENT=$(usex client)
- -DBUILD_KTEST=$(usex ktest)
- -DBUILD_PERFORMANCE=$(usex performance)
- -DPYTHON_EXECUTABLE="${PYTHON}"
- )
- use client && mycmakeargs+=(
- -DNetlib_LIBRARIES="$($(tc-getPKG_CONFIG) --libs cblas blas)"
- )
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- docs_compile
-}
-
-src_install() {
- cmake_src_install
-
- dodoc CHANGELOG CONTRIBUTING.md NOTICE README.md
- if use examples; then
- docinto examples
- dodoc -r src/samples/.
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}
diff --git a/sci-libs/clblas/files/clblas-2.12-Detect-CBLAS-when-building-the-client.patch b/sci-libs/clblas/files/clblas-2.12-Detect-CBLAS-when-building-the-client.patch
deleted file mode 100644
index bfe94dfd7074..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-Detect-CBLAS-when-building-the-client.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Date: Sat, 21 Jan 2017 16:49:27 +0000
-Subject: Detect CBLAS when building the client
-
----
- src/CMakeLists.txt | 5 +----
- 1 file changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index bf351c1..28d6a60 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -267,10 +267,7 @@ if( BUILD_TEST )
- endif( )
-
- if( BUILD_CLIENT )
-- if( NETLIB_FOUND )
-- else( )
-- message( WARNING "Not find Netlib; BUILD_CLIENT needs the Netlib CBLAS library" )
-- endif()
-+ find_package( Netlib COMPONENTS BLAS REQUIRED )
- endif()
-
-
diff --git a/sci-libs/clblas/files/clblas-2.12-disable-multilib-cflags.patch b/sci-libs/clblas/files/clblas-2.12-disable-multilib-cflags.patch
deleted file mode 100644
index 8e8f14871ef1..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-disable-multilib-cflags.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Description: disable multilib flags
-Author: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Forwarded: not-needed
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -305,18 +305,6 @@
- # Don't use -rpath.
- set(CMAKE_SKIP_RPATH ON CACHE BOOL "Skip RPATH" FORCE)
-
-- # Need to determine the target machine of the C compiler, because
-- # the '-m32' and '-m64' flags are supported on x86 but not on e.g. ARM.
-- exec_program( "${CMAKE_C_COMPILER} -dumpmachine"
-- OUTPUT_VARIABLE CMAKE_C_COMPILER_MACHINE )
-- message( STATUS "CMAKE_C_COMPILER_MACHINE: ${CMAKE_C_COMPILER_MACHINE}" )
-- # The "86" regular expression matches x86, x86_64, i686, etc.
-- if(${CMAKE_C_COMPILER_MACHINE} MATCHES "86")
-- set(CMAKE_C_FLAGS "-m${TARGET_PLATFORM} ${CMAKE_C_FLAGS}")
-- set(CMAKE_CXX_FLAGS "-m${TARGET_PLATFORM} ${CMAKE_CXX_FLAGS}")
-- set(CMAKE_Fortran_FLAGS "-m${TARGET_PLATFORM} ${CMAKE_Fortran_FLAGS}")
-- endif()
--
- if(TARGET_PLATFORM EQUAL 32)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-builtin")
- endif()
diff --git a/sci-libs/clblas/files/clblas-2.12-fix-doxygen-output-dir.patch b/sci-libs/clblas/files/clblas-2.12-fix-doxygen-output-dir.patch
deleted file mode 100644
index 31abb89b1c3a..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-fix-doxygen-output-dir.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: use system mathjax instead of remote
-Author: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Forwarded: not-needed
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/doc/clBLAS.doxy
-+++ b/doc/clBLAS.doxy
-@@ -52,7 +52,7 @@
- # If a relative path is entered, it will be relative to the location
- # where doxygen was started. If left blank the current directory will be used.
-
--OUTPUT_DIRECTORY = ..\..\bin\clBLAS.doxy
-+OUTPUT_DIRECTORY =
-
- # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
- # 4096 sub-directories (in 2 levels) under the output directory of each output
diff --git a/sci-libs/clblas/files/clblas-2.12-fix-pthread-linkage.patch b/sci-libs/clblas/files/clblas-2.12-fix-pthread-linkage.patch
deleted file mode 100644
index c920c8140d8d..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-fix-pthread-linkage.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: fix missing linkage with pthread
-Author: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Forwarded: no
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/src/library/CMakeLists.txt
-+++ b/src/library/CMakeLists.txt
-@@ -889,6 +889,10 @@
- set_target_properties( clBLAS PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/staging" )
- target_link_libraries(clBLAS ${OPENCL_LIBRARIES} ${MATH_LIBRARY} ${THREAD_LIBRARY})
-
-+set(THREADS_PREFER_PTHREAD_FLAG ON)
-+find_package(Threads REQUIRED)
-+target_link_libraries(clBLAS ${CMAKE_THREAD_LIBS_INIT})
-+
- # CPack configuration; include the executable into the package
- install( TARGETS clBLAS
- EXPORT Library
diff --git a/sci-libs/clblas/files/clblas-2.12-reproducible-build.patch b/sci-libs/clblas/files/clblas-2.12-reproducible-build.patch
deleted file mode 100644
index 9d7c2b771e41..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-reproducible-build.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: make package build reproducible
- By disabling the HTML timestamp setting in Doxygen.
-Author: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Forwarded: not-needed
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/doc/clBLAS.doxy
-+++ b/doc/clBLAS.doxy
-@@ -974,7 +974,7 @@
- # page will contain the date and time when the page was generated. Setting
- # this to NO can help when comparing the output of multiple runs.
-
--HTML_TIMESTAMP = YES
-+HTML_TIMESTAMP = NO
-
- # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
- # documentation will contain sections that can be hidden and shown after the
diff --git a/sci-libs/clblas/files/clblas-2.12-use-boost-dynamic-libs.patch b/sci-libs/clblas/files/clblas-2.12-use-boost-dynamic-libs.patch
deleted file mode 100644
index 64388c90dc48..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-use-boost-dynamic-libs.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: use Boost shared libraries instead of static
-Author: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Forwarded: no
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -279,7 +279,7 @@
-
- # Find Boost on the system, and configure the type of boost build we want
- set( Boost_USE_MULTITHREADED ON )
--set( Boost_USE_STATIC_LIBS ON )
-+set( Boost_USE_STATIC_LIBS OFF )
- set( Boost_DETAILED_FAILURE_MSG ON )
- # set( Boost_DEBUG ON )
- set( Boost_ADDITIONAL_VERSIONS "1.44.0" "1.44" "1.47.0" "1.47" "1.60.0" "1.60" )
diff --git a/sci-libs/clblas/files/clblas-2.12-use-system-mathjax.patch b/sci-libs/clblas/files/clblas-2.12-use-system-mathjax.patch
deleted file mode 100644
index 775a669e96a8..000000000000
--- a/sci-libs/clblas/files/clblas-2.12-use-system-mathjax.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: fix output directory for documentation
- Use default doxygen directory, i.e. under docs/html, rather than the
- inappropriate path set by upstream.
-Author: Ghislain Antony Vaillant <ghisvail@gmail.com>
-Forwarded: no
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/doc/clBLAS.doxy
-+++ b/doc/clBLAS.doxy
-@@ -1223,7 +1223,7 @@
- # installing MathJax. However, it is strongly recommended to install a local
- # copy of MathJax from http://www.mathjax.org before deployment.
-
--MATHJAX_RELPATH = http://www.mathjax.org/mathjax
-+MATHJAX_RELPATH = /usr/share/javascript/mathjax
-
- # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension
- # names that should be enabled during MathJax rendering.
diff --git a/sci-libs/clblas/metadata.xml b/sci-libs/clblas/metadata.xml
deleted file mode 100644
index 20731f32a8e9..000000000000
--- a/sci-libs/clblas/metadata.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription>
- clBLAS is the code for the OpenCL BLAS portion of clMath. The
- complete set of BLAS level 1, 2 and 3 routines is implemented. See
- Netlib BLAS for the list of supported routines. In addition to GPU
- devices, the library also supports running on CPU devices to
- facilitate debugging and multicore programming.
- </longdescription>
- <use>
- <flag name="client">
- Build a command line clBLAS client program.
- </flag>
- <flag name="ktest">
- A command line tool for testing single clBLAS kernel.
- </flag>
- <flag name="performance">
- Copy performance scripts that can measure and graph performance.
- </flag>
- </use>
- <upstream>
- <remote-id type="github">clMathLibraries/clBLAS</remote-id>
- </upstream>
-</pkgmetadata>