[Pkg-nagios-changes] [pkg-nagios-plugins-contrib] 02/08: check_ssl_cert: Update to 1.16.1 (No source changes)
Jan Wagner
waja at moszumanska.debian.org
Sun Mar 30 20:53:45 UTC 2014
This is an automated email from the git hooks/post-receive script.
waja pushed a commit to branch master
in repository pkg-nagios-plugins-contrib.
commit 8fcc4d95708d27fc4f5c70856fb614c96c79a478
Author: Jan Wagner <waja at cyconet.org>
Date: Sun Mar 30 14:23:53 2014 +0200
check_ssl_cert: Update to 1.16.1 (No source changes)
---
check_ssl_cert/check_ssl_cert-1.16.0/VERSION | 1 -
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/AUTHORS | 1 +
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/COPYING | 0
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/COPYRIGHT | 0
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/ChangeLog | 4 ++++
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/INSTALL | 0
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/Makefile | 8 +++++++-
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/NEWS | 1 +
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/README | 0
.../{check_ssl_cert-1.16.0 => check_ssl_cert-1.16.1}/TODO | 0
check_ssl_cert/check_ssl_cert-1.16.1/VERSION | 1 +
.../check_ssl_cert | 8 ++++----
.../check_ssl_cert.1 | 2 +-
.../check_ssl_cert.spec | 5 ++++-
.../test/cabundle.crt | 0
.../test/cacert.crt | 0
.../test/unit_tests.sh | 0
check_ssl_cert/control | 2 +-
check_ssl_cert/src | 2 +-
19 files changed, 25 insertions(+), 10 deletions(-)
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/VERSION b/check_ssl_cert/check_ssl_cert-1.16.0/VERSION
deleted file mode 100644
index 15b989e..0000000
--- a/check_ssl_cert/check_ssl_cert-1.16.0/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-1.16.0
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/AUTHORS b/check_ssl_cert/check_ssl_cert-1.16.1/AUTHORS
similarity index 96%
rename from check_ssl_cert/check_ssl_cert-1.16.0/AUTHORS
rename to check_ssl_cert/check_ssl_cert-1.16.1/AUTHORS
index 06b842e..2c9a0a2 100644
--- a/check_ssl_cert/check_ssl_cert-1.16.0/AUTHORS
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/AUTHORS
@@ -32,6 +32,7 @@ Thanks:
* Many thanks to Christian Ruppert for the XMPP patch
* Many thanks to Robin H. Johnson for the 'timeout' patch
* Many thanks to Max Winterstein for the SSL version patch
+* Many thanks to Colin Smith for the RPM build Makefile patch
# File version information:
# $Id: AUTHORS 1103 2009-12-07 07:49:19Z corti $
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/COPYING b/check_ssl_cert/check_ssl_cert-1.16.1/COPYING
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/COPYING
rename to check_ssl_cert/check_ssl_cert-1.16.1/COPYING
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/COPYRIGHT b/check_ssl_cert/check_ssl_cert-1.16.1/COPYRIGHT
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/COPYRIGHT
rename to check_ssl_cert/check_ssl_cert-1.16.1/COPYRIGHT
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/ChangeLog b/check_ssl_cert/check_ssl_cert-1.16.1/ChangeLog
similarity index 98%
rename from check_ssl_cert/check_ssl_cert-1.16.0/ChangeLog
rename to check_ssl_cert/check_ssl_cert-1.16.1/ChangeLog
index 5d2e89e..4cd8b08 100644
--- a/check_ssl_cert/check_ssl_cert-1.16.0/ChangeLog
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/ChangeLog
@@ -1,3 +1,7 @@
+2014-02-28 Matteo Corti <matteo.corti at id.ethz.ch>
+
+ * Makefile: added a target to build an rpm
+
2013-12-23 Matteo Corti <matteo.corti at id.ethz.ch>
* check_ssl_cert: added the --tls1 option to force TLS 1
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/INSTALL b/check_ssl_cert/check_ssl_cert-1.16.1/INSTALL
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/INSTALL
rename to check_ssl_cert/check_ssl_cert-1.16.1/INSTALL
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/Makefile b/check_ssl_cert/check_ssl_cert-1.16.1/Makefile
similarity index 84%
rename from check_ssl_cert/check_ssl_cert-1.16.0/Makefile
rename to check_ssl_cert/check_ssl_cert-1.16.1/Makefile
index 3b3fa99..7950260 100644
--- a/check_ssl_cert/check_ssl_cert-1.16.0/Makefile
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/Makefile
@@ -27,11 +27,17 @@ version_check:
clean:
rm -f *~
+ rm -rf rpmroot
test:
( cd test && ./unit_tests.sh )
-.PHONY: install clean test
+rpm: dist
+ mkdir -p rpmroot/SOURCES rpmroot/BUILD
+ cp $(DIST_DIR).tar.gz rpmroot/SOURCES
+ rpmbuild --define "_topdir `pwd`/rpmroot" -ba check_ssl_cert.spec
+
+.PHONY: install clean test rpm
# File version information:
# $Id: AUTHORS 1103 2009-12-07 07:49:19Z corti $
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/NEWS b/check_ssl_cert/check_ssl_cert-1.16.1/NEWS
similarity index 98%
rename from check_ssl_cert/check_ssl_cert-1.16.0/NEWS
rename to check_ssl_cert/check_ssl_cert-1.16.1/NEWS
index 4cf894a..e9ae445 100644
--- a/check_ssl_cert/check_ssl_cert-1.16.0/NEWS
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/NEWS
@@ -1,3 +1,4 @@
+2014-02-28 Version 1.16.1 Added a Make target for the RPM package
2013-12-23 Version 1.16.0 Added an option to force TLS version 1
2013-07-29 Version 1.15.0 Added an option to force a certain SSL version (thanks
to Max Winterstein)
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/README b/check_ssl_cert/check_ssl_cert-1.16.1/README
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/README
rename to check_ssl_cert/check_ssl_cert-1.16.1/README
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/TODO b/check_ssl_cert/check_ssl_cert-1.16.1/TODO
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/TODO
rename to check_ssl_cert/check_ssl_cert-1.16.1/TODO
diff --git a/check_ssl_cert/check_ssl_cert-1.16.1/VERSION b/check_ssl_cert/check_ssl_cert-1.16.1/VERSION
new file mode 100644
index 0000000..41c11ff
--- /dev/null
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/VERSION
@@ -0,0 +1 @@
+1.16.1
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert b/check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert
similarity index 99%
rename from check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert
rename to check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert
index b66db69..8f71b63 100755
--- a/check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert
@@ -19,15 +19,15 @@
# enable substitution with:
# $ svn propset svn:keywords "Id Revision HeadURL Source Date"
#
-# $Id: check_ssl_cert 1348 2013-12-23 08:07:44Z corti $
-# $Revision: 1348 $
+# $Id: check_ssl_cert 1353 2014-02-28 10:32:11Z corti $
+# $Revision: 1353 $
# $HeadURL: https://svn.id.ethz.ch/nagios_plugins/check_ssl_cert/check_ssl_cert $
-# $Date: 2013-12-23 09:07:44 +0100 (Mon, 23 Dec 2013) $
+# $Date: 2014-02-28 11:32:11 +0100 (Fri, 28 Feb 2014) $
################################################################################
# Constants
-VERSION=1.16.0
+VERSION=1.16.1
SHORTNAME="SSL_CERT"
VALID_ATTRIBUTES=",startdate,enddate,subject,issuer,modulus,serial,hash,email,ocsp_uri,fingerprint,"
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert.1 b/check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert.1
similarity index 98%
rename from check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert.1
rename to check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert.1
index e8d1f6f..76bf047 100644
--- a/check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert.1
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert.1
@@ -1,7 +1,7 @@
.\" Process this file with
.\" groff -man -Tascii foo.1
.\"
-.TH "check_ssl_cert" 1 "May, 2013" "1.16.0" "USER COMMANDS"
+.TH "check_ssl_cert" 1 "May, 2013" "1.16.1" "USER COMMANDS"
.SH NAME
check_ssl_cert \- checks the validity of X.509 certificates
.SH SYNOPSIS
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert.spec b/check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert.spec
similarity index 97%
rename from check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert.spec
rename to check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert.spec
index cf044c8..521fd30 100644
--- a/check_ssl_cert/check_ssl_cert-1.16.0/check_ssl_cert.spec
+++ b/check_ssl_cert/check_ssl_cert-1.16.1/check_ssl_cert.spec
@@ -6,7 +6,7 @@
# $Date: 2010-02-16 21:06:11 +0100 (Tue, 16 Feb 2010) $
################################################################################
-%define version 1.16.0
+%define version 1.16.1
%define release 0
%define sourcename check_ssl_cert
%define packagename nagios-plugins-check_ssl_cert
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/%{sourcename}.1*
%changelog
+* Fri Feb 28 2014 Matteo Corti <matteo.corti at id.ethz.ch> - 1.16.1-0
+- Updated to 1.16.1 (rpm make target)
+
* Mon Dec 23 2013 Matteo Corti <matteo.corti at id.ethz.ch> - 1.16.0-0
- Udated to 1.16.0 (force TLS)
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/test/cabundle.crt b/check_ssl_cert/check_ssl_cert-1.16.1/test/cabundle.crt
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/test/cabundle.crt
rename to check_ssl_cert/check_ssl_cert-1.16.1/test/cabundle.crt
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/test/cacert.crt b/check_ssl_cert/check_ssl_cert-1.16.1/test/cacert.crt
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/test/cacert.crt
rename to check_ssl_cert/check_ssl_cert-1.16.1/test/cacert.crt
diff --git a/check_ssl_cert/check_ssl_cert-1.16.0/test/unit_tests.sh b/check_ssl_cert/check_ssl_cert-1.16.1/test/unit_tests.sh
similarity index 100%
rename from check_ssl_cert/check_ssl_cert-1.16.0/test/unit_tests.sh
rename to check_ssl_cert/check_ssl_cert-1.16.1/test/unit_tests.sh
diff --git a/check_ssl_cert/control b/check_ssl_cert/control
index d528f01..72d8e4b 100644
--- a/check_ssl_cert/control
+++ b/check_ssl_cert/control
@@ -1,7 +1,7 @@
Uploaders: Jan Wagner <waja at cyconet.org>
Recommends: openssl
Suggests: expect
-Version: 1.16.0
+Version: 1.16.1
Homepage: https://trac.id.ethz.ch/projects/nagios_plugins/wiki/check_ssl_cert
Watch: https://trac.id.ethz.ch/projects/nagios_plugins/wiki/check_ssl_cert check_ssl_cert-([0-9.]+)\.tar\.gz
Description: plugin to check the CA and validity of an
diff --git a/check_ssl_cert/src b/check_ssl_cert/src
index 7032a0f..81440a0 120000
--- a/check_ssl_cert/src
+++ b/check_ssl_cert/src
@@ -1 +1 @@
-check_ssl_cert-1.16.0/
\ No newline at end of file
+check_ssl_cert-1.16.1/
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-nagios/pkg-nagios-plugins-contrib
More information about the Pkg-nagios-changes
mailing list