Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages /
sundials
Commits:
a689111a by Antonio Rojas at 2024-06-21T18:27:53+02:00
upgpkg: 7.1.0-1: Update to 7.1.0
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,16 +1,21 @@
pkgbase = sundials
pkgdesc = Suite of nonlinear differential/algebraic equation solvers
- pkgver = 7.0.0
- pkgrel = 2
+ pkgver = 7.1.0
+ pkgrel = 1
url = https://computing.llnl.gov/projects/sundials
arch = x86_64
- license = BSD
+ license = BSD-3-Clause
makedepends = cmake
makedepends = gcc-fortran
+ makedepends = git
makedepends = python
+ depends = gcc-libs
+ depends = glibc
depends = openmpi
depends = suitesparse
- source =
https://github.com/LLNL/sundials/archive/v7.0.0/sundials-7.0.0.tar.gz
- sha256sums =
63d1f76207161612f36f5017d8333e00e5297b0cd8cbc4628f5dd54102c763a6
+ optdepends = python-matplotlib: for some examples
+ optdepends = python-numpy: for some examples
+ source = git+https://github.com/LLNL/sundials#tag=v7.1.0
+ sha256sums =
4e7ac26e0a1af74b6556869cbcb6890b863e969eedacd4936a6dc1e68d2f6784
pkgname = sundials
=====================================
PKGBUILD
=====================================
@@ -2,22 +2,27 @@
# Contributor: Elmar Klausmeier <[email protected]>
pkgname=sundials
-pkgver=7.0.0
-pkgrel=2
+pkgver=7.1.0
+pkgrel=1
pkgdesc='Suite of nonlinear differential/algebraic equation solvers'
arch=(x86_64)
url='https://computing.llnl.gov/projects/sundials'
-license=(BSD)
-depends=(openmpi
+license=(BSD-3-Clause)
+depends=(gcc-libs
+ glibc
+ openmpi
suitesparse)
makedepends=(cmake
gcc-fortran
+ git
python)
-source=(https://github.com/LLNL/sundials/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('63d1f76207161612f36f5017d8333e00e5297b0cd8cbc4628f5dd54102c763a6')
+optdepends=('python-matplotlib: for some examples'
+ 'python-numpy: for some examples')
+source=(git+https://github.com/LLNL/sundials#tag=v$pkgver)
+sha256sums=('4e7ac26e0a1af74b6556869cbcb6890b863e969eedacd4936a6dc1e68d2f6784')
build() {
- cmake -B build -S $pkgname-$pkgver \
+ cmake -B build -S $pkgname \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_STATIC_LIBS=OFF \
-DENABLE_MPI=ON \
@@ -33,5 +38,5 @@ build() {
package() {
DESTDIR="$pkgdir" cmake --install build
- install -Dm644 $pkgname-$pkgver/LICENSE -t
"$pkgdir"/usr/share/licenses/$pkgname
+ install -Dm644 $pkgname/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/sundials/-/commit/a689111ad243530a2d07554acfc80a51a48a5b00
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/sundials/-/commit/a689111ad243530a2d07554acfc80a51a48a5b00
You're receiving this email because of your account on gitlab.archlinux.org.