public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2017-01-15 18:23 Patrice Clement
  0 siblings, 0 replies; 7+ messages in thread
From: Patrice Clement @ 2017-01-15 18:23 UTC (permalink / raw
  To: gentoo-commits

commit:     91e479b003ae1930c5dfba286b79b6bc63e893eb
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 15 18:18:52 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 18:23:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e479b0

net-misc/shmux: EAPI 6 bump and clear QA warnings.

Package-Manager: portage-2.3.0

 net-misc/shmux/shmux-1.0.2-r1.ebuild | 44 ++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/net-misc/shmux/shmux-1.0.2-r1.ebuild b/net-misc/shmux/shmux-1.0.2-r1.ebuild
new file mode 100644
index 00000000..90ea36a
--- /dev/null
+++ b/net-misc/shmux/shmux-1.0.2-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="run the same command across many hosts in parallel"
+HOMEPAGE="http://web.taranis.org/shmux/"
+SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
+
+LICENSE="shmux"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="pcre"
+RESTRICT="test"
+
+RDEPEND="
+	pcre? ( dev-libs/libpcre )
+	sys-libs/ncurses:0=
+"
+
+DEPEND="
+	${RDEPEND}
+	virtual/awk"
+
+PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
+
+DOCS=( CHANGES )
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf $(use_with pcre)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	einstalldocs
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2019-10-05  8:12 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2019-10-05  8:12 UTC (permalink / raw
  To: gentoo-commits

commit:     6b66d0126ad49d0a608831cf6366496e739061c4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  5 07:54:14 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct  5 07:54:14 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b66d012

net-misc/shmux: Drop old (EAPI=0)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-misc/shmux/Manifest         |  1 -
 net-misc/shmux/shmux-1.0.ebuild | 32 --------------------------------
 2 files changed, 33 deletions(-)

diff --git a/net-misc/shmux/Manifest b/net-misc/shmux/Manifest
index aef05e103fc..0d6da2ec902 100644
--- a/net-misc/shmux/Manifest
+++ b/net-misc/shmux/Manifest
@@ -1,2 +1 @@
 DIST shmux-1.0.2.tgz 110473 BLAKE2B 7dcd08c37d0d8d3ee2dfccc89ee9f2c187c97278ba7adfa8e30bd5b86981d3a4b3513dfc884926000cede0b813a922e121c49db75ca4e0ff4efde2b4b9e6480b SHA512 d114678827d4fc203f0d18b4a4e02f8b56efdf490df0aef32756a020c755b387468a88fea7266249445a862d7ed9374640432e5807fa57bca5a7d559d7e67a8a
-DIST shmux-1.0.tgz 81096 BLAKE2B 7f8e34c66ad705576cd76e5c88e5bc7c46122793c4b2366f4d081c5229bc93e16140afad56fa81b5a1b86721fb4cd3fa83a5536ca08dc6c96e3497ae7c75aa80 SHA512 970ba7972f90c99aa201ee9caae904c039da5084d870d621fcbe3b91a86fd979f35665400210105ebc712b6117f0640fc6c2702c901c467491cac860fa4d2181

diff --git a/net-misc/shmux/shmux-1.0.ebuild b/net-misc/shmux/shmux-1.0.ebuild
deleted file mode 100644
index 3d92be96227..00000000000
--- a/net-misc/shmux/shmux-1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-DESCRIPTION="Program for executing the same command on many hosts in parallel"
-HOMEPAGE="http://web.taranis.org/shmux/"
-SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
-
-LICENSE="shmux"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="pcre"
-RESTRICT="test"
-
-RDEPEND="
-	pcre? ( dev-libs/libpcre )
-	sys-libs/ncurses
-"
-DEPEND="${RDEPEND}
-	virtual/awk"
-
-src_compile() {
-	econf $(use_with pcre) || die "econf failed"
-	emake || die "emake failed"
-}
-
-src_install() {
-	dobin src/shmux || die "dobin failed"
-	doman shmux.1 || die "doman failed"
-	dodoc CHANGES || die "dodoc failed"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2021-04-22  2:59 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-22  2:59 UTC (permalink / raw
  To: gentoo-commits

commit:     0bb5b31d69ab7bb506d2395b3fdb7ac138bce2be
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 22 02:58:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 22 02:58:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bb5b31d

net-misc/shmux: Stabilize 1.0.2-r1 x86, #783729

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/shmux/shmux-1.0.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/shmux/shmux-1.0.2-r1.ebuild b/net-misc/shmux/shmux-1.0.2-r1.ebuild
index 39ebd0040cc..0b377d9fa98 100644
--- a/net-misc/shmux/shmux-1.0.2-r1.ebuild
+++ b/net-misc/shmux/shmux-1.0.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
 
 LICENSE="shmux"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="pcre"
 RESTRICT="test"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2021-04-22  3:01 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-04-22  3:01 UTC (permalink / raw
  To: gentoo-commits

commit:     8434e503b6a93038fde8a619e60159d3823ac03f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 22 03:00:39 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 22 03:00:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8434e503

net-misc/shmux: Stabilize 1.0.2-r1 amd64, #783729

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/shmux/shmux-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/shmux/shmux-1.0.2-r1.ebuild b/net-misc/shmux/shmux-1.0.2-r1.ebuild
index 0b377d9fa98..81f1b69d314 100644
--- a/net-misc/shmux/shmux-1.0.2-r1.ebuild
+++ b/net-misc/shmux/shmux-1.0.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
 
 LICENSE="shmux"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="pcre"
 RESTRICT="test"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2021-04-25 18:10 Andreas Sturmlechner
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas Sturmlechner @ 2021-04-25 18:10 UTC (permalink / raw
  To: gentoo-commits

commit:     52f9f253e53d4f0eae46b071c87ff242ff9dfc44
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 22 06:37:55 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 25 18:10:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52f9f253

net-misc/shmux: Drop 1.0.2 (r0), EAPI5--, overshadowed by 1.0.2-r1

Closes: https://bugs.gentoo.org/783729
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-misc/shmux/shmux-1.0.2.ebuild | 38 --------------------------------------
 1 file changed, 38 deletions(-)

diff --git a/net-misc/shmux/shmux-1.0.2.ebuild b/net-misc/shmux/shmux-1.0.2.ebuild
deleted file mode 100644
index 2d94277728f..00000000000
--- a/net-misc/shmux/shmux-1.0.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit autotools epatch
-
-DESCRIPTION="Program for executing the same command on many hosts in parallel"
-HOMEPAGE="http://web.taranis.org/shmux/"
-SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
-
-LICENSE="shmux"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="pcre"
-RESTRICT="test"
-
-RDEPEND="
-	pcre? ( dev-libs/libpcre )
-	sys-libs/ncurses
-"
-DEPEND="${RDEPEND}
-	virtual/awk"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-tinfo.patch
-	eautoreconf
-}
-
-src_configure() {
-	econf $(use_with pcre)
-}
-
-src_install() {
-	dobin src/shmux
-	doman shmux.1
-	dodoc CHANGES
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2022-09-15 11:31 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-09-15 11:31 UTC (permalink / raw
  To: gentoo-commits

commit:     a6dfb5e545fe4ed22d7a1cd1582c67620e2aef95
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 15 11:30:04 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 15 11:30:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6dfb5e5

net-misc/shmux: Stabilize 1.0.3 x86, #867202

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/shmux/shmux-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/shmux/shmux-1.0.3.ebuild b/net-misc/shmux/shmux-1.0.3.ebuild
index 07fa2c590a43..226598b33b39 100644
--- a/net-misc/shmux/shmux-1.0.3.ebuild
+++ b/net-misc/shmux/shmux-1.0.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
 
 LICENSE="shmux"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="pcre"
 RESTRICT="test"
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/
@ 2022-12-18  4:20 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-12-18  4:20 UTC (permalink / raw
  To: gentoo-commits

commit:     1ad45a7da7b7c7737390873dcc4c4ff61cd238c7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 03:23:40 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 04:01:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ad45a7d

net-misc/shmux: add github upstream metadata

HOMEPAGE redirects.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/shmux/metadata.xml | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)

diff --git a/net-misc/shmux/metadata.xml b/net-misc/shmux/metadata.xml
index ea931d8091e8..0c99cbf3362b 100644
--- a/net-misc/shmux/metadata.xml
+++ b/net-misc/shmux/metadata.xml
@@ -1,17 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="person">
-	<email>alicef@gentoo.org</email>
-	<name>Alice Ferrazzi</name>
-</maintainer>
-<longdescription>
-shmux is program for executing the same command on many hosts in parallel.
-For each target, a child process is spawned by shmux, and a shell on the
-target obtained one of the supported methods: rsh, ssh, or sh. The output
-produced by the children is received by shmux and either (optionally)
-output in turn to the user, and/or written to files for later processing.
-The list of targets may either be specified on the command line or be read
-from the standard input.
-</longdescription>
+	<maintainer type="person">
+		<email>alicef@gentoo.org</email>
+		<name>Alice Ferrazzi</name>
+	</maintainer>
+	<longdescription>
+	shmux is program for executing the same command on many hosts in parallel.
+	For each target, a child process is spawned by shmux, and a shell on the
+	target obtained one of the supported methods: rsh, ssh, or sh. The output
+	produced by the children is received by shmux and either (optionally)
+	output in turn to the user, and/or written to files for later processing.
+	The list of targets may either be specified on the command line or be read
+	from the standard input.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">shmux/shmux</remote-id>
+	</upstream>
 </pkgmetadata>


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

end of thread, other threads:[~2022-12-18  4:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-18  4:20 [gentoo-commits] repo/gentoo:master commit in: net-misc/shmux/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-09-15 11:31 Sam James
2021-04-25 18:10 Andreas Sturmlechner
2021-04-22  3:01 Sam James
2021-04-22  2:59 Sam James
2019-10-05  8:12 Michał Górny
2017-01-15 18:23 Patrice Clement

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox