-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
check_rbl.spec
177 lines (128 loc) · 5.33 KB
/
check_rbl.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
%define version 1.7.4
%define release 0
%define sourcename check_rbl
%define packagename nagios-plugins-check-rbl
%define nagiospluginsdir %{_libdir}/nagios/plugins
# No binaries in this package
%define debug_package %{nil}
Summary: check_rbl is a Nagios plugin to check if an SMTP server is blacklisted
Name: %{packagename}
Obsoletes: check_rbl <= 100
Version: %{version}
Release: %{release}%{?dist}
License: GPLv3+
Packager: Matteo Corti <[email protected]>
Group: Applications/System
BuildRoot: %{_tmppath}/%{packagename}-%{version}-%{release}-root-%(%{__id_u} -n)
URL: https://github.com/matteocorti/check_rbl
Source: https://github.com/matteocorti/check_rbl/releases/download/v%{version}/check_rbl-%{version}.tar.gz
# Fedora build requirement (not needed for EPEL{4,5})
BuildRequires: perl(ExtUtils::MakeMaker)
# Fedora build requirement (EPEL >=9, Fedora >= 38)
BuildRequires: perl(FindBin) make
Requires: perl-Module-Install perl-Readonly perl-Monitoring-Plugin perl-Test-Simple perl-Perl-Critic rpm-build perl-Net-DNS perl-Net-IP perl-Data-Validate-IP perl-App-cpanminus perl-Capture-Tiny
Requires: perl(Data::Validate::Domain)
%description
check_rbl is a Nagios plugin to check if an SMTP server is blacklisted
%prep
%setup -q -n %{sourcename}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor \
INSTALLSCRIPT=%{nagiospluginsdir} \
INSTALLVENDORSCRIPT=%{nagiospluginsdir}
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make pure_install PERL_INSTALL_ROOT=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
find %{buildroot} -type f -name "*.pod" -exec rm -f {} \;
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
%{_fixperms} %{buildroot}/*
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS Changes NEWS README.md TODO COPYING COPYRIGHT
%{nagiospluginsdir}/%{sourcename}
%{_mandir}/man1/%{sourcename}.1*
%changelog
* Fri Sep 20 2024 Matteo Corti <[email protected]> - 1.7.4-0
- Update to 1.7.4
* Wed Mar 27 2024 Matteo Corti <[email protected]> - 1.7.3-0
- Update to 1.7.3
* Thu Dec 28 2023 Peter Bieringer <[email protected]> - 1.7.2-1
- Add BuildRequirement for EPEL >= 9 and Fedora >= 38: perl(FindBin) make
- Add Requirement perl(Data::Validate::Domain)
* Thu Jun 29 2023 Matteo Corti <[email protected]> - 1.7.2-0
- Update to 1.7.2
* Mon Apr 10 2023 Matteo Corti <[email protected]> - 1.7.1-0
- Update to 1.7.1
* Mon Aug 8 2022 Matteo Corti <[email protected]> - 1.7.0-1
- Updated the package dependencies
* Sun Aug 7 2022 Matteo Corti <[email protected]> - 1.7.0-0
- Update to 1.7.0
* Thu May 12 2022 Matteo Corti <[email protected]> - 1.6.4-0
- Update to 1.6.4
* Thu Dec 16 2021 Matteo Corti <[email protected]> - 1.6.3-0
- Update to 1.6.3
* Tue Jun 1 2021 Matteo Corti <[email protected]> - 1.6.2-0
- Update to 1.6.2
w
* Thu May 27 2021 Matteo Corti <[email protected]> - 1.6.1-0
- Update to 1.6.1
* Thu May 27 2021 Matteo Corti <[email protected]> - 1.6.0-0
- Update to 1.6.0
* Sun Jan 3 2021 Matteo Corti <[email protected]> - 1.5.7-0
- Update to 1.5.7
* Mon Nov 30 2020 Matteo Corti <[email protected]> - 1.5.6-0
- Update to 1.5.6
* Tue May 26 2020 Matteo Corti <[email protected]> - 1.5.4-0
- Update to 1.5.4
* Tue Dec 24 2019 Matteo Corti <[email protected]> - 1.5.3-0
- Update to 1.5.3
* Tue Dec 03 2019 Matteo Corti <[email protected]> - 1.5.2-0
- Update to 1.5.2
* Mon Jun 03 2019 Matteo Corti <[email protected]> - 1.5.0-0
- Update to 1.5.0
* Sun Jun 02 2019 Matteo Corti <[email protected]> - 1.4.5-0
- Update to 1.4.5
* Thu Feb 28 2019 Matteo Corti <[email protected]> - 1.4.4-0
- Update to 1.4.4
* Wed May 30 2018 Matteo Corti <[email protected]> - 1.4.3-0
- Update to 1.4.3
* Sun May 27 2018 Matteo Corti <[email protected]> - 1.4.2-0
- Update to 1.4.2
* Mon Jul 17 2017 Matteo Corti <[email protected]> - 1.4.1-0
- Update to 1.4.1
* Tue Apr 18 2017 Matteo Corti <[email protected]> - 1.4.0-0
- Update to 1.4.0
* Wed Dec 30 2015 Matteo Corti <[email protected]> - 1.3.8-0
- Update to 1.3.8
* Sun Feb 1 2015 Matteo Corti <[email protected]> - 1.3.7-0
- Update to 1.3.7 (using Monitoring::Plugins)
* Fri Dec 5 2014 Matteo Corti <[email protected]> - 1.3.6-0
- Updated to 1.3.6 (removed dependency on Data::Dumper)
* Sat Sep 20 2014 Matteo Corti <[email protected]> - 1.3.5-0
- Updated to 1.3.5
* Fri Sep 19 2014 Matteo Corti <[email protected]> - 1.3.4-0
- Updated to 1.3.4
* Sat Aug 9 2014 Matteo Corti <[email protected]> - 1.3.3-0
- updated to 1.3.3
* Thu Jan 30 2014 Matteo Corti <[email protected]> - 1.3.2-0
- Dependencies and documentation update
* Mon Jul 11 2011 Matteo Corti <[email protected]> - 1.3.0-0
- Updated to 1.3.0 (whitelistings support)
* Tue Mar 22 2011 Matteo Corti <[email protected]> - 1.2.2-0
- Updated to 1.2.2 (bug fix) and renamed the package
* Mon Jul 5 2010 Matteo Corti <[email protected]> - 1.2.1-0
- Updated to 1.2.1 (bug fix)
* Thu Apr 8 2010 Matteo Corti <[email protected]> - 1.2.0-0
- Updated to 1.2.0 and improved the SPEC file
* Tue Oct 27 2009 Matteo Corti <[email protected]> - 1.1.0-0
- Updated to 1.1.0 (parallel checks)
* Thu Jan 22 2009 Matteo Corti <[email protected]> - 1.0.2-0
- --retry command line argument
* Tue Jan 6 2009 Matteo Corti <[email protected]> - 1.0.1-0
- Execution time in the performance data
* Mon Dec 29 2008 Matteo Corti <[email protected]> - 1.0.0-0
- Initial release