summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorGordian Edenhofer2017-07-27 19:56:16 +0200
committerGordian Edenhofer2017-07-27 19:58:16 +0200
commit3f0665c3eb6feb498d08ebe134b4f38afac5b95c (patch)
tree40aad9fb713372693d57983c574ee4541b64a897
parent9a1b929a77b2d3378b9a76b74d82b7c7980f3638 (diff)
downloadaur-3f0665c3eb6feb498d08ebe134b4f38afac5b95c.tar.gz
upgpkg: munge 0.5.12-2
Change configure flags to circumvent an OpenSSL 1.1.0 conversion bug.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b86e95b94047..96e26e754095 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = munge
pkgdesc = An authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment.
pkgver = 0.5.12
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/dun/munge/wiki
install = munge.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index c24796515d49..f3ab026c6b41 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=munge
pkgver=0.5.12
-pkgrel=1
+pkgrel=2
pkgdesc="An authentication service for creating and validating credentials. It is designed to be highly scalable for use in an HPC cluster environment."
arch=('i686' 'x86_64')
url="https://github.com/dun/munge/wiki"
@@ -18,7 +18,10 @@ sha512sums=('551b3da8de11a50e2cfbdb19de5c2e64dae9d8082bc55219d4f532a48ba01e802e3
build() {
cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+ # '--with-crypto-lib=libgcrypt' is a temporary workaround for an OpenSSL 1.1.0 conversion bug
+ # refer to https://github.com/dun/munge/issues/54 for more information
./configure \
+ --with-crypto-lib=libgcrypt \
--prefix=/usr \
--sbindir=/usr/bin \
--localstatedir=/var \