]> git.proxmox.com Git - mirror_spl.git/blame - config/spl-meta.m4
Fix automatically generated release number
[mirror_spl.git] / config / spl-meta.m4
CommitLineData
7fd629d4
BB
1dnl #
2dnl # DESCRIPTION:
3dnl # Read meta data from the META file. When building from a git repository
4dnl # the SPL_META_RELEASE field will be overwritten if there is an annotated
5dnl # tag matching the form SPL_META_NAME-SPL_META_VERSION-*. This allows
6dnl # for working builds to be uniquely identified using the git commit hash.
7dnl #
8dnl # The META file format is as follows:
9dnl # ^[ ]*KEY:[ \t]+VALUE$
10dnl #
11dnl # In other words:
12dnl # - KEY is separated from VALUE by a colon and one or more spaces/tabs.
13dnl # - KEY and VALUE are case sensitive.
14dnl # - Leading spaces are ignored.
15dnl # - First match wins for duplicate keys.
16dnl #
17dnl # A line can be commented out by preceding it with a '#' (or technically
18dnl # any non-space character since that will prevent the regex from
19dnl # matching).
20dnl #
21dnl # WARNING:
22dnl # Placing a colon followed by a space or tab (ie, ":[ \t]+") within the
23dnl # VALUE will prematurely terminate the string since that sequence is
24dnl # used as the awk field separator.
25dnl #
26dnl # KEYS:
27dnl # The following META keys are recognized:
28dnl # Name, Version, Release, Date, Author, LT_Current, LT_Revision, LT_Age
29dnl #
30dnl # Written by Chris Dunlap <cdunlap@llnl.gov>.
31dnl # Modified by Brian Behlendorf <behlendorf1@llnl.gov>.
32dnl #
dd529a30 33AC_DEFUN([SPL_AC_META], [
7fd629d4 34 AC_PROG_AWK
dd529a30 35 AC_MSG_CHECKING([metadata])
36
37 META="$srcdir/META"
c14183ad 38 _spl_ac_meta_type="none"
dd529a30 39 if test -f "$META"; then
c14183ad 40 _spl_ac_meta_type="META file"
dd529a30 41
7fd629d4 42 SPL_META_NAME=_SPL_AC_META_GETVAL([(Name|Project|Package)]);
abc3ca14
BB
43 if test -n "$SPL_META_NAME"; then
44 AC_DEFINE_UNQUOTED([SPL_META_NAME], ["$SPL_META_NAME"],
dd529a30 45 [Define the project name.]
46 )
abc3ca14 47 AC_SUBST([SPL_META_NAME])
dd529a30 48 fi
49
7fd629d4 50 SPL_META_VERSION=_SPL_AC_META_GETVAL([Version]);
abc3ca14
BB
51 if test -n "$SPL_META_VERSION"; then
52 AC_DEFINE_UNQUOTED([SPL_META_VERSION], ["$SPL_META_VERSION"],
dd529a30 53 [Define the project version.]
54 )
abc3ca14 55 AC_SUBST([SPL_META_VERSION])
dd529a30 56 fi
57
7fd629d4 58 SPL_META_RELEASE=_SPL_AC_META_GETVAL([Release]);
2c213707 59 if test ! -f ".nogitrelease" && git rev-parse --git-dir > /dev/null 2>&1; then
c4f38ddd 60 _match="${SPL_META_NAME}-${SPL_META_VERSION}"
c14183ad
BB
61 _alias=$(git describe --match=${_match} 2>/dev/null)
62 _release=$(echo ${_alias}|cut -f3- -d'-'|sed 's/-/_/g')
63 if test -n "${_release}"; then
64 SPL_META_RELEASE=${_release}
65 _spl_ac_meta_type="git describe"
8acfb2bc
BB
66 else
67 _match="${SPL_META_NAME}-${SPL_META_VERSION}-${SPL_META_RELEASE}"
68 _alias=$(git describe --match=${_match} 2>/dev/null)
69 _release=$(echo ${_alias}|cut -f3- -d'-'|sed 's/-/_/g')
70 if test -n "${_release}"; then
71 SPL_META_RELEASE=${_release}
72 _spl_ac_meta_type="git describe"
73 fi
c14183ad
BB
74 fi
75 fi
76
abc3ca14
BB
77 if test -n "$SPL_META_RELEASE"; then
78 AC_DEFINE_UNQUOTED([SPL_META_RELEASE], ["$SPL_META_RELEASE"],
dd529a30 79 [Define the project release.]
80 )
abc3ca14 81 AC_SUBST([SPL_META_RELEASE])
493972c8
BB
82
83 RELEASE="$SPL_META_RELEASE"
84 AC_SUBST([RELEASE])
dd529a30 85 fi
86
62032954
BB
87 SPL_META_LICENSE=_SPL_AC_META_GETVAL([License]);
88 if test -n "$SPL_META_LICENSE"; then
89 AC_DEFINE_UNQUOTED([SPL_META_LICENSE], ["$SPL_META_LICENSE"],
90 [Define the project license.]
91 )
92 AC_SUBST([SPL_META_LICENSE])
93 fi
94
abc3ca14 95 if test -n "$SPL_META_NAME" -a -n "$SPL_META_VERSION"; then
72e7de60 96 SPL_META_ALIAS="$SPL_META_NAME-$SPL_META_VERSION"
abc3ca14 97 test -n "$SPL_META_RELEASE" &&
72e7de60
BB
98 SPL_META_ALIAS="$SPL_META_ALIAS-$SPL_META_RELEASE"
99 AC_DEFINE_UNQUOTED([SPL_META_ALIAS],
100 ["$SPL_META_ALIAS"],
dd529a30 101 [Define the project alias string.]
102 )
72e7de60 103 AC_SUBST([SPL_META_ALIAS])
dd529a30 104 fi
105
7fd629d4 106 SPL_META_DATA=_SPL_AC_META_GETVAL([Date]);
abc3ca14
BB
107 if test -n "$SPL_META_DATA"; then
108 AC_DEFINE_UNQUOTED([SPL_META_DATA], ["$SPL_META_DATA"],
dd529a30 109 [Define the project release date.]
110 )
abc3ca14 111 AC_SUBST([SPL_META_DATA])
dd529a30 112 fi
113
7fd629d4 114 SPL_META_AUTHOR=_SPL_AC_META_GETVAL([Author]);
abc3ca14
BB
115 if test -n "$SPL_META_AUTHOR"; then
116 AC_DEFINE_UNQUOTED([SPL_META_AUTHOR], ["$SPL_META_AUTHOR"],
dd529a30 117 [Define the project author.]
118 )
abc3ca14 119 AC_SUBST([SPL_META_AUTHOR])
dd529a30 120 fi
121
122 m4_pattern_allow([^LT_(CURRENT|REVISION|AGE)$])
7fd629d4
BB
123 SPL_META_LT_CURRENT=_SPL_AC_META_GETVAL([LT_Current]);
124 SPL_META_LT_REVISION=_SPL_AC_META_GETVAL([LT_Revision]);
125 SPL_META_LT_AGE=_SPL_AC_META_GETVAL([LT_Age]);
abc3ca14
BB
126 if test -n "$SPL_META_LT_CURRENT" \
127 -o -n "$SPL_META_LT_REVISION" \
128 -o -n "$SPL_META_LT_AGE"; then
129 test -n "$SPL_META_LT_CURRENT" || SPL_META_LT_CURRENT="0"
130 test -n "$SPL_META_LT_REVISION" || SPL_META_LT_REVISION="0"
131 test -n "$SPL_META_LT_AGE" || SPL_META_LT_AGE="0"
132 AC_DEFINE_UNQUOTED([SPL_META_LT_CURRENT],
133 ["$SPL_META_LT_CURRENT"],
dd529a30 134 [Define the libtool library 'current'
135 version information.]
136 )
abc3ca14
BB
137 AC_DEFINE_UNQUOTED([SPL_META_LT_REVISION],
138 ["$SPL_META_LT_REVISION"],
dd529a30 139 [Define the libtool library 'revision'
140 version information.]
141 )
abc3ca14 142 AC_DEFINE_UNQUOTED([SPL_META_LT_AGE], ["$SPL_META_LT_AGE"],
dd529a30 143 [Define the libtool library 'age'
144 version information.]
145 )
abc3ca14
BB
146 AC_SUBST([SPL_META_LT_CURRENT])
147 AC_SUBST([SPL_META_LT_REVISION])
148 AC_SUBST([SPL_META_LT_AGE])
dd529a30 149 fi
150 fi
151
c14183ad 152 AC_MSG_RESULT([$_spl_ac_meta_type])
dd529a30 153 ]
154)
155
7fd629d4
BB
156dnl # _SPL_AC_META_GETVAL (KEY_NAME_OR_REGEX)
157dnl #
158dnl # Returns the META VALUE associated with the given KEY_NAME_OR_REGEX expr.
159dnl #
160dnl # Despite their resemblance to line noise,
161dnl # the "@<:@" and "@:>@" constructs are quadrigraphs for "[" and "]".
162dnl # <www.gnu.org/software/autoconf/manual/autoconf.html#Quadrigraphs>
163dnl #
164dnl # The "$[]1" and "$[]2" constructs prevent M4 parameter expansion
165dnl # so a literal $1 and $2 will be passed to the resulting awk script,
166dnl # whereas the "$1" will undergo M4 parameter expansion for the META key.
167dnl #
168AC_DEFUN([_SPL_AC_META_GETVAL],
169 [`$AWK -F ':@<:@ \t@:>@+' '$[]1 ~ /^ *$1$/ { print $[]2; exit }' $META`]dnl
dd529a30 170)