summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgit user2023-12-14 10:53:37 +0100
committergit user2023-12-14 10:53:37 +0100
commit003dc853b811aeb8680a56ce481ded92e0cdfd56 (patch)
treefeb569bfcb125cd8fbeaf37d1fbbf514741cc611
parent29b8df77e8752951fac29f9eaf350f8e8ff6c681 (diff)
downloadaur-003dc853b811aeb8680a56ce481ded92e0cdfd56.tar.gz
Re-enabled `check()` since upstream has fixed some stuff.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD16
2 files changed, 10 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 154499982af0..a92c328c497f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = auto-07p-git
pkgdesc = Software for continuation and bifurcation problems in ordinary differential equations. Version 07p, latest git checkout. Environment variables can control the build (see PKGBUILD).
pkgver = 0.9.3+32.r.20230504.7042e6d
- pkgrel = 3
+ pkgrel = 4
url = http://cmvl.cs.concordia.ca/auto/
arch = aarch64
arch = armv7h
@@ -11,6 +11,7 @@ pkgbase = auto-07p-git
license = BSD
license = LGPL2.1
license = GPL2
+ checkdepends = python3
makedepends = git
makedepends = perl
makedepends = texlive-bin
diff --git a/PKGBUILD b/PKGBUILD
index a8b80229e16c..2a752012b66b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -48,7 +48,7 @@ _debiandfsgver=3
_debianver="${_debianmainver}+dfsg-${_debiandfsgver}"
_pkgver=latest
pkgver=0.9.3+32.r.20230504.7042e6d
-pkgrel=3
+pkgrel=4
pkgdesc="Software for continuation and bifurcation problems in ordinary differential equations. Version 07p, latest git checkout. Environment variables can control the build (see PKGBUILD)."
arch=(
'aarch64'
@@ -82,9 +82,9 @@ makedepends=(
'git'
'perl'
)
-# checkdepends=(
-# "python3"
-# ) # `make check` takes long and might fail.
+checkdepends=(
+ "python3"
+) # `make check` takes long and might fail.
optdepends=(
"ipython: For python interface."
"python3: For python interface."
@@ -307,10 +307,10 @@ build() {
msg2 "<<< Finished building '${pkgname}', version '${pkgver}'. <<<"
}
-# check() {
-# cd "${_extractdir}"
-# make check # `make check` takes long and might fail.
-# }
+check() {
+ cd "${_extractdir}"
+ make check # `make check` takes long and might fail.
+}
package() {
_extractdir="${srcdir}/auto/07p"