public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/clusterssh/
Date: Fri, 12 Nov 2021 01:21:33 +0000 (UTC)	[thread overview]
Message-ID: <1636680081.80b0cd235fabed1caaf20c3718818a39b08f90ec.sam@gentoo> (raw)

commit:     80b0cd235fabed1caaf20c3718818a39b08f90ec
Author:     Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Thu Nov 11 13:29:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 12 01:21:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80b0cd23

net-misc/clusterssh: Bump to 4.16.

About versioning: https://wiki.gentoo.org/wiki/Project:Perl/Version-Scheme

Right, so with clusterssh using X.YY_ZZ, it's impossible to go larger
than 99 already.  As such, the benefit of using 4.160 (and then using
DIST_VERSION to wangle that back to 4.16 doesn't make sense for me).

Currently there is no third digit here, so in a future version I'll set
it up to double op on the versions, eg, 5.0 will likely be 5.00
upstream, and 5.0.1 or 4.16.1 will be 5.00_01 or 4.16.01 upstream (which
can be dealt with smartly using sprintf constructing DIST_VERSION).

Closes: https://bugs.gentoo.org/598420
Closes: https://bugs.gentoo.org/819306
Closes: https://bugs.gentoo.org/775947
Bug: https://bugs.gentoo.org/768105
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/clusterssh/Manifest               |  1 +
 net-misc/clusterssh/clusterssh-4.16.ebuild | 48 ++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-misc/clusterssh/Manifest b/net-misc/clusterssh/Manifest
index d260acf128d..6a17d252e44 100644
--- a/net-misc/clusterssh/Manifest
+++ b/net-misc/clusterssh/Manifest
@@ -1,2 +1,3 @@
 DIST App-ClusterSSH-4.01_05.tar.gz 71502 BLAKE2B f9e1f9de36173c766a382660e34adee3005a64550a90cafe59101fd3f4b66307990e254334fb270398c9e36a9d27657a27e7348b1223a7ccef04181f8c88809b SHA512 4b63b91684c981a28871e5264502c66435b531ae3c4bad2eab2571f8b237d43e5f45ed93d036e7497c713f2982a110d93a3055ae0004d4f33e7786df9aa56ff8
 DIST App-ClusterSSH-4.03_06.tar.gz 81476 BLAKE2B 6b513cb86fd4827eb510dd26ded9aa2d45ac1fe484dc10b8cb841c8b1fb50c7f279cbc6a63e817acbbf66e4aea5faa4f32cc612c387d018bf09abb18919fd7d6 SHA512 87dff4c0445436c10929bcf30a9295deb6ddacca16939091fdab0cf67765c77706745ce8e738145ea6c67ec06093567b7668e4387a72b48018f8e173da5709b4
+DIST App-ClusterSSH-4.16.tar.gz 96151 BLAKE2B c0b4ee36f42cb26853c264686fa6084133e0a75f9dba6e7233e341a2dedbb3c41642dd255bf6fa01b7285c9c3edd43485d3014b6d41957d6476382dcd00866a2 SHA512 3d4fc2aa681ea815020375bb3bb0f9a070e1638c5a4e38b1b279c58f9644a568bb687e0e611919afa48a32b44ff4e25cd5661c7d1330978f851bc506282f020e

diff --git a/net-misc/clusterssh/clusterssh-4.16.ebuild b/net-misc/clusterssh/clusterssh-4.16.ebuild
new file mode 100644
index 00000000000..df1418c856a
--- /dev/null
+++ b/net-misc/clusterssh/clusterssh-4.16.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR="DUNCS"
+DIST_NAME="App-ClusterSSH"
+#DIST_VERSION="$(ver_cut 1-2)"
+
+#die "|$(ver_cut 1-2)_$(ver_cut 3)|"
+inherit perl-module
+
+DESCRIPTION="Concurrent Multi-Server Terminal Access"
+HOMEPAGE="https://github.com/duncs/clusterssh"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-perl/Config-Simple
+	dev-perl/Exception-Class
+	dev-perl/Readonly
+	dev-perl/Sort-Naturally
+	dev-perl/Test-DistManifest
+	dev-perl/Test-Pod
+	dev-perl/Test-Pod-Coverage
+	dev-perl/Test-Trap
+	dev-perl/Tk
+	dev-perl/Try-Tiny
+	dev-perl/X11-Protocol
+	dev-perl/X11-Protocol-Other
+	dev-perl/XML-Simple
+	x11-apps/xlsfonts
+	x11-terms/xterm
+	"
+BDEPEND="
+	${RDEPEND}
+	dev-perl/CPAN-Changes
+	dev-perl/File-Slurp
+	dev-perl/File-Which
+	dev-perl/Module-Build
+	dev-perl/Test-Differences
+	dev-perl/Test-Pod"
+
+SRC_TEST="do parallel"


             reply	other threads:[~2021-11-12  1:21 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-12  1:21 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-26 15:30 [gentoo-commits] repo/gentoo:master commit in: net-misc/clusterssh/ Arthur Zamarin
2025-01-03 16:41 Joonas Niilola
2025-01-03 16:41 Joonas Niilola
2022-07-02 22:58 Sam James
2022-01-14  9:55 Jakov Smolić
2022-01-14  9:55 Jakov Smolić
2022-01-13 13:14 Jakov Smolić
2021-11-12  1:21 Sam James
2021-11-12  1:21 Sam James
2021-11-12  1:21 Sam James
2019-12-15 20:24 Michał Górny
2018-08-31 14:51 Justin Bronder
2016-10-30 20:05 Sven Wegener
2015-08-31 14:45 Alexys Jacob

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1636680081.80b0cd235fabed1caaf20c3718818a39b08f90ec.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox