summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoelof Rietbroek (@pretslet)2019-11-15 00:05:28 +0100
committerRoelof Rietbroek (@pretslet)2019-11-15 00:13:51 +0100
commitff65f53cd2582847fd4d3fa7bbefa6ee1978c2eb (patch)
tree15751b7f4498faed4bb997a31102065c64ebf53d
parent5c9d784938d2a90186c0d9c26698a95e589c25b1 (diff)
downloadaur-ff65f53cd2582847fd4d3fa7bbefa6ee1978c2eb.tar.gz
bumped version
updated SRCINFO
-rw-r--r--.SRCINFO8
-rw-r--r--Makefile.patch8
-rw-r--r--PKGBUILD11
3 files changed, 8 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c7cc4ead7a7e..f9ae75eb9ddc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = shtools-fortran
pkgdesc = Tools for working with spherical harmonics
- pkgver = 4.2
+ pkgver = 4.5.4
pkgrel = 1
url = https://shtools.oca.eu
arch = any
@@ -9,10 +9,8 @@ pkgbase = shtools-fortran
depends = fftw
depends = blas
depends = lapack
- source = https://github.com/SHTOOLS/SHTOOLS/archive/v4.2.tar.gz
- source = Makefile.patch
- md5sums = 8afb0e9c966a08c9ddec2ff18ca660db
- md5sums = f574e4f5c5be5698922223bd9a928921
+ source = https://github.com/SHTOOLS/SHTOOLS/archive/v4.5.4.tar.gz
+ md5sums = 5ed51cf712fe52f1e48bea46199b456b
pkgname = shtools-fortran
diff --git a/Makefile.patch b/Makefile.patch
deleted file mode 100644
index 7ccf2bfcb018..000000000000
--- a/Makefile.patch
+++ /dev/null
@@ -1,8 +0,0 @@
-413,415c413,415
-< mkdir -pv $(DESTDIR)$(SYSDOCPATH)/shtools
-< cp index.html $(DESTDIR)$(SYSDOCPATH)/shtools/index.html
-< cp -R www $(DESTDIR)$(SYSDOCPATH)/shtools/
----
-> #mkdir -pv $(DESTDIR)$(SYSDOCPATH)/shtools
-> #cp index.html $(DESTDIR)$(SYSDOCPATH)/shtools/index.html
-> #cp -R www $(DESTDIR)$(SYSDOCPATH)/shtools/
diff --git a/PKGBUILD b/PKGBUILD
index 2c78f94d37e5..ac09c19e14e9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Builds the fortran part of the shtools library
# Maintainer: Roelof Rietbroek <roelof@wobbly.earth>
pkgname=shtools-fortran
-pkgver=4.2
+pkgver=4.5.4
pkgrel=1
pkgdesc="Tools for working with spherical harmonics"
arch=('any')
@@ -11,16 +11,15 @@ license=('BSD 3-clause')
groups=()
depends=("fftw" "blas" "lapack")
makedepends=("gcc-fortran")
-source=("https://github.com/SHTOOLS/SHTOOLS/archive/v$pkgver.tar.gz" "Makefile.patch")
+source=("https://github.com/SHTOOLS/SHTOOLS/archive/v$pkgver.tar.gz")
noextract=()
-md5sums=('8afb0e9c966a08c9ddec2ff18ca660db' 'f574e4f5c5be5698922223bd9a928921')
+md5sums=('5ed51cf712fe52f1e48bea46199b456b')
+
validpgpkeys=()
prepare() {
_startdir=${PWD}
cd ${srcdir}/SHTOOLS-${pkgver}/
- patch Makefile < ${_startdir}/Makefile.patch
-
}
build() {
@@ -28,7 +27,7 @@ build() {
make fortran
make fortran-mp
make doc
- cd ${_startdir}
+ cd ${_startdir}
}
check() {