Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: pdsh-2.33
@ 2019-09-11 14:53 voidlinux-github
  2019-09-11 15:01 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 14:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

There is a new pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 3216 bytes --]

From 402bf9cc6bee1eaeee2394748527a520b3868687 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 +++++++++
 srcpkgs/pdsh/template                       | 44 +++++++++++++++++++++
 2 files changed, 62 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..f762af41605
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,44 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+configure_args="
+ $(vopt_if with_rsh --with-rsh)
+ $(vopt_if with_exec --with-exec)
+ $(vopt_if with_ssh --with-ssh)
+ $(vopt_if with_mrsh --with-mrsh)
+ $(vopt_if with_xcpu --with-xcpu)
+ $(vopt_if with_netgroup --with-netgroup)
+ $(vopt_if with_readline --with-readline)
+"
+hostmakedepends="automake autoconf libtool git gettext"
+makedepends="
+ $(vopt_if with_mrsh munge-devel)
+ $(vopt_if with_readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="with_rsh with_exec with_ssh with_mrsh with_xcpu with_netgroup with_readline"
+build_options_default="with_rsh with_exec with_ssh with_mrsh with_readline"
+desc_option_with_rsh="Include support for the rsh remote module"
+desc_option_with_exec="Include support for the exec remote module"
+desc_option_with_ssh="Include support for the ssh remote module"
+desc_option_with_mrsh="Include support for the mrsh remote module"
+desc_option_with_xcpu="Include support for the xcpu remote module"
+desc_option_with_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+desc_option_with_readline="Include readline support"
+
+pre_configure() {
+	./bootstrap
+}
+
+post_install() {
+	rm ${DESTDIR}/usr/lib/pdsh/*.a
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
@ 2019-09-11 15:01 ` voidlinux-github
  2019-09-11 15:01 ` voidlinux-github
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 15:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 3252 bytes --]

From 163b7d5e446b657f8565f573bb181f907ca47567 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 +++++++++
 srcpkgs/pdsh/template                       | 45 +++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..49e5f3c235d
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,45 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+archs="x86_64 i686 aarch64 armv7l"
+configure_args="
+ $(vopt_if with_rsh --with-rsh)
+ $(vopt_if with_exec --with-exec)
+ $(vopt_if with_ssh --with-ssh)
+ $(vopt_if with_mrsh --with-mrsh)
+ $(vopt_if with_xcpu --with-xcpu)
+ $(vopt_if with_netgroup --with-netgroup)
+ $(vopt_if with_readline --with-readline)
+"
+hostmakedepends="automake autoconf libtool git gettext"
+makedepends="
+ $(vopt_if with_mrsh munge-devel)
+ $(vopt_if with_readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="with_rsh with_exec with_ssh with_mrsh with_xcpu with_netgroup with_readline"
+build_options_default="with_rsh with_exec with_ssh with_mrsh with_readline"
+desc_option_with_rsh="Include support for the rsh remote module"
+desc_option_with_exec="Include support for the exec remote module"
+desc_option_with_ssh="Include support for the ssh remote module"
+desc_option_with_mrsh="Include support for the mrsh remote module"
+desc_option_with_xcpu="Include support for the xcpu remote module"
+desc_option_with_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+desc_option_with_readline="Include readline support"
+
+pre_configure() {
+	./bootstrap
+}
+
+post_install() {
+	rm ${DESTDIR}/usr/lib/pdsh/*.a
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
  2019-09-11 15:01 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-09-11 15:01 ` voidlinux-github
  2019-09-11 15:01 ` voidlinux-github
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 15:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 3252 bytes --]

From 163b7d5e446b657f8565f573bb181f907ca47567 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 +++++++++
 srcpkgs/pdsh/template                       | 45 +++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..49e5f3c235d
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,45 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+archs="x86_64 i686 aarch64 armv7l"
+configure_args="
+ $(vopt_if with_rsh --with-rsh)
+ $(vopt_if with_exec --with-exec)
+ $(vopt_if with_ssh --with-ssh)
+ $(vopt_if with_mrsh --with-mrsh)
+ $(vopt_if with_xcpu --with-xcpu)
+ $(vopt_if with_netgroup --with-netgroup)
+ $(vopt_if with_readline --with-readline)
+"
+hostmakedepends="automake autoconf libtool git gettext"
+makedepends="
+ $(vopt_if with_mrsh munge-devel)
+ $(vopt_if with_readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="with_rsh with_exec with_ssh with_mrsh with_xcpu with_netgroup with_readline"
+build_options_default="with_rsh with_exec with_ssh with_mrsh with_readline"
+desc_option_with_rsh="Include support for the rsh remote module"
+desc_option_with_exec="Include support for the exec remote module"
+desc_option_with_ssh="Include support for the ssh remote module"
+desc_option_with_mrsh="Include support for the mrsh remote module"
+desc_option_with_xcpu="Include support for the xcpu remote module"
+desc_option_with_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+desc_option_with_readline="Include readline support"
+
+pre_configure() {
+	./bootstrap
+}
+
+post_install() {
+	rm ${DESTDIR}/usr/lib/pdsh/*.a
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
  2019-09-11 15:01 ` [PR PATCH] [Updated] " voidlinux-github
  2019-09-11 15:01 ` voidlinux-github
@ 2019-09-11 15:01 ` voidlinux-github
  2019-09-11 15:03 ` voidlinux-github
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 15:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 208 bytes --]

New comment by knusbaum on void-packages repository

https://github.com/void-linux/void-packages/pull/14406#issuecomment-530421732

Comment:
Fails to build on musl because lack of rresvport and a few others.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-09-11 15:01 ` voidlinux-github
@ 2019-09-11 15:03 ` voidlinux-github
  2019-09-11 15:08 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 15:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 191 bytes --]

New comment by knusbaum on void-packages repository

https://github.com/void-linux/void-packages/pull/14406#issuecomment-530421732

Comment:
Fails to build on musl because lack of rresvport.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-09-11 15:08 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-09-11 15:08 ` voidlinux-github
  2019-09-11 18:53 ` voidlinux-github
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 15:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 3252 bytes --]

From f452b03972a2f3a295e0f10b18c44b01f696648b Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 +++++++++
 srcpkgs/pdsh/template                       | 45 +++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..e9dabded083
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,45 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+archs="x86_64 i686 aarch64 armv7l"
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+configure_args="
+ $(vopt_if with_rsh --with-rsh)
+ $(vopt_if with_exec --with-exec)
+ $(vopt_if with_ssh --with-ssh)
+ $(vopt_if with_mrsh --with-mrsh)
+ $(vopt_if with_xcpu --with-xcpu)
+ $(vopt_if with_netgroup --with-netgroup)
+ $(vopt_if with_readline --with-readline)
+"
+hostmakedepends="automake autoconf libtool git gettext"
+makedepends="
+ $(vopt_if with_mrsh munge-devel)
+ $(vopt_if with_readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="with_rsh with_exec with_ssh with_mrsh with_xcpu with_netgroup with_readline"
+build_options_default="with_rsh with_exec with_ssh with_mrsh with_readline"
+desc_option_with_rsh="Include support for the rsh remote module"
+desc_option_with_exec="Include support for the exec remote module"
+desc_option_with_ssh="Include support for the ssh remote module"
+desc_option_with_mrsh="Include support for the mrsh remote module"
+desc_option_with_xcpu="Include support for the xcpu remote module"
+desc_option_with_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+desc_option_with_readline="Include readline support"
+
+pre_configure() {
+	./bootstrap
+}
+
+post_install() {
+	rm ${DESTDIR}/usr/lib/pdsh/*.a
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-09-11 15:03 ` voidlinux-github
@ 2019-09-11 15:08 ` voidlinux-github
  2019-09-11 15:08 ` voidlinux-github
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 15:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 3252 bytes --]

From f452b03972a2f3a295e0f10b18c44b01f696648b Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 +++++++++
 srcpkgs/pdsh/template                       | 45 +++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..e9dabded083
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,45 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+archs="x86_64 i686 aarch64 armv7l"
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+configure_args="
+ $(vopt_if with_rsh --with-rsh)
+ $(vopt_if with_exec --with-exec)
+ $(vopt_if with_ssh --with-ssh)
+ $(vopt_if with_mrsh --with-mrsh)
+ $(vopt_if with_xcpu --with-xcpu)
+ $(vopt_if with_netgroup --with-netgroup)
+ $(vopt_if with_readline --with-readline)
+"
+hostmakedepends="automake autoconf libtool git gettext"
+makedepends="
+ $(vopt_if with_mrsh munge-devel)
+ $(vopt_if with_readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="with_rsh with_exec with_ssh with_mrsh with_xcpu with_netgroup with_readline"
+build_options_default="with_rsh with_exec with_ssh with_mrsh with_readline"
+desc_option_with_rsh="Include support for the rsh remote module"
+desc_option_with_exec="Include support for the exec remote module"
+desc_option_with_ssh="Include support for the ssh remote module"
+desc_option_with_mrsh="Include support for the mrsh remote module"
+desc_option_with_xcpu="Include support for the xcpu remote module"
+desc_option_with_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+desc_option_with_readline="Include readline support"
+
+pre_configure() {
+	./bootstrap
+}
+
+post_install() {
+	rm ${DESTDIR}/usr/lib/pdsh/*.a
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-09-11 15:08 ` voidlinux-github
@ 2019-09-11 18:53 ` voidlinux-github
  2019-09-11 18:53 ` voidlinux-github
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 18:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 2867 bytes --]

From 66d601ae722eddcb07f5576b2795bdc355b27106 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 ++++++++++
 srcpkgs/pdsh/template                       | 40 +++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..d7566ff989f
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,40 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+archs="~*-musl"
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+configure_args="
+ --disable-static-modules
+ $(vopt_with rsh)
+ $(vopt_with exec)
+ $(vopt_with ssh)
+ $(vopt_with mrsh)
+ $(vopt_with xcpu)
+ $(vopt_with netgroup)
+ $(vopt_with readline)
+"
+hostmakedepends="automake autoconf libtool"
+makedepends="
+ $(vopt_if mrsh munge-devel)
+ $(vopt_if readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="rsh exec ssh mrsh xcpu netgroup readline"
+build_options_default="rsh exec ssh mrsh readline"
+desc_option_rsh="Include support for the rsh remote module"
+desc_option_exec="Include support for the exec remote module"
+desc_option_mrsh="Include support for the mrsh remote module"
+desc_option_xcpu="Include support for the xcpu remote module"
+desc_option_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+
+pre_configure() {
+	./bootstrap
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-09-11 18:53 ` voidlinux-github
@ 2019-09-11 18:53 ` voidlinux-github
  2019-09-11 18:55 ` voidlinux-github
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 18:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 2867 bytes --]

From 66d601ae722eddcb07f5576b2795bdc355b27106 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 ++++++++++
 srcpkgs/pdsh/template                       | 40 +++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..d7566ff989f
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,40 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+archs="~*-musl"
+wrksrc=pdsh-pdsh-${version}
+build_style=gnu-configure
+configure_args="
+ --disable-static-modules
+ $(vopt_with rsh)
+ $(vopt_with exec)
+ $(vopt_with ssh)
+ $(vopt_with mrsh)
+ $(vopt_with xcpu)
+ $(vopt_with netgroup)
+ $(vopt_with readline)
+"
+hostmakedepends="automake autoconf libtool"
+makedepends="
+ $(vopt_if mrsh munge-devel)
+ $(vopt_if readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="rsh exec ssh mrsh xcpu netgroup readline"
+build_options_default="rsh exec ssh mrsh readline"
+desc_option_rsh="Include support for the rsh remote module"
+desc_option_exec="Include support for the exec remote module"
+desc_option_mrsh="Include support for the mrsh remote module"
+desc_option_xcpu="Include support for the xcpu remote module"
+desc_option_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+
+pre_configure() {
+	./bootstrap
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-09-11 18:53 ` voidlinux-github
@ 2019-09-11 18:55 ` voidlinux-github
  2019-09-11 18:55 ` voidlinux-github
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 18:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 2869 bytes --]

From 9472f210aac2af8aa4e31f6c14db2abff1365df4 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 ++++++++++
 srcpkgs/pdsh/template                       | 40 +++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..ad136987bd0
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,40 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+archs="~*-musl"
+wrksrc="pdsh-pdsh-${version}"
+build_style=gnu-configure
+configure_args="
+ --disable-static-modules
+ $(vopt_with rsh)
+ $(vopt_with exec)
+ $(vopt_with ssh)
+ $(vopt_with mrsh)
+ $(vopt_with xcpu)
+ $(vopt_with netgroup)
+ $(vopt_with readline)
+"
+hostmakedepends="automake autoconf libtool"
+makedepends="
+ $(vopt_if mrsh munge-devel)
+ $(vopt_if readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="rsh exec ssh mrsh xcpu netgroup readline"
+build_options_default="rsh exec ssh mrsh readline"
+desc_option_rsh="Include support for the rsh remote module"
+desc_option_exec="Include support for the exec remote module"
+desc_option_mrsh="Include support for the mrsh remote module"
+desc_option_xcpu="Include support for the xcpu remote module"
+desc_option_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+
+pre_configure() {
+	./bootstrap
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Updated] New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (8 preceding siblings ...)
  2019-09-11 18:55 ` voidlinux-github
@ 2019-09-11 18:55 ` voidlinux-github
  2019-09-17 17:23 ` voidlinux-github
  2019-09-17 17:30 ` [PR PATCH] [Merged]: " voidlinux-github
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-11 18:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 315 bytes --]

There is an updated pull request by knusbaum against master on the void-packages repository

https://github.com/knusbaum/void-packages NEW_pdsh
https://github.com/void-linux/void-packages/pull/14406

New package: pdsh-2.33


A patch file from https://github.com/void-linux/void-packages/pull/14406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-NEW_pdsh-14406.patch --]
[-- Type: text/x-diff, Size: 2869 bytes --]

From 9472f210aac2af8aa4e31f6c14db2abff1365df4 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <kylenusbaum@granular.ag>
Date: Wed, 11 Sep 2019 09:50:17 -0500
Subject: [PATCH] New package: pdsh-2.33

---
 srcpkgs/pdsh/patches/fix_configure_ac.patch | 18 ++++++++++
 srcpkgs/pdsh/template                       | 40 +++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 srcpkgs/pdsh/patches/fix_configure_ac.patch
 create mode 100644 srcpkgs/pdsh/template

diff --git a/srcpkgs/pdsh/patches/fix_configure_ac.patch b/srcpkgs/pdsh/patches/fix_configure_ac.patch
new file mode 100644
index 00000000000..9be920cd9c6
--- /dev/null
+++ b/srcpkgs/pdsh/patches/fix_configure_ac.patch
@@ -0,0 +1,18 @@
+configure.ac relies on git, which doesn't work for release tarball.
+See: https://github.com/chaos/pdsh/issues/116
+--- configure.ac	2017-06-28 19:28:26.000000000 -0500
++++ configure.ac	2019-09-11 08:41:27.613006239 -0500
+@@ -4,12 +4,11 @@
+ # Copyright (C) 2000-2002 Regents of the University of California
+ # See ./DISCLAIMER
+ #
+ # This file is to be processed with autoconf to generate a configure script.
+ 
+-AC_INIT([pdsh],
+-        m4_esyscmd([git describe --always |  awk '/.*/ {sub(/^pdsh-/, ""); printf "%s",$1; exit}']))
++AC_INIT([pdsh], 2)
+ 
+ AC_CONFIG_SRCDIR([pdsh])
+ AC_CONFIG_AUX_DIR([config])
+ AC_CONFIG_MACRO_DIR([config])
+ AC_CONFIG_SRCDIR([src/pdsh/dsh.h])
diff --git a/srcpkgs/pdsh/template b/srcpkgs/pdsh/template
new file mode 100644
index 00000000000..ad136987bd0
--- /dev/null
+++ b/srcpkgs/pdsh/template
@@ -0,0 +1,40 @@
+# Template file for 'pdsh'
+pkgname=pdsh
+version=2.33
+revision=1
+archs="~*-musl"
+wrksrc="pdsh-pdsh-${version}"
+build_style=gnu-configure
+configure_args="
+ --disable-static-modules
+ $(vopt_with rsh)
+ $(vopt_with exec)
+ $(vopt_with ssh)
+ $(vopt_with mrsh)
+ $(vopt_with xcpu)
+ $(vopt_with netgroup)
+ $(vopt_with readline)
+"
+hostmakedepends="automake autoconf libtool"
+makedepends="
+ $(vopt_if mrsh munge-devel)
+ $(vopt_if readline readline-devel)
+"
+short_desc="High performance, parallel remote shell utility"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/chaos/pdsh"
+distfiles="https://github.com/chaos/pdsh/archive/pdsh-${version}.tar.gz"
+checksum=c026ccf06e4f1c6c52414282a865e45362405aa09f7d09fa86aaec98f6413554
+
+build_options="rsh exec ssh mrsh xcpu netgroup readline"
+build_options_default="rsh exec ssh mrsh readline"
+desc_option_rsh="Include support for the rsh remote module"
+desc_option_exec="Include support for the exec remote module"
+desc_option_mrsh="Include support for the mrsh remote module"
+desc_option_xcpu="Include support for the xcpu remote module"
+desc_option_netgroup="allows pdsh to use standard netgroup entries to build lists of target hosts."
+
+pre_configure() {
+	./bootstrap
+}

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (9 preceding siblings ...)
  2019-09-11 18:55 ` voidlinux-github
@ 2019-09-17 17:23 ` voidlinux-github
  2019-09-17 17:30 ` [PR PATCH] [Merged]: " voidlinux-github
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-17 17:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 185 bytes --]

New comment by knusbaum on void-packages repository

https://github.com/void-linux/void-packages/pull/14406#issuecomment-532318602

Comment:
@Chocimier Are there any other issues here?

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PR PATCH] [Merged]: New package: pdsh-2.33
  2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
                   ` (10 preceding siblings ...)
  2019-09-17 17:23 ` voidlinux-github
@ 2019-09-17 17:30 ` voidlinux-github
  11 siblings, 0 replies; 13+ messages in thread
From: voidlinux-github @ 2019-09-17 17:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

There's a merged pull request on the void-packages repository

New package: pdsh-2.33
https://github.com/void-linux/void-packages/pull/14406

Description:


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-09-17 17:30 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-11 14:53 [PR PATCH] New package: pdsh-2.33 voidlinux-github
2019-09-11 15:01 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-11 15:01 ` voidlinux-github
2019-09-11 15:01 ` voidlinux-github
2019-09-11 15:03 ` voidlinux-github
2019-09-11 15:08 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-11 15:08 ` voidlinux-github
2019-09-11 18:53 ` voidlinux-github
2019-09-11 18:53 ` voidlinux-github
2019-09-11 18:55 ` voidlinux-github
2019-09-11 18:55 ` voidlinux-github
2019-09-17 17:23 ` voidlinux-github
2019-09-17 17:30 ` [PR PATCH] [Merged]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).