Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages / 
lapack


Commits:
d4a382ad by Felix Pehla at 2026-03-02T13:16:41+01:00
PKGBUILD: remove gcc-libs dependency

https://archlinux.org/todo/gcc-libs-deprecation/

- - - - -


2 changed files:

- .SRCINFO
- PKGBUILD


Changes:

=====================================
.SRCINFO
=====================================
@@ -15,8 +15,9 @@ pkgbase = lapack
 
 pkgname = blas
        pkgdesc = Basic Linear Algebra Subprograms
-       depends = gcc-libs
        depends = glibc
+       depends = libgcc
+       depends = libgfortran
 
 pkgname = cblas
        pkgdesc = C interface to BLAS
@@ -25,8 +26,9 @@ pkgname = cblas
 
 pkgname = lapack
        depends = blas
-       depends = gcc-libs
        depends = glibc
+       depends = libgcc
+       depends = libgfortran
 
 pkgname = lapacke
        pkgdesc = C interface to LAPACK
@@ -35,8 +37,9 @@ pkgname = lapacke
 
 pkgname = blas64
        pkgdesc = Basic Linear Algebra Subprograms (64-bit integers)
-       depends = gcc-libs
        depends = glibc
+       depends = libgcc
+       depends = libgfortran
 
 pkgname = cblas64
        pkgdesc = C interface to BLAS (64-bit integers)
@@ -47,8 +50,9 @@ pkgname = cblas64
 pkgname = lapack64
        pkgdesc = Linear Algebra PACKage (64-bit integers)
        depends = blas64
-       depends = gcc-libs
        depends = glibc
+       depends = libgcc
+       depends = libgfortran
 
 pkgname = lapacke64
        pkgdesc = C interface to LAPACK (64-bit integers)


=====================================
PKGBUILD
=====================================
@@ -54,8 +54,9 @@ build() {
 
 package_lapack() {
   depends=(blas
-           gcc-libs
-           glibc)
+           glibc
+           libgcc
+           libgfortran)
   
   DESTDIR="$pkgdir" cmake --install build
   install -Dm644 $pkgbase/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
@@ -68,8 +69,9 @@ package_lapack() {
 
 package_blas() {
   pkgdesc='Basic Linear Algebra Subprograms'
-  depends=(gcc-libs
-           glibc)
+  depends=(glibc
+           libgcc
+           libgfortran)
 
   DESTDIR="$pkgdir" cmake --install build/BLAS
   install -Dm644 $pkgbase/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
@@ -96,8 +98,9 @@ package_lapacke() {
 package_lapack64() {
   pkgdesc='Linear Algebra PACKage (64-bit integers)'
   depends=(blas64
-           gcc-libs
-           glibc)
+           glibc
+           libgcc
+           libgfortran)
 
   DESTDIR="$pkgdir" cmake --install build64
   install -Dm644 $pkgbase/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
@@ -110,8 +113,9 @@ package_lapack64() {
 
 package_blas64() {
   pkgdesc='Basic Linear Algebra Subprograms (64-bit integers)'
-  depends=(gcc-libs
-           glibc)
+  depends=(glibc
+           libgcc
+           libgfortran)
 
   DESTDIR="$pkgdir" cmake --install build64/BLAS
   install -Dm644 $pkgbase/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lapack/-/commit/d4a382adc16a41b112306ae9c05508aa4a94999c

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/lapack/-/commit/d4a382adc16a41b112306ae9c05508aa4a94999c
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to