~ubuntu-branches/ubuntu/wily/nagios-plugins-contrib/wily

« back to all changes in this revision

Viewing changes to check_rbl/check_rbl-1.3.0/check_rbl.spec

  • Committer: Package Import Robot
  • Author(s): Bernd Zeimetz, Bernd Zeimetz, Jan Wagner
  • Date: 2014-01-06 12:56:27 UTC
  • Revision ID: package-import@ubuntu.com-20140106125627-2s0z1pq8g0e5ptji
Tags: 9.20140106
[ Bernd Zeimetz ]
* [63ddfa7a] Make checksum file readable for nagios.
* [583b6cde] Avoid line overflows due to expansion of $0.
* [9895bf1b] Merge pull request #18 from waja/solid.net
  solid.net seems expired (maybe come back in the future)
* [31a0dc1f] Fix POD encoding in check_rbl.
  Thanks to David Suárez (Closes: #724175)
* [a58ff4e7] Run dh_python2 for plugins and normal modules.
* [cd30e982] Add check_graphite.
* [e234911d] Auto update of debian/copyright
* [cb276d08] Auto update of debian/control
* [9dc17c93] Merge remote-tracking branch 'github/master'
* [4e577da9] Revert accidentally merged, duplicated bugfix.
  This reverts commit 98008e4aea3687cff8c7ab3f871809e219591cde.
* [e8387d2a] Merge pull request #23 from waja/update_check_rbl_1.3.1.
  Update check rbl 1.3.1
* [826a436e] Merge pull request #24 from waja/update_check_webinject_1.80.
  Update check_webinject to 1.80
* [5c2907b0] Merge pull request #25 from waja/update_check_whois_1.14.
  Update check_whois to 1.14
* [e8c11f0a] Merge pull request #26 from waja/fix_check_rbl_patch.
  Remove accidently double added check_rbl/disable_solid.net in patch seri...
* [bfb67e88] Use dh --with autotools_dev. (Closes: #727468)
* [363af25f] Auto update of debian/control
* [952811b3] Run dh --with autotools_dev in the clean target, too.
* [8898d503] Merge pull request #27 from waja/check_cups.
  Check cups
* [8abc4359] Merge pull request #28 from waja/check_mongodb.
  Add check_mongodb plugin
* [423e59f0] Merge pull request #30 from waja/fix_check_rbl.
  Fix version of check_rbl in control file
* [00be70e5] Merge pull request #33 from waja/check_bgpstate.
  Add check_bgpstate plugin
* [9591a3ca] Merge pull request #29 from waja/check_drbd.
  Add check_drdb plugin
* [5f531a44] Merge pull request #32 from waja/fix_check_webinject_epn.
  Disable epn for check_webinject, cause it leaves temp files around
* [ef8ba64d] Remove 'read LICENSE ...' from check_graphite/copyright

[ Jan Wagner ]
* [5c207ef5] Add check_snmp_time plugin

[ Bernd Zeimetz ]
* [a6165e60] Merge remote-tracking branch 'origin/master'
* [de5770f4] Merge remote-tracking branch 'github/master'
* [41c9df6a] Merge pull request #38 from evgeni/ignore-ganeti
  check_libs: ignore /var/lib/ganeti/
* [4badebed] Merge pull request #37 from evgeni/check-raid-305.
  Update check_raid to 3.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
################################################################################
2
 
# File version information:
3
 
# $Id: check_rbl.spec 1264 2011-07-11 05:45:43Z corti $
4
 
# $Revision: 1264 $
5
 
# $HeadURL: https://svn.id.ethz.ch/nagios_plugins/check_rbl/check_rbl.spec $
6
 
# $Date: 2011-07-11 07:45:43 +0200 (Mon, 11 Jul 2011) $
7
 
################################################################################
8
 
 
9
 
%define version          1.3.0
10
 
%define release          0
11
 
%define sourcename       check_rbl
12
 
%define packagename      nagios-plugins-check-rbl
13
 
%define nagiospluginsdir %{_libdir}/nagios/plugins
14
 
 
15
 
# No binaries in this package
16
 
%define debug_package %{nil}
17
 
 
18
 
Summary:   check_rbl is a Nagios plugin to check if an SMTP server is blacklisted
19
 
Name:      %{packagename}
20
 
Obsoletes: check_rbl
21
 
Version:   %{version}
22
 
Release:   %{release}%{?dist}
23
 
License:   GPLv3+
24
 
Packager:  Matteo Corti <matteo.corti@id.ethz.ch>
25
 
Group:     Applications/System
26
 
BuildRoot: %{_tmppath}/%{packagename}-%{version}-%{release}-root-%(%{__id_u} -n)
27
 
URL:       https://trac.id.ethz.ch/projects/nagios_plugins/wiki/check_rbl
28
 
Source:    http://www.id.ethz.ch/people/allid_list/corti/%{sourcename}-%{version}.tar.gz
29
 
 
30
 
# Fedora build requirement (not needed for EPEL{4,5})
31
 
BuildRequires: perl(ExtUtils::MakeMaker)
32
 
 
33
 
Requires:  nagios-plugins
34
 
 
35
 
%description
36
 
check_rbl is a Nagios plugin to check if an SMTP server is blacklisted
37
 
 
38
 
%prep
39
 
%setup -q -n %{sourcename}-%{version}
40
 
 
41
 
%build
42
 
%{__perl} Makefile.PL INSTALLDIRS=vendor \
43
 
    INSTALLSCRIPT=%{nagiospluginsdir} \
44
 
    INSTALLVENDORSCRIPT=%{nagiospluginsdir}
45
 
make %{?_smp_mflags}
46
 
 
47
 
%install
48
 
rm -rf %{buildroot}
49
 
make pure_install PERL_INSTALL_ROOT=%{buildroot}
50
 
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
51
 
find %{buildroot} -type f -name "*.pod" -exec rm -f {} \;
52
 
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
53
 
%{_fixperms} %{buildroot}/*
54
 
 
55
 
%clean
56
 
rm -rf %{buildroot}
57
 
 
58
 
%files
59
 
%defattr(-,root,root,-)
60
 
%doc AUTHORS Changes NEWS README TODO COPYING COPYRIGHT
61
 
%{nagiospluginsdir}/%{sourcename}
62
 
%{_mandir}/man1/%{sourcename}.1*
63
 
 
64
 
%changelog
65
 
* Mon Jul 11 2011 Matteo Corti <matteo.corti@id.ethz.ch> - 1.3.0-0
66
 
- Updated to 1.3.0 (whitelistings support)
67
 
 
68
 
* Tue Mar 22 2011 Matteo Corti <matteo.corti@id.ethz.ch> - 1.2.2-0
69
 
- Updated to 1.2.2 (bug fix) and renamed the package
70
 
 
71
 
* Mon Jul  5 2010 Matteo Corti <matteo.corti@id.ethz.ch> - 1.2.1-0
72
 
- Updated to 1.2.1 (bug fix)
73
 
 
74
 
* Thu Apr  8 2010 Matteo Corti <matteo.corti@id.ethz.ch> - 1.2.0-0
75
 
- Updated to 1.2.0 and imprved the SPEC file
76
 
 
77
 
* Tue Oct 27 2009 Matteo Corti <matteo.corti@id.ethz.ch> - 1.1.0-0
78
 
- Updated to 1.1.0 (parallel checks)
79
 
 
80
 
* Thu Jan 22 2009 Matteo Corti <matteo.corti@id.ethz.ch> - 1.0.2-0
81
 
- --retry command line argument
82
 
 
83
 
* Tue Jan  6 2009 Matteo Corti <matteo.corti@id.ethz.ch> - 1.0.1-0
84
 
- Execution time in the performance data
85
 
 
86
 
* Mon Dec 29 2008 Matteo Corti <matteo.corti@id.ethz.ch> - 1.0.0-0
87
 
- Initial release
88