Date: Wednesday, February 1, 2023 @ 12:29:53
Author: arojas
Revision: 467725
archrelease: copy trunk to testing-x86_64
Added:
lapack/repos/testing-x86_64/
lapack/repos/testing-x86_64/LICENSE.blas
(from rev 467724, lapack/trunk/LICENSE.blas)
lapack/repos/testing-x86_64/PKGBUILD
(from rev 467724, lapack/trunk/PKGBUILD)
--------------+
LICENSE.blas | 19 ++++++++
PKGBUILD | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 146 insertions(+)
Copied: lapack/repos/testing-x86_64/LICENSE.blas (from rev 467724,
lapack/trunk/LICENSE.blas)
===================================================================
--- testing-x86_64/LICENSE.blas (rev 0)
+++ testing-x86_64/LICENSE.blas 2023-02-01 12:29:53 UTC (rev 467725)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+ implementation software?
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors.
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following:
+
+If you modify the source for these routines we ask that you change the
+name of the routine and comment the changes made to the original.
+
+We will gladly answer any questions regarding the software. If a
+modification is done, however, it is the responsibility of the person
+who modified the routine to provide support.
Copied: lapack/repos/testing-x86_64/PKGBUILD (from rev 467724,
lapack/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-02-01 12:29:53 UTC (rev 467725)
@@ -0,0 +1,127 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: damir <[email protected]>
+# Contributor: Jason Taylor <[email protected]>
+
+pkgbase=lapack
+pkgname=(lapack blas cblas lapacke lapack64 blas64 cblas64 lapacke64
lapack-doc)
+pkgver=3.11.0
+pkgrel=2
+url='https://www.netlib.org/lapack'
+pkgdesc='Linear Algebra PACKage'
+makedepends=(gcc-fortran cmake python doxygen)
+arch=(x86_64)
+license=(custom)
+source=(https://github.com/Reference-LAPACK/lapack/archive/v$pkgver/$pkgname-$pkgver.tar.gz
LICENSE.blas)
+sha256sums=('4b9ba79bfd4921ca820e83979db76ab3363155709444a787979e81c22285ffa9'
+ '2420cd1331c5754071966389b26e6196c5cb086a2ade0080953af62e0c6d4107')
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DBUILD_SHARED_LIBS=ON \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_Fortran_COMPILER=gfortran \
+ -DLAPACKE_WITH_TMG=ON \
+ -DCBLAS=ON \
+ -DBUILD_DEPRECATED=ON
+ cmake --build build
+
+ cmake -B build64 -S $pkgname-$pkgver \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DBUILD_SHARED_LIBS=ON \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_Fortran_COMPILER=gfortran \
+ -DLAPACKE_WITH_TMG=ON \
+ -DCBLAS=ON \
+ -DBUILD_DEPRECATED=ON \
+ -DBUILD_INDEX64=ON
+ cmake --build build64
+
+# Build man pages
+ cd $pkgname-$pkgver
+ doxygen DOCS/Doxyfile_man
+}
+
+package_lapack() {
+ depends=(blas)
+
+ DESTDIR="$pkgdir" cmake --install build
+
+ rm -r "$pkgdir"/usr/lib/{libblas.*,libcblas.*,liblapacke.*}
+ rm -r "$pkgdir"/usr/lib/pkgconfig/{blas.*,cblas.*,lapacke.*}
+ rm -r "$pkgdir"/usr/lib/cmake/{cblas*,lapacke*}
+ rm -r "$pkgdir"/usr/include
+}
+
+package_blas() {
+ pkgdesc='Basic Linear Algebra Subprograms'
+ depends=(gcc-libs)
+
+ DESTDIR="$pkgdir" cmake --install build/BLAS
+
+ install -Dm644 LICENSE.blas -t "$pkgdir"/usr/share/licenses/blas/
+}
+
+package_cblas() {
+ pkgdesc='C interface to BLAS'
+ depends=(blas)
+
+ DESTDIR="$pkgdir" cmake --install build/CBLAS
+}
+
+package_lapacke() {
+ pkgdesc='C interface to LAPACK'
+ depends=(lapack)
+
+ DESTDIR="$pkgdir" cmake --install build/LAPACKE
+}
+
+package_lapack64() {
+ pkgdesc='Linear Algebra PACKage (64-bit integers)'
+ depends=(blas64)
+
+ DESTDIR="$pkgdir" cmake --install build64
+
+ rm -r "$pkgdir"/usr/lib/{libblas64.*,libcblas64.*,liblapacke64.*}
+ rm -r "$pkgdir"/usr/lib/pkgconfig/{blas64.*,cblas64.*,lapacke64.*}
+ rm -r "$pkgdir"/usr/lib/cmake/{cblas*,lapacke*}
+ rm -r "$pkgdir"/usr/include
+}
+
+package_blas64() {
+ pkgdesc='Basic Linear Algebra Subprograms (64-bit integers)'
+ depends=(gcc-libs)
+
+ DESTDIR="$pkgdir" cmake --install build64/BLAS
+
+ install -Dm644 LICENSE.blas -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+package_cblas64() {
+ pkgdesc='C interface to BLAS (64-bit integers)'
+ depends=(blas64)
+ optdepends=('cblas: development headers')
+
+ DESTDIR="$pkgdir" cmake --install build64/CBLAS
+ rm -r "$pkgdir"/usr/include # Provided by cblas
+}
+
+package_lapacke64() {
+ pkgdesc='C interface to LAPACK (64-bit integers)'
+ depends=(lapack64)
+ optdepends=('lapacke: development headers')
+
+ DESTDIR="$pkgdir" cmake --install build64/LAPACKE
+ rm -r "$pkgdir"/usr/include # Provided by lapacke
+}
+
+package_lapack-doc() {
+ pkgdesc='Man pages for BLAS/LAPACK'
+
+ mkdir -p "$pkgdir"/usr/share
+ cp -r lapack-$pkgver/DOCS/man "$pkgdir"/usr/share
+ rm "$pkgdir"/usr/share/man/man3/{MIN,MAX}.3 # conflict with man-pages
+}