summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHyacinthe Cartiaux2017-08-25 11:09:57 +0200
committerHyacinthe Cartiaux2017-08-25 11:09:57 +0200
commit0af1ff0f15428124392321873f078d35d28c5c2b (patch)
tree727905022d84c61a17781ce6617896b57697c242
parent1b95772e431087a04ed7378bca647a6b01f45a16 (diff)
downloadaur-0af1ff0f15428124392321873f078d35d28c5c2b.tar.gz
Update to 2.32
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD11
2 files changed, 12 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 27e5f8da3d29..233bbc891452 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Mon Oct 24 19:58:16 UTC 2016
+# Fri Aug 25 09:09:48 UTC 2017
pkgbase = pdsh-genders
pkgdesc = Parallel Distributed Shell
- pkgver = 2.31
+ pkgver = 2.32
pkgrel = 1
url = https://github.com/grondo/pdsh
arch = i686
@@ -16,8 +16,8 @@ pkgbase = pdsh-genders
provides = pdsh
conflicts = pdsh
options = libtool
- source = https://github.com/grondo/pdsh/archive/pdsh-2.31.tar.gz
- sha256sums = 0ee066ce395703285cf4f6cf00b54b7097d12457a4b1c146bc6f33d8ba73caa7
+ source = https://github.com/grondo/pdsh/archive/pdsh-2.32.tar.gz
+ sha256sums = 3c58b955b4f5f24e75905a5e133b5d28ce04246566e28701902359adab806765
pkgname = pdsh-genders
diff --git a/PKGBUILD b/PKGBUILD
index a6c841eb9ac5..fe0eb3237b28 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: sh0 <mee@sh0.org>
pkgname=pdsh-genders
-pkgver=2.31
+pkgver=2.32
pkgrel=1
pkgdesc='Parallel Distributed Shell'
url='https://github.com/grondo/pdsh'
@@ -14,10 +14,11 @@ options=('libtool')
source=("https://github.com/grondo/pdsh/archive/pdsh-${pkgver}.tar.gz")
conflicts=('pdsh')
provides=('pdsh')
-sha256sums=('0ee066ce395703285cf4f6cf00b54b7097d12457a4b1c146bc6f33d8ba73caa7')
+sha256sums=('3c58b955b4f5f24e75905a5e133b5d28ce04246566e28701902359adab806765')
build() {
cd "${srcdir}/pdsh-pdsh-${pkgver}"
+ ./bootstrap
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
@@ -28,10 +29,14 @@ build() {
make
}
+check() {
+ cd "${srcdir}/pdsh-pdsh-${pkgver}"
+ make check
+}
+
package() {
cd "${srcdir}/pdsh-pdsh-${pkgver}"
make DESTDIR="${pkgdir}/" install
- rmdir "${pkgdir}/usr/sbin"
}
# vim:set ts=2 sw=2 et: