summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2008-11-26 10:42:48 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2008-11-26 10:42:48 (GMT)
commit9bcfa9cdede27be34d11f42dfae3d8fd60fc92bc (patch)
tree77f11fd6fb26c9ac4d8a410983629927c70d5319
parented9a088b37dcb8ba56d397592f4e8230a6a011e5 (diff)
downloadmonitoring-plugins-9bcfa9cdede27be34d11f42dfae3d8fd60fc92bc.tar.gz
Disable dynamic versionning for releases, and allow generating version out of subversion.
This should be a definitive fix for systems with non-compilant make programs as the version will be taken from $(PACKAGE_VERSION) instead. At the same time I added code for generating svn-based version strings.
-rw-r--r--Makefile.am2
-rwxr-xr-xNP-VERSION-GEN19
-rw-r--r--configure.in3
-rw-r--r--plugins-root/Makefile.am10
-rw-r--r--plugins-scripts/Makefile.am10
-rw-r--r--plugins/Makefile.am10
6 files changed, 32 insertions, 22 deletions
diff --git a/Makefile.am b/Makefile.am
index 3cd939a..7032578 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -19,7 +19,7 @@ DEFS = -DLOCALEDIR=\"$(localedir)\"
19 19
20dist-hook: 20dist-hook:
21 make THANKS nagios-plugins.spec pkg/fedora/nagios-plugins.spec 21 make THANKS nagios-plugins.spec pkg/fedora/nagios-plugins.spec
22 echo ${VERSION} >$(distdir)/version 22 echo ${VERSION} >$(distdir)/release
23 23
24install-root: 24install-root:
25 cd plugins-root && $(MAKE) $@ 25 cd plugins-root && $(MAKE) $@
diff --git a/NP-VERSION-GEN b/NP-VERSION-GEN
index 1169710..f963e63 100755
--- a/NP-VERSION-GEN
+++ b/NP-VERSION-GEN
@@ -11,12 +11,8 @@ DEF_VER=1.4.13.git
11LF=' 11LF='
12' 12'
13 13
14# First see if there is a version file (included in release tarballs), 14# First try git-describe, then svn info, then default.
15# then try git-describe, then default. 15if test -d $SRC_ROOT/.git -o -f $SRC_ROOT/.git &&
16if test -f $SRC_ROOT/version
17then
18 VN=`cat $SRC_ROOT/version` || VN="$DEF_VER"
19elif test -d $SRC_ROOT/.git -o -f $SRC_ROOT/.git &&
20 VN=`cd $SRC_ROOT; git describe --abbrev=4 HEAD 2>/dev/null` && 16 VN=`cd $SRC_ROOT; git describe --abbrev=4 HEAD 2>/dev/null` &&
21 case "$VN" in 17 case "$VN" in
22 *$LF*) (exit 1) ;; 18 *$LF*) (exit 1) ;;
@@ -27,6 +23,17 @@ elif test -d $SRC_ROOT/.git -o -f $SRC_ROOT/.git &&
27 esac 23 esac
28then 24then
29 VN=`echo "$VN" | sed -e 's/^release-//' | sed -e 's/-/./g'`; 25 VN=`echo "$VN" | sed -e 's/^release-//' | sed -e 's/-/./g'`;
26elif test -d $SRC_ROOT/.svn -o -f $SRC_ROOT/.svn &&
27 VN=`cd $SRC_ROOT; svn info 2>/dev/null | grep '^Revision'` &&
28 case "$VN" in
29 *$LF*) (exit 1) ;;
30 Revision:*)
31 VN=`echo $VN | awk '{print $NF}'`
32 test "`svn status 2>/dev/null | grep '^[AMD]' | wc -l`" = 0 ||
33 VN="$VN-dirty" ;;
34 esac
35then
36 VN=`echo "trunk.$VN" | sed -e 's/-/./g'`;
30else 37else
31 VN="$DEF_VER" 38 VN="$DEF_VER"
32fi 39fi
diff --git a/configure.in b/configure.in
index 203166e..8cae534 100644
--- a/configure.in
+++ b/configure.in
@@ -98,6 +98,9 @@ AC_SUBST(PKG_ARCH)
98AC_SUBST(REV_DATESTAMP) 98AC_SUBST(REV_DATESTAMP)
99AC_SUBST(REV_TIMESTAMP) 99AC_SUBST(REV_TIMESTAMP)
100 100
101dnl Check if version file is present
102AM_CONDITIONAL([RELEASE_PRESENT], [test -f release])
103
101dnl Checks for programs. 104dnl Checks for programs.
102AC_PATH_PROG(PYTHON,python) 105AC_PATH_PROG(PYTHON,python)
103AC_PATH_PROG(SH,sh) 106AC_PATH_PROG(SH,sh)
diff --git a/plugins-root/Makefile.am b/plugins-root/Makefile.am
index ba2e9a2..3fb62a2 100644
--- a/plugins-root/Makefile.am
+++ b/plugins-root/Makefile.am
@@ -1,13 +1,13 @@
1## Process this file with automake to produce Makefile.in 1## Process this file with automake to produce Makefile.in
2 2
3if RELEASE_PRESENT
4NP_VERSION = $(PACKAGE_VERSION)
5else
3NP-VERSION-FILE: .FORCE-NP-VERSION-FILE 6NP-VERSION-FILE: .FORCE-NP-VERSION-FILE
4 @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN 7 @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN
5.FORCE-NP-VERSION-FILE: 8.FORCE-NP-VERSION-FILE:
6 9-include NP-VERSION-FILE
7## This is undocumented and could possibly break in future versions of 10endif
8## automake. See:
9## http://article.gmane.org/gmane.comp.sysutils.automake.general/10036
10@am__include@ @am__quote@NP-VERSION-FILE@am__quote@
11 11
12AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"' 12AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"'
13 13
diff --git a/plugins-scripts/Makefile.am b/plugins-scripts/Makefile.am
index 1970273..5c073ca 100644
--- a/plugins-scripts/Makefile.am
+++ b/plugins-scripts/Makefile.am
@@ -1,13 +1,13 @@
1## Process this file with automake to produce Makefile.in 1## Process this file with automake to produce Makefile.in
2 2
3if RELEASE_PRESENT
4NP_VERSION = $(PACKAGE_VERSION)
5else
3NP-VERSION-FILE: .FORCE-NP-VERSION-FILE 6NP-VERSION-FILE: .FORCE-NP-VERSION-FILE
4 @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN 7 @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN
5.FORCE-NP-VERSION-FILE: 8.FORCE-NP-VERSION-FILE:
6 9-include NP-VERSION-FILE
7## This is undocumented and could possibly break in future versions of 10endif
8## automake. See:
9## http://article.gmane.org/gmane.comp.sysutils.automake.general/10036
10@am__include@ @am__quote@NP-VERSION-FILE@am__quote@
11 11
12SUFFIXES = .pl .sh 12SUFFIXES = .pl .sh
13 13
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index fb1924f..0f6fbb6 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -1,13 +1,13 @@
1## Process this file with automake to produce Makefile.in 1## Process this file with automake to produce Makefile.in
2 2
3if RELEASE_PRESENT
4NP_VERSION = $(PACKAGE_VERSION)
5else
3NP-VERSION-FILE: .FORCE-NP-VERSION-FILE 6NP-VERSION-FILE: .FORCE-NP-VERSION-FILE
4 @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN 7 @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN
5.FORCE-NP-VERSION-FILE: 8.FORCE-NP-VERSION-FILE:
6 9-include NP-VERSION-FILE
7## This is undocumented and could possibly break in future versions of 10endif
8## automake. See:
9## http://article.gmane.org/gmane.comp.sysutils.automake.general/10036
10@am__include@ @am__quote@NP-VERSION-FILE@am__quote@
11 11
12AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"' 12AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"'
13 13