Replace the ZFS_AC_META perl dependency with awk
The only remaining perl dependency is part of the ZFS_AC_META macro. By eliminating this and replacing it with awk we can avoid the need to pull in perl to rebuild the packages. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #1380
This commit is contained in:
parent
c8122d2504
commit
d17eeafbf0
|
@ -1,14 +1,35 @@
|
||||||
###############################################################################
|
dnl #
|
||||||
# Written by Chris Dunlap <cdunlap@llnl.gov>.
|
dnl # DESCRIPTION:
|
||||||
# Modified by Brian Behlendorf <behlendorf1@llnl.gov>.
|
dnl # Read meta data from the META file. When building from a git repository
|
||||||
###############################################################################
|
dnl # the ZFS_META_RELEASE field will be overwritten if there is an annotated
|
||||||
# ZFS_AC_META: Read metadata from the META file. When building from a
|
dnl # tag matching the form ZFS_META_NAME-ZFS_META_VERSION-*. This allows
|
||||||
# git repository the ZFS_META_RELEASE field will be overwritten if there
|
dnl # for working builds to be uniquely identified using the git commit hash.
|
||||||
# is an annotated tag matching the form ZFS_META_NAME-ZFS_META_VERSION-*.
|
dnl #
|
||||||
# This allows for working builds to be uniquely identified using the git
|
dnl # The META file format is as follows:
|
||||||
# commit hash.
|
dnl # ^[ ]*KEY:[ \t]+VALUE$
|
||||||
###############################################################################
|
dnl #
|
||||||
|
dnl # In other words:
|
||||||
|
dnl # - KEY is separated from VALUE by a colon and one or more spaces/tabs.
|
||||||
|
dnl # - KEY and VALUE are case sensitive.
|
||||||
|
dnl # - Leading spaces are ignored.
|
||||||
|
dnl # - First match wins for duplicate keys.
|
||||||
|
dnl #
|
||||||
|
dnl # A line can be commented out by preceding it with a '#' (or technically
|
||||||
|
dnl # any non-space character since that will prevent the regex from
|
||||||
|
dnl # matching).
|
||||||
|
dnl #
|
||||||
|
dnl # WARNING:
|
||||||
|
dnl # Placing a colon followed by a space or tab (ie, ":[ \t]+") within the
|
||||||
|
dnl # VALUE will prematurely terminate the string since that sequence is
|
||||||
|
dnl # used as the awk field separator.
|
||||||
|
dnl #
|
||||||
|
dnl # KEYS:
|
||||||
|
dnl # The following META keys are recognized:
|
||||||
|
dnl # Name, Version, Release, Date, Author, LT_Current, LT_Revision, LT_Age
|
||||||
|
dnl #
|
||||||
|
dnl # Written by Chris Dunlap <cdunlap@llnl.gov>.
|
||||||
|
dnl # Modified by Brian Behlendorf <behlendorf1@llnl.gov>.
|
||||||
|
dnl #
|
||||||
AC_DEFUN([ZFS_AC_META], [
|
AC_DEFUN([ZFS_AC_META], [
|
||||||
|
|
||||||
AH_BOTTOM([
|
AH_BOTTOM([
|
||||||
|
@ -21,6 +42,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
#undef STDC_HEADERS
|
#undef STDC_HEADERS
|
||||||
#undef VERSION])
|
#undef VERSION])
|
||||||
|
|
||||||
|
AC_PROG_AWK
|
||||||
AC_MSG_CHECKING([metadata])
|
AC_MSG_CHECKING([metadata])
|
||||||
|
|
||||||
META="$srcdir/META"
|
META="$srcdir/META"
|
||||||
|
@ -28,7 +50,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
if test -f "$META"; then
|
if test -f "$META"; then
|
||||||
_zfs_ac_meta_type="META file"
|
_zfs_ac_meta_type="META file"
|
||||||
|
|
||||||
ZFS_META_NAME=_ZFS_AC_META_GETVAL([(?:NAME|PROJECT|PACKAGE)]);
|
ZFS_META_NAME=_ZFS_AC_META_GETVAL([(Name|Project|Package)]);
|
||||||
if test -n "$ZFS_META_NAME"; then
|
if test -n "$ZFS_META_NAME"; then
|
||||||
AC_DEFINE_UNQUOTED([ZFS_META_NAME], ["$ZFS_META_NAME"],
|
AC_DEFINE_UNQUOTED([ZFS_META_NAME], ["$ZFS_META_NAME"],
|
||||||
[Define the project name.]
|
[Define the project name.]
|
||||||
|
@ -36,7 +58,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
AC_SUBST([ZFS_META_NAME])
|
AC_SUBST([ZFS_META_NAME])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ZFS_META_VERSION=_ZFS_AC_META_GETVAL([VERSION]);
|
ZFS_META_VERSION=_ZFS_AC_META_GETVAL([Version]);
|
||||||
if test -n "$ZFS_META_VERSION"; then
|
if test -n "$ZFS_META_VERSION"; then
|
||||||
AC_DEFINE_UNQUOTED([ZFS_META_VERSION], ["$ZFS_META_VERSION"],
|
AC_DEFINE_UNQUOTED([ZFS_META_VERSION], ["$ZFS_META_VERSION"],
|
||||||
[Define the project version.]
|
[Define the project version.]
|
||||||
|
@ -44,7 +66,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
AC_SUBST([ZFS_META_VERSION])
|
AC_SUBST([ZFS_META_VERSION])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ZFS_META_RELEASE=_ZFS_AC_META_GETVAL([RELEASE]);
|
ZFS_META_RELEASE=_ZFS_AC_META_GETVAL([Release]);
|
||||||
if git rev-parse --git-dir > /dev/null 2>&1; then
|
if git rev-parse --git-dir > /dev/null 2>&1; then
|
||||||
_match="${ZFS_META_NAME}-${ZFS_META_VERSION}*"
|
_match="${ZFS_META_NAME}-${ZFS_META_VERSION}*"
|
||||||
_alias=$(git describe --match=${_match} 2>/dev/null)
|
_alias=$(git describe --match=${_match} 2>/dev/null)
|
||||||
|
@ -65,7 +87,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
AC_SUBST([RELEASE])
|
AC_SUBST([RELEASE])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ZFS_META_LICENSE=_ZFS_AC_META_GETVAL([LICENSE]);
|
ZFS_META_LICENSE=_ZFS_AC_META_GETVAL([License]);
|
||||||
if test -n "$ZFS_META_LICENSE"; then
|
if test -n "$ZFS_META_LICENSE"; then
|
||||||
AC_DEFINE_UNQUOTED([ZFS_META_LICENSE], ["$ZFS_META_LICENSE"],
|
AC_DEFINE_UNQUOTED([ZFS_META_LICENSE], ["$ZFS_META_LICENSE"],
|
||||||
[Define the project license.]
|
[Define the project license.]
|
||||||
|
@ -84,7 +106,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
AC_SUBST([ZFS_META_ALIAS])
|
AC_SUBST([ZFS_META_ALIAS])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ZFS_META_DATA=_ZFS_AC_META_GETVAL([DATE]);
|
ZFS_META_DATA=_ZFS_AC_META_GETVAL([Date]);
|
||||||
if test -n "$ZFS_META_DATA"; then
|
if test -n "$ZFS_META_DATA"; then
|
||||||
AC_DEFINE_UNQUOTED([ZFS_META_DATA], ["$ZFS_META_DATA"],
|
AC_DEFINE_UNQUOTED([ZFS_META_DATA], ["$ZFS_META_DATA"],
|
||||||
[Define the project release date.]
|
[Define the project release date.]
|
||||||
|
@ -92,7 +114,7 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
AC_SUBST([ZFS_META_DATA])
|
AC_SUBST([ZFS_META_DATA])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ZFS_META_AUTHOR=_ZFS_AC_META_GETVAL([AUTHOR]);
|
ZFS_META_AUTHOR=_ZFS_AC_META_GETVAL([Author]);
|
||||||
if test -n "$ZFS_META_AUTHOR"; then
|
if test -n "$ZFS_META_AUTHOR"; then
|
||||||
AC_DEFINE_UNQUOTED([ZFS_META_AUTHOR], ["$ZFS_META_AUTHOR"],
|
AC_DEFINE_UNQUOTED([ZFS_META_AUTHOR], ["$ZFS_META_AUTHOR"],
|
||||||
[Define the project author.]
|
[Define the project author.]
|
||||||
|
@ -101,9 +123,9 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
fi
|
fi
|
||||||
|
|
||||||
m4_pattern_allow([^LT_(CURRENT|REVISION|AGE)$])
|
m4_pattern_allow([^LT_(CURRENT|REVISION|AGE)$])
|
||||||
ZFS_META_LT_CURRENT=_ZFS_AC_META_GETVAL([LT_CURRENT]);
|
ZFS_META_LT_CURRENT=_ZFS_AC_META_GETVAL([LT_Current]);
|
||||||
ZFS_META_LT_REVISION=_ZFS_AC_META_GETVAL([LT_REVISION]);
|
ZFS_META_LT_REVISION=_ZFS_AC_META_GETVAL([LT_Revision]);
|
||||||
ZFS_META_LT_AGE=_ZFS_AC_META_GETVAL([LT_AGE]);
|
ZFS_META_LT_AGE=_ZFS_AC_META_GETVAL([LT_Age]);
|
||||||
if test -n "$ZFS_META_LT_CURRENT" \
|
if test -n "$ZFS_META_LT_CURRENT" \
|
||||||
-o -n "$ZFS_META_LT_REVISION" \
|
-o -n "$ZFS_META_LT_REVISION" \
|
||||||
-o -n "$ZFS_META_LT_AGE"; then
|
-o -n "$ZFS_META_LT_AGE"; then
|
||||||
|
@ -134,15 +156,18 @@ AC_DEFUN([ZFS_AC_META], [
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
AC_DEFUN([_ZFS_AC_META_GETVAL],
|
dnl # _ZFS_AC_META_GETVAL (KEY_NAME_OR_REGEX)
|
||||||
[`perl -n\
|
dnl #
|
||||||
-e "BEGIN { \\$key=shift @ARGV; }"\
|
dnl # Returns the META VALUE associated with the given KEY_NAME_OR_REGEX expr.
|
||||||
-e "next unless s/^\s*\\$key@<:@:=@:>@//i;"\
|
dnl #
|
||||||
-e "s/^((?:@<:@^'\"#@:>@*(?:(@<:@'\"@:>@)@<:@^\2@:>@*\2)*)*)#.*/\\@S|@1/;"\
|
dnl # Despite their resemblance to line noise,
|
||||||
-e "s/^\s+//;"\
|
dnl # the "@<:@" and "@:>@" constructs are quadrigraphs for "[" and "]".
|
||||||
-e "s/\s+$//;"\
|
dnl # <www.gnu.org/software/autoconf/manual/autoconf.html#Quadrigraphs>
|
||||||
-e "s/^(@<:@'\"@:>@)(.*)\1/\\@S|@2/;"\
|
dnl #
|
||||||
-e "\\$val=\\$_;"\
|
dnl # The "$[]1" and "$[]2" constructs prevent M4 parameter expansion
|
||||||
-e "END { print \\$val if defined \\$val; }"\
|
dnl # so a literal $1 and $2 will be passed to the resulting awk script,
|
||||||
'$1' $META`]dnl
|
dnl # whereas the "$1" will undergo M4 parameter expansion for the META key.
|
||||||
|
dnl #
|
||||||
|
AC_DEFUN([_ZFS_AC_META_GETVAL],
|
||||||
|
[`$AWK -F ':@<:@ \t@:>@+' '$[]1 ~ /^ *$1$/ { print $[]2; exit }' $META`]dnl
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue