* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2016-05-25 13:28 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2016-05-25 13:28 UTC (permalink / raw
To: gentoo-commits
commit: 05cc9dc260cd9098de4bd2d940f3b6bf27541e10
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed May 25 13:25:21 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed May 25 13:25:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05cc9dc2
net-analyzer/nagios-check_rbl: new revision for perl-5.24 compatibility.
The tarball for this package was shipped with a copy of inc/version.pm
that was causing problems with perl-5.24. Since v1.3.7 was added to
the tree, upstream has moved SRC_URI to github, and re-released v1.3.7
with modified source code. The new tarball does not exhibit the
version.pm problem.
To fix the issue, this revision uses the new tarball, but renames it
to include the -r1 suffix so that users don't see checksum
failures. We are also removing inc/version.pm in
src_prepare(). Comments have been added to the ebuild so that we can
check for an upstream fix at a later time. The new revision also uses
EAPI=6.
Gentoo-Bug: 583966
Package-Manager: portage-2.2.28
net-analyzer/nagios-check_rbl/Manifest | 2 +-
...3.7.ebuild => nagios-check_rbl-1.3.7-r1.ebuild} | 33 +++++++++++++++++-----
2 files changed, 27 insertions(+), 8 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index 706828e..2c2a627 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1,2 +1,2 @@
DIST check_rbl-1.3.0.tar.gz 32179 SHA256 c713dc226a9d56af6d51863c5f594f34c49227d8af48984085c8b3b137b2d247 SHA512 773610abc1b8521843353f7053e2ce7996fa3178087eb468f628c60d099f4a5658d47fef2b35867363fc9d4de30b849858f2e28f8c70a17baa30d07d7b9ebf2f WHIRLPOOL 7afe3d34333ebb2e79ac4214aefa47d6abe35b1585144ce6395eed686b348543ae4b46d00c9fbc1e0e35f5def8bc87e9b7c90a334600e55fa63bdd07247701a1
-DIST check_rbl-1.3.7.tar.gz 39385 SHA256 b9523db1d0895bb08ac34fb0d20c1a3ff53066fdfcccc62e980e1a9b2e30a9f7 SHA512 ceb00b41ef49ed9cc8f5c7eb8b3a994b59d88f486e5cdb821c842da5d92a091033a2294c642c55b449188fb434585606f024e734c8b7c9f0e655bf4baaba314e WHIRLPOOL 16b0e113f599eed8237423362372dd3afab0a8ab6710fee968586ee0b7b8cbca563b2ecc0fd089edb9e075da1e49ea4a06df74e2601c164fac60961bb47352d1
+DIST check_rbl-1.3.7-r1.tar.gz 38565 SHA256 dbe76bd24ab9404817f74fd895dfeb1c55d296fe9a8264a4c631c5139ea31247 SHA512 a918090b2c1e93095b155215de559b0d7f35c949e9c9d27c7b6dc91e21391b03d716154dd90ea1a68deeabce5afde3c9e5746190910f18bf1d3e08ff20d02431 WHIRLPOOL 31a13de7cfc650deea83d8c7cf148358046260502c34e3d643ad53c1e96854b0194da80fac3d95cf5fa06b01d9224fb9716ce3e281148ce174f89e75bb418023
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
similarity index 51%
rename from net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7.ebuild
rename to net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
index c4a2217..c75db07 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
@@ -1,17 +1,24 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
-inherit multilib
+# Needed for perl_rm_files in src_prepare() only.
+inherit perl-functions
-DESCRIPTION="check_rbl is a Nagios plugin that fails if a host is blacklisted"
-HOMEPAGE="https://svn.id.ethz.ch/projects/nagios_plugins/wiki/check_rbl"
+DESCRIPTION="Monitor whether or not a host is blacklisted"
+HOMEPAGE="https://github.com/matteocorti/check_rbl"
MY_P="${P/nagios-/}"
-SRC_URI="https://svn.id.ethz.ch/projects/nagios_plugins/downloads/${MY_P}.tar.gz"
+# We rename the tarball here because the upstream source changed without
+# a new release. That change happens to fix bug #583966, so we do want
+# the newer tarball. But I think, without the rename, that user might
+# have gotten a checksum failure.
+SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz
+ -> ${MY_P}-r1.tar.gz"
+
LICENSE="GPL-3"
SLOT="0"
@@ -39,6 +46,17 @@ DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
+src_prepare() {
+ default
+
+ # The copy of version.pm that upstream ships causes problems and
+ # isn't necessary. They probably shouldn't be shipping it at all.
+ # See bug #583966 for more information. You should check on
+ # https://github.com/matteocorti/check_rbl/issues/6 every once
+ # in a while to see if this can be removed.
+ perl_rm_files inc/version.pm
+}
+
src_configure() {
perl Makefile.PL INSTALLDIRS=vendor || die
}
@@ -47,7 +65,8 @@ src_install() {
default
local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
- # move this aftertime as it's a bit strange otherwise
+
+ # It's simplest to move this file after it's been installed.
dodir "${nagiosplugindir}"
mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2016-07-09 16:14 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2016-07-09 16:14 UTC (permalink / raw
To: gentoo-commits
commit: 6f2943d521598f0f970b816a0b5c1d2b15e7dd90
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 9 15:57:01 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Jul 9 16:13:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f2943d5
net-analyzer/nagios-check_rbl: add ~x86 keyword.
This re-adds the ~x86 keyword that was lost when two new perl
dependencies were introduced (see the referenced bug). The package has
been tested and does indeed work on x86.
Gentoo-Bug: 538496
Package-Manager: portage-2.2.28
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
index c75db07..a8ab68d 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa"
+KEYWORDS="~amd64 ~hppa ~x86"
IUSE=""
# The package's INSTALL/Makefile.PL files specify its dependencies.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2016-12-19 14:24 Tobias Klausmann
0 siblings, 0 replies; 22+ messages in thread
From: Tobias Klausmann @ 2016-12-19 14:24 UTC (permalink / raw
To: gentoo-commits
commit: 589faf141bef9f606aa29356a3215b9526decb80
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 19 14:24:16 2016 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Dec 19 14:24:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=589faf14
net-analyzer/nagios-check_rbl-1.3.7-r1: stable on amd64
Gentoo-Bug: 578646
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
index a8ab68d..831fe17 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
@@ -22,7 +22,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
+KEYWORDS="amd64 ~hppa ~x86"
IUSE=""
# The package's INSTALL/Makefile.PL files specify its dependencies.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-02-04 10:54 Jeroen Roovers
0 siblings, 0 replies; 22+ messages in thread
From: Jeroen Roovers @ 2017-02-04 10:54 UTC (permalink / raw
To: gentoo-commits
commit: ad190d8cb0d8c3cd2f7ced22235e672df6266ee3
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 10:54:14 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 10:54:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad190d8c
net-analyzer/nagios-check_rbl: Stable for HPPA (bug #578646).
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
index 70a0719..21e069b 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -22,7 +22,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 ~hppa x86"
+KEYWORDS="amd64 hppa x86"
IUSE=""
# The package's INSTALL/Makefile.PL files specify its dependencies.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-02-04 16:39 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2017-02-04 16:39 UTC (permalink / raw
To: gentoo-commits
commit: 6a59b6e9194929de10694a624e333ebaec83c9f7
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 16:38:45 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 16:38:45 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a59b6e9
net-analyzer/nagios-check_rbl: remove proxy maintainer with his permission.
Package-Manager: portage-2.3.3
net-analyzer/nagios-check_rbl/metadata.xml | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/metadata.xml b/net-analyzer/nagios-check_rbl/metadata.xml
index da39e45..05f386f 100644
--- a/net-analyzer/nagios-check_rbl/metadata.xml
+++ b/net-analyzer/nagios-check_rbl/metadata.xml
@@ -2,23 +2,9 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>andrew@ahamilto.net</email>
- <name>Andrew Hamilton</name>
- <description>Maintainer. Assign bugs to him.</description>
- </maintainer>
- <maintainer type="person">
<email>mjo@gentoo.org</email>
<name>Michael Orlitzky</name>
</maintainer>
- <maintainer type="person">
- <email>creffett@gentoo.org</email>
- <name>Chris Reffett</name>
- <description>Proxy maintainer. CC him on bugs.</description>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<maintainer type="project">
<email>sysadmin@gentoo.org</email>
<name>Gentoo Sysadmin Project</name>
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-02-04 16:39 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2017-02-04 16:39 UTC (permalink / raw
To: gentoo-commits
commit: 536eb1f20a60ed4a61816fc5450ea4ed7b38192b
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 16:39:29 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 16:39:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=536eb1f2
net-analyzer/nagios-check_rbl: remove unused version 1.3.0.
Package-Manager: portage-2.3.3
net-analyzer/nagios-check_rbl/Manifest | 1 -
.../nagios-check_rbl/nagios-check_rbl-1.3.0.ebuild | 44 ----------------------
2 files changed, 45 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index 2c2a627..b0454e8 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1,2 +1 @@
-DIST check_rbl-1.3.0.tar.gz 32179 SHA256 c713dc226a9d56af6d51863c5f594f34c49227d8af48984085c8b3b137b2d247 SHA512 773610abc1b8521843353f7053e2ce7996fa3178087eb468f628c60d099f4a5658d47fef2b35867363fc9d4de30b849858f2e28f8c70a17baa30d07d7b9ebf2f WHIRLPOOL 7afe3d34333ebb2e79ac4214aefa47d6abe35b1585144ce6395eed686b348543ae4b46d00c9fbc1e0e35f5def8bc87e9b7c90a334600e55fa63bdd07247701a1
DIST check_rbl-1.3.7-r1.tar.gz 38565 SHA256 dbe76bd24ab9404817f74fd895dfeb1c55d296fe9a8264a4c631c5139ea31247 SHA512 a918090b2c1e93095b155215de559b0d7f35c949e9c9d27c7b6dc91e21391b03d716154dd90ea1a68deeabce5afde3c9e5746190910f18bf1d3e08ff20d02431 WHIRLPOOL 31a13de7cfc650deea83d8c7cf148358046260502c34e3d643ad53c1e96854b0194da80fac3d95cf5fa06b01d9224fb9716ce3e281148ce174f89e75bb418023
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.0.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.0.ebuild
deleted file mode 100644
index 1929fd5..00000000
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit multilib
-
-DESCRIPTION="check_rbl is a Nagios plugin that fails if a host is blacklisted"
-HOMEPAGE="https://svn.id.ethz.ch/projects/nagios_plugins/wiki/check_rbl"
-
-MY_P="${P/nagios-/}"
-
-SRC_URI="https://svn.id.ethz.ch/projects/nagios_plugins/downloads/${MY_P}.tar.gz"
-LICENSE="GPL-3"
-SLOT="0"
-
-KEYWORDS="amd64 hppa x86"
-IUSE=""
-
-# The Makefile.PL looks for Nagios::Plugin::Getopt and
-# Nagios::Plugin::Threshold, but I believe these are provided by
-# dev-perl/Nagios-Plugins.
-RDEPEND="dev-lang/perl
- dev-perl/Nagios-Plugin
- dev-perl/Net-DNS
- dev-perl/Readonly"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- perl Makefile.PL INSTALLDIRS=vendor || die
-}
-
-src_install() {
- default
-
- local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
- # move this aftertime as it's a bit strange otherwise
- dodir "${nagiosplugindir}"
- mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-08-04 18:33 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2017-08-04 18:33 UTC (permalink / raw
To: gentoo-commits
commit: 2bf30d1c3de39a2494b648f78f04a801d93fba9c
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 4 17:27:47 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Aug 4 18:32:10 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf30d1c
net-analyzer/nagios-check_rbl: new version 1.4.1 with perl-5.26 support.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
net-analyzer/nagios-check_rbl/Manifest | 1 +
.../nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 53 ++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index b0454e8b39e..f624bbf5384 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1 +1,2 @@
DIST check_rbl-1.3.7-r1.tar.gz 38565 SHA256 dbe76bd24ab9404817f74fd895dfeb1c55d296fe9a8264a4c631c5139ea31247 SHA512 a918090b2c1e93095b155215de559b0d7f35c949e9c9d27c7b6dc91e21391b03d716154dd90ea1a68deeabce5afde3c9e5746190910f18bf1d3e08ff20d02431 WHIRLPOOL 31a13de7cfc650deea83d8c7cf148358046260502c34e3d643ad53c1e96854b0194da80fac3d95cf5fa06b01d9224fb9716ce3e281148ce174f89e75bb418023
+DIST check_rbl-1.4.1.tar.gz 47585 SHA256 6121e01be4b65f4ed34e8387366a616ceef79f74e44322f68ea8d384c193a177 SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb WHIRLPOOL 535cbfad9cb300e51526ea7127ed5c25a2274a0ade4aaa98e3755793fc82ac7adc91a34adba6af2a8d0708869317c33aeccfaaf5bf6c6b2f44974c0db9f99406
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
new file mode 100644
index 00000000000..ab5f020ab44
--- /dev/null
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Monitor whether or not a host is blacklisted"
+HOMEPAGE="https://github.com/matteocorti/check_rbl"
+
+MY_P="${P/nagios-/}"
+SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE=""
+
+# The package's INSTALL/Makefile.PL files specify its dependencies.
+#
+# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
+# * Data::Validate::IP (dev-perl/Data-Validate-IP)
+# * IO::Select (dev-lang/perl)
+# * Monitoring::Plugin (dev-perl/Monitoring-Plugin)
+# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin)
+# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin)
+# * Net::DNS (dev-perl/Net-DNS)
+# * Net::IP (dev-perl/Net-IP)
+# * Readonly (dev-perl/Readonly)
+#
+RDEPEND="dev-lang/perl
+ dev-perl/Data-Validate-Domain
+ dev-perl/Data-Validate-IP
+ dev-perl/Monitoring-Plugin
+ dev-perl/Net-DNS
+ dev-perl/Net-IP
+ dev-perl/Readonly"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+ perl Makefile.PL INSTALLDIRS=vendor || die
+}
+
+src_install() {
+ default
+
+ local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
+
+ # It's simplest to move this file after it's been installed.
+ dodir "${nagiosplugindir}"
+ mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-08-06 14:16 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2017-08-06 14:16 UTC (permalink / raw
To: gentoo-commits
commit: 081a59b58b22751e0c17994745a03b794ad3b423
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 5 23:09:56 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Aug 6 14:15:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=081a59b5
net-analyzer/nagios-check_rbl: disable the unintentional test suite.
Gentoo-Bug: 627082
Package-Manager: Portage-2.3.6, Repoman-2.3.1
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 3 +++
1 file changed, 3 insertions(+)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
index ab5f020ab44..028ce81b4ac 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -15,6 +15,9 @@ SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86"
IUSE=""
+# No, this is not redundant -- see bug 627082.
+RESTRICT=test
+
# The package's INSTALL/Makefile.PL files specify its dependencies.
#
# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-10-18 15:07 Sergei Trofimovich
0 siblings, 0 replies; 22+ messages in thread
From: Sergei Trofimovich @ 2017-10-18 15:07 UTC (permalink / raw
To: gentoo-commits
commit: b22fef3686d17aa101ed0cfdc04b36dd80cf6e6c
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 18 15:06:30 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Oct 18 15:06:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b22fef36
net-analyzer/nagios-check_rbl: stable 1.3.7-r1 for sparc (thanks to Rolf Eike Beer)
Package-Manager: Portage-2.3.11, Repoman-2.3.3
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
index cdb5ea2c5dd..af314b58ee8 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 hppa ~sparc x86"
+KEYWORDS="amd64 hppa sparc x86"
IUSE=""
# The package's INSTALL/Makefile.PL files specify its dependencies.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-10-18 15:07 Sergei Trofimovich
0 siblings, 0 replies; 22+ messages in thread
From: Sergei Trofimovich @ 2017-10-18 15:07 UTC (permalink / raw
To: gentoo-commits
commit: 2cc30f26431f5dfa531e0d54995b4f479571bd71
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 18 15:05:50 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Oct 18 15:05:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc30f26
net-analyzer/nagios-check_rbl: ~sparc keyworded (thanks to Rolf Eike Beer)
Package-Manager: Portage-2.3.11, Repoman-2.3.3
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild | 2 +-
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
index ab79f03df13..cdb5ea2c5dd 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.3.7-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 hppa x86"
+KEYWORDS="amd64 hppa ~sparc x86"
IUSE=""
# The package's INSTALL/Makefile.PL files specify its dependencies.
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
index 028ce81b4ac..9ba9a19d26c 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
+KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-11-07 18:22 Thomas Deutschmann
0 siblings, 0 replies; 22+ messages in thread
From: Thomas Deutschmann @ 2017-11-07 18:22 UTC (permalink / raw
To: gentoo-commits
commit: 7f0800f2316c2c25e08627a3871600925357cf28
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 7 18:15:03 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Nov 7 18:22:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0800f2
net-analyzer/nagios-check_rbl: x86 stable (bug #627066)
Package-Manager: Portage-2.3.13, Repoman-2.3.4
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
index 9ba9a19d26c..06dfa191f10 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~sparc x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-11-08 22:27 Sergei Trofimovich
0 siblings, 0 replies; 22+ messages in thread
From: Sergei Trofimovich @ 2017-11-08 22:27 UTC (permalink / raw
To: gentoo-commits
commit: 0150ce83b85e04506e40c8db268c7fe87c84aaa4
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 8 22:21:44 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 8 22:27:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0150ce83
net-analyzer/nagios-check_rbl: stable 1.4.1 for sparc, bug #627066 (thanks to Rolf Eike Beer)
Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
index 06dfa191f10..555f82fc766 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~sparc x86"
+KEYWORDS="~amd64 ~hppa sparc x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-11-09 0:27 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2017-11-09 0:27 UTC (permalink / raw
To: gentoo-commits
commit: 9e0dbdde903c6b923896d54cd4cf2d6526dea3c5
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 8 23:52:29 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Thu Nov 9 00:27:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e0dbdde
net-analyzer/nagios-check_rbl: maintainer stabilization on amd64.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
index 555f82fc766..c307c420402 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa sparc x86"
+KEYWORDS="amd64 ~hppa sparc x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2017-11-24 16:51 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2017-11-24 16:51 UTC (permalink / raw
To: gentoo-commits
commit: d5aab7e43c05d7e3c659bc462900623b11909d65
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 16:49:37 2017 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 16:49:37 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5aab7e4
net-analyzer/nagios-check_rbl: v1.4.1 stable on hppa thanks to Rolf Eike Beer.
Closes: https://bugs.gentoo.org/627066
Package-Manager: Portage-2.3.13, Repoman-2.3.3
net-analyzer/nagios-check_rbl/Manifest | 2 +-
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index f624bbf5384..767bdcc0af8 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1,2 +1,2 @@
DIST check_rbl-1.3.7-r1.tar.gz 38565 SHA256 dbe76bd24ab9404817f74fd895dfeb1c55d296fe9a8264a4c631c5139ea31247 SHA512 a918090b2c1e93095b155215de559b0d7f35c949e9c9d27c7b6dc91e21391b03d716154dd90ea1a68deeabce5afde3c9e5746190910f18bf1d3e08ff20d02431 WHIRLPOOL 31a13de7cfc650deea83d8c7cf148358046260502c34e3d643ad53c1e96854b0194da80fac3d95cf5fa06b01d9224fb9716ce3e281148ce174f89e75bb418023
-DIST check_rbl-1.4.1.tar.gz 47585 SHA256 6121e01be4b65f4ed34e8387366a616ceef79f74e44322f68ea8d384c193a177 SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb WHIRLPOOL 535cbfad9cb300e51526ea7127ed5c25a2274a0ade4aaa98e3755793fc82ac7adc91a34adba6af2a8d0708869317c33aeccfaaf5bf6c6b2f44974c0db9f99406
+DIST check_rbl-1.4.1.tar.gz 47585 BLAKE2B 24979d1579ef46f6d0626700bb8b9aa3f3acd4b422398ecbfa98909248fd6ffe61a763e377e7942d3078d8b91488f3fc0e2ab25f7c4821bcfa5cde08d000bd5c SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
index c307c420402..2c96f81393b 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="amd64 ~hppa sparc x86"
+KEYWORDS="amd64 hppa sparc x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2022-02-23 13:08 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2022-02-23 13:08 UTC (permalink / raw
To: gentoo-commits
commit: 643d480a4c984f2751201d808079060c593ae2b4
Author: Anton Fischl <github <AT> fischl-online <DOT> de>
AuthorDate: Sun Feb 20 08:22:54 2022 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 12:58:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643d480a
net-analyzer/nagios-check_rbl: bump to v1.6.3 and EAPI=8.
Closes: https://github.com/gentoo/gentoo/pull/24281
Signed-off-by: Anton Fischl <github <AT> fischl-online.de>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
net-analyzer/nagios-check_rbl/Manifest | 1 +
.../nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild | 58 ++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index 1b3800e794d7..eae4701c7ccc 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1 +1,2 @@
DIST check_rbl-1.4.1.tar.gz 47585 BLAKE2B 24979d1579ef46f6d0626700bb8b9aa3f3acd4b422398ecbfa98909248fd6ffe61a763e377e7942d3078d8b91488f3fc0e2ab25f7c4821bcfa5cde08d000bd5c SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb
+DIST check_rbl-1.6.3.tar.gz 50250 BLAKE2B cdaaf7252871c6a2cf34a1cacef36251b8526b73f4edb73fc1611a3426f350523928532bc78068438b8e71ec0e023da46749673aa5e9e1d5c6cd8b889f330305 SHA512 2fc84089eb9e41657f522aa7813776b3d46811759e177d031ff5d2f737d63c00897d50d5d878c1e5d5368ca1dde0b173e81b8a6f16fbb970270ef63d988add9b
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
new file mode 100644
index 000000000000..ada2a30fe7af
--- /dev/null
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Monitor whether or not a host is blacklisted"
+HOMEPAGE="https://github.com/matteocorti/check_rbl"
+
+MY_P="${P/nagios-/}"
+SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+IUSE=""
+
+# No, this is not redundant -- see bug 627082.
+RESTRICT=test
+
+# The package's INSTALL/Makefile.PL files specify its dependencies.
+#
+# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
+# * Data::Validate::IP (dev-perl/Data-Validate-IP)
+# * IO::Select (dev-lang/perl)
+# * Monitoring::Plugin (dev-perl/Monitoring-Plugin)
+# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin)
+# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin)
+# * Net::DNS (dev-perl/Net-DNS)
+# * Net::IP (dev-perl/Net-IP)
+# * Readonly (dev-perl/Readonly)
+# * Socket (virtual/perl-Socket)
+#
+RDEPEND="dev-lang/perl
+ dev-perl/Data-Validate-Domain
+ dev-perl/Data-Validate-IP
+ dev-perl/Monitoring-Plugin
+ dev-perl/Net-DNS
+ dev-perl/Net-IP
+ dev-perl/Readonly
+ virtual/perl-Socket"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+ perl Makefile.PL INSTALLDIRS=vendor || die
+}
+
+src_install() {
+ default
+
+ local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
+
+ # It's simplest to move this file after it's been installed.
+ dodir "${nagiosplugindir}"
+ mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2022-08-03 17:51 Arthur Zamarin
0 siblings, 0 replies; 22+ messages in thread
From: Arthur Zamarin @ 2022-08-03 17:51 UTC (permalink / raw
To: gentoo-commits
commit: d156093cfa7f97adac0c8cfb1b670738b642c7cd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 3 17:51:02 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 17:51:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d156093c
net-analyzer/nagios-check_rbl: Stabilize 1.6.3 sparc, #862885
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
index ada2a30fe7af..0c1a76c56fcb 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa sparc ~x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2022-08-12 14:27 Sam James
0 siblings, 0 replies; 22+ messages in thread
From: Sam James @ 2022-08-12 14:27 UTC (permalink / raw
To: gentoo-commits
commit: f52d196178f030218e33928cf0c199c33933fa94
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 12 14:26:41 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 12 14:26:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52d1961
net-analyzer/nagios-check_rbl: Stabilize 1.6.3 x86, #862885
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
index 0c1a76c56fcb..9b4bd0c2b400 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa sparc ~x86"
+KEYWORDS="~amd64 ~hppa sparc x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2022-08-29 12:38 Jakov Smolić
0 siblings, 0 replies; 22+ messages in thread
From: Jakov Smolić @ 2022-08-29 12:38 UTC (permalink / raw
To: gentoo-commits
commit: f29d33036fa160a3efed52406f9ceba685fc57d2
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 12:38:34 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 12:38:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f29d3303
net-analyzer/nagios-check_rbl: Stabilize 1.6.3 amd64, #862885
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
index 9b4bd0c2b400..9009b574e0d7 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa sparc x86"
+KEYWORDS="amd64 ~hppa sparc x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2022-08-30 10:06 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2022-08-30 10:06 UTC (permalink / raw
To: gentoo-commits
commit: 94d9c815f0bbd13a6a34f43bdc849520db7d149d
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 10:05:17 2022 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 10:05:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d9c815
net-analyzer/nagios-check_rbl: drop 1.4.1
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
net-analyzer/nagios-check_rbl/Manifest | 1 -
.../nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 56 ----------------------
2 files changed, 57 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index eae4701c7ccc..f9794ee78806 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1,2 +1 @@
-DIST check_rbl-1.4.1.tar.gz 47585 BLAKE2B 24979d1579ef46f6d0626700bb8b9aa3f3acd4b422398ecbfa98909248fd6ffe61a763e377e7942d3078d8b91488f3fc0e2ab25f7c4821bcfa5cde08d000bd5c SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb
DIST check_rbl-1.6.3.tar.gz 50250 BLAKE2B cdaaf7252871c6a2cf34a1cacef36251b8526b73f4edb73fc1611a3426f350523928532bc78068438b8e71ec0e023da46749673aa5e9e1d5c6cd8b889f330305 SHA512 2fc84089eb9e41657f522aa7813776b3d46811759e177d031ff5d2f737d63c00897d50d5d878c1e5d5368ca1dde0b173e81b8a6f16fbb970270ef63d988add9b
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
deleted file mode 100644
index 8f6e17721ea9..000000000000
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Monitor whether or not a host is blacklisted"
-HOMEPAGE="https://github.com/matteocorti/check_rbl"
-
-MY_P="${P/nagios-/}"
-SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-
-KEYWORDS="amd64 ~hppa sparc x86"
-IUSE=""
-
-# No, this is not redundant -- see bug 627082.
-RESTRICT=test
-
-# The package's INSTALL/Makefile.PL files specify its dependencies.
-#
-# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
-# * Data::Validate::IP (dev-perl/Data-Validate-IP)
-# * IO::Select (dev-lang/perl)
-# * Monitoring::Plugin (dev-perl/Monitoring-Plugin)
-# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin)
-# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin)
-# * Net::DNS (dev-perl/Net-DNS)
-# * Net::IP (dev-perl/Net-IP)
-# * Readonly (dev-perl/Readonly)
-#
-RDEPEND="dev-lang/perl
- dev-perl/Data-Validate-Domain
- dev-perl/Data-Validate-IP
- dev-perl/Monitoring-Plugin
- dev-perl/Net-DNS
- dev-perl/Net-IP
- dev-perl/Readonly"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- perl Makefile.PL INSTALLDIRS=vendor || die
-}
-
-src_install() {
- default
-
- local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
-
- # It's simplest to move this file after it's been installed.
- dodir "${nagiosplugindir}"
- mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2022-09-10 0:21 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2022-09-10 0:21 UTC (permalink / raw
To: gentoo-commits
commit: 5c91066fcef76c7baa4e87a21967c3138459c46b
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 9 23:53:57 2022 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Sep 10 00:19:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c91066f
net-analyzer/nagios-check_rbl: add 1.7.0
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
net-analyzer/nagios-check_rbl/Manifest | 1 +
.../nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild | 60 ++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index f9794ee78806..f5643f9d6de3 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1 +1,2 @@
DIST check_rbl-1.6.3.tar.gz 50250 BLAKE2B cdaaf7252871c6a2cf34a1cacef36251b8526b73f4edb73fc1611a3426f350523928532bc78068438b8e71ec0e023da46749673aa5e9e1d5c6cd8b889f330305 SHA512 2fc84089eb9e41657f522aa7813776b3d46811759e177d031ff5d2f737d63c00897d50d5d878c1e5d5368ca1dde0b173e81b8a6f16fbb970270ef63d988add9b
+DIST check_rbl-1.7.0.tar.gz 51673 BLAKE2B 7e2d23ea5cd44082ebe9963326bc2a8517c737640fada229d0b65d64ac92ce50e80b675834f4bd7dbc56d653e0243558fe6f1c402b11498d48bc948d3facda57 SHA512 5b219362bfa736832e935c64019ee50b87d4f9cc2bce0ab4795eb4c59e03712adc9461cdd6624cbaf1d98a5afdd9f611dbdc58fd913a4478b0fef0664cddcf80
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild
new file mode 100644
index 000000000000..fe1663694bb6
--- /dev/null
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Monitor whether or not a host is blacklisted"
+HOMEPAGE="https://github.com/matteocorti/check_rbl"
+
+MY_P="${P/nagios-/}"
+SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+IUSE=""
+
+# No, this is not redundant -- see bug 627082.
+RESTRICT=test
+
+# The package's INSTALL/Makefile.PL files specify its dependencies.
+#
+# * Capture::Tiny (dev-perl/Capture-Tiny)
+# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
+# * Data::Validate::IP (dev-perl/Data-Validate-IP)
+# * IO::Select (dev-lang/perl)
+# * Monitoring::Plugin (dev-perl/Monitoring-Plugin)
+# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin)
+# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin)
+# * Net::DNS (dev-perl/Net-DNS)
+# * Net::IP (dev-perl/Net-IP)
+# * Readonly (dev-perl/Readonly)
+# * Socket (virtual/perl-Socket)
+#
+RDEPEND="dev-lang/perl
+ dev-perl/Capture-Tiny
+ dev-perl/Data-Validate-Domain
+ dev-perl/Data-Validate-IP
+ dev-perl/Monitoring-Plugin
+ dev-perl/Net-DNS
+ dev-perl/Net-IP
+ dev-perl/Readonly
+ virtual/perl-Socket"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+ perl Makefile.PL INSTALLDIRS=vendor || die
+}
+
+src_install() {
+ default
+
+ local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
+
+ # It's simplest to move this file after it's been installed.
+ dodir "${nagiosplugindir}"
+ mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
+}
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2023-06-09 18:09 Arthur Zamarin
0 siblings, 0 replies; 22+ messages in thread
From: Arthur Zamarin @ 2023-06-09 18:09 UTC (permalink / raw
To: gentoo-commits
commit: 3a3d1ffe01ccf51218835ec328bdb2881616b5da
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 9 18:09:30 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 9 18:09:30 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a3d1ffe
net-analyzer/nagios-check_rbl: Stabilize 1.7.0 sparc, #908136
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild
index fe1663694bb6..67e83f2d8f0d 100644
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild
+++ b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa sparc ~x86"
IUSE=""
# No, this is not redundant -- see bug 627082.
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
@ 2023-06-10 11:43 Michael Orlitzky
0 siblings, 0 replies; 22+ messages in thread
From: Michael Orlitzky @ 2023-06-10 11:43 UTC (permalink / raw
To: gentoo-commits
commit: 15a098e932142df50800214a53456df5f92e2452
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 10 11:32:54 2023 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Jun 10 11:32:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a098e9
net-analyzer/nagios-check_rbl: drop 1.6.3
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
net-analyzer/nagios-check_rbl/Manifest | 1 -
.../nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild | 58 ----------------------
2 files changed, 59 deletions(-)
diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
index f5643f9d6de3..49b67622e22b 100644
--- a/net-analyzer/nagios-check_rbl/Manifest
+++ b/net-analyzer/nagios-check_rbl/Manifest
@@ -1,2 +1 @@
-DIST check_rbl-1.6.3.tar.gz 50250 BLAKE2B cdaaf7252871c6a2cf34a1cacef36251b8526b73f4edb73fc1611a3426f350523928532bc78068438b8e71ec0e023da46749673aa5e9e1d5c6cd8b889f330305 SHA512 2fc84089eb9e41657f522aa7813776b3d46811759e177d031ff5d2f737d63c00897d50d5d878c1e5d5368ca1dde0b173e81b8a6f16fbb970270ef63d988add9b
DIST check_rbl-1.7.0.tar.gz 51673 BLAKE2B 7e2d23ea5cd44082ebe9963326bc2a8517c737640fada229d0b65d64ac92ce50e80b675834f4bd7dbc56d653e0243558fe6f1c402b11498d48bc948d3facda57 SHA512 5b219362bfa736832e935c64019ee50b87d4f9cc2bce0ab4795eb4c59e03712adc9461cdd6624cbaf1d98a5afdd9f611dbdc58fd913a4478b0fef0664cddcf80
diff --git a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild b/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
deleted file mode 100644
index 9009b574e0d7..000000000000
--- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.6.3.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Monitor whether or not a host is blacklisted"
-HOMEPAGE="https://github.com/matteocorti/check_rbl"
-
-MY_P="${P/nagios-/}"
-SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-
-KEYWORDS="amd64 ~hppa sparc x86"
-IUSE=""
-
-# No, this is not redundant -- see bug 627082.
-RESTRICT=test
-
-# The package's INSTALL/Makefile.PL files specify its dependencies.
-#
-# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
-# * Data::Validate::IP (dev-perl/Data-Validate-IP)
-# * IO::Select (dev-lang/perl)
-# * Monitoring::Plugin (dev-perl/Monitoring-Plugin)
-# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin)
-# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin)
-# * Net::DNS (dev-perl/Net-DNS)
-# * Net::IP (dev-perl/Net-IP)
-# * Readonly (dev-perl/Readonly)
-# * Socket (virtual/perl-Socket)
-#
-RDEPEND="dev-lang/perl
- dev-perl/Data-Validate-Domain
- dev-perl/Data-Validate-IP
- dev-perl/Monitoring-Plugin
- dev-perl/Net-DNS
- dev-perl/Net-IP
- dev-perl/Readonly
- virtual/perl-Socket"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- perl Makefile.PL INSTALLDIRS=vendor || die
-}
-
-src_install() {
- default
-
- local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
-
- # It's simplest to move this file after it's been installed.
- dodir "${nagiosplugindir}"
- mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
-}
^ permalink raw reply related [flat|nested] 22+ messages in thread
end of thread, other threads:[~2023-06-10 11:43 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-06 14:16 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/ Michael Orlitzky
-- strict thread matches above, loose matches on Subject: below --
2023-06-10 11:43 Michael Orlitzky
2023-06-09 18:09 Arthur Zamarin
2022-09-10 0:21 Michael Orlitzky
2022-08-30 10:06 Michael Orlitzky
2022-08-29 12:38 Jakov Smolić
2022-08-12 14:27 Sam James
2022-08-03 17:51 Arthur Zamarin
2022-02-23 13:08 Michael Orlitzky
2017-11-24 16:51 Michael Orlitzky
2017-11-09 0:27 Michael Orlitzky
2017-11-08 22:27 Sergei Trofimovich
2017-11-07 18:22 Thomas Deutschmann
2017-10-18 15:07 Sergei Trofimovich
2017-10-18 15:07 Sergei Trofimovich
2017-08-04 18:33 Michael Orlitzky
2017-02-04 16:39 Michael Orlitzky
2017-02-04 16:39 Michael Orlitzky
2017-02-04 10:54 Jeroen Roovers
2016-12-19 14:24 Tobias Klausmann
2016-07-09 16:14 Michael Orlitzky
2016-05-25 13:28 Michael Orlitzky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox