Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-check_rbl/
Date: Tue, 30 Aug 2022 10:07:02
Message-Id: 1661853917.94d9c815f0bbd13a6a34f43bdc849520db7d149d.mjo@gentoo
1 commit: 94d9c815f0bbd13a6a34f43bdc849520db7d149d
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 10:05:17 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 10:05:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d9c815
7
8 net-analyzer/nagios-check_rbl: drop 1.4.1
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11
12 net-analyzer/nagios-check_rbl/Manifest | 1 -
13 .../nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild | 56 ----------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/net-analyzer/nagios-check_rbl/Manifest b/net-analyzer/nagios-check_rbl/Manifest
17 index eae4701c7ccc..f9794ee78806 100644
18 --- a/net-analyzer/nagios-check_rbl/Manifest
19 +++ b/net-analyzer/nagios-check_rbl/Manifest
20 @@ -1,2 +1 @@
21 -DIST check_rbl-1.4.1.tar.gz 47585 BLAKE2B 24979d1579ef46f6d0626700bb8b9aa3f3acd4b422398ecbfa98909248fd6ffe61a763e377e7942d3078d8b91488f3fc0e2ab25f7c4821bcfa5cde08d000bd5c SHA512 3023aab6ba42dec46cb93eb2ef15e1998a1b3226bd1f143441e14a4271279ac9b24b85b9fc41a382eb203e5d2846b7f4ea4fe27db99d75b104d9182ea53079cb
22 DIST check_rbl-1.6.3.tar.gz 50250 BLAKE2B cdaaf7252871c6a2cf34a1cacef36251b8526b73f4edb73fc1611a3426f350523928532bc78068438b8e71ec0e023da46749673aa5e9e1d5c6cd8b889f330305 SHA512 2fc84089eb9e41657f522aa7813776b3d46811759e177d031ff5d2f737d63c00897d50d5d878c1e5d5368ca1dde0b173e81b8a6f16fbb970270ef63d988add9b
23
24 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
25 deleted file mode 100644
26 index 8f6e17721ea9..000000000000
27 --- a/net-analyzer/nagios-check_rbl/nagios-check_rbl-1.4.1.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -DESCRIPTION="Monitor whether or not a host is blacklisted"
36 -HOMEPAGE="https://github.com/matteocorti/check_rbl"
37 -
38 -MY_P="${P/nagios-/}"
39 -SRC_URI="https://github.com/matteocorti/check_rbl/releases/download/v${PV}/${MY_P}.tar.gz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -
44 -KEYWORDS="amd64 ~hppa sparc x86"
45 -IUSE=""
46 -
47 -# No, this is not redundant -- see bug 627082.
48 -RESTRICT=test
49 -
50 -# The package's INSTALL/Makefile.PL files specify its dependencies.
51 -#
52 -# * Data::Validate::Domain (dev-perl/Data-Validate-Domain)
53 -# * Data::Validate::IP (dev-perl/Data-Validate-IP)
54 -# * IO::Select (dev-lang/perl)
55 -# * Monitoring::Plugin (dev-perl/Monitoring-Plugin)
56 -# * Monitoring::Plugin::Getopt (dev-perl/Monitoring-Plugin)
57 -# * Monitoring::Plugin::Threshold (dev-perl/Monitoring-Plugin)
58 -# * Net::DNS (dev-perl/Net-DNS)
59 -# * Net::IP (dev-perl/Net-IP)
60 -# * Readonly (dev-perl/Readonly)
61 -#
62 -RDEPEND="dev-lang/perl
63 - dev-perl/Data-Validate-Domain
64 - dev-perl/Data-Validate-IP
65 - dev-perl/Monitoring-Plugin
66 - dev-perl/Net-DNS
67 - dev-perl/Net-IP
68 - dev-perl/Readonly"
69 -DEPEND="${RDEPEND}"
70 -
71 -S="${WORKDIR}/${MY_P}"
72 -
73 -src_configure() {
74 - perl Makefile.PL INSTALLDIRS=vendor || die
75 -}
76 -
77 -src_install() {
78 - default
79 -
80 - local nagiosplugindir=/usr/$(get_libdir)/nagios/plugins
81 -
82 - # It's simplest to move this file after it's been installed.
83 - dodir "${nagiosplugindir}"
84 - mv "${D}"/usr/bin/check_rbl "${D}"/"${nagiosplugindir}" || die
85 -}