@@ -30,28 +30,34 @@ function os::build::rpm::get_nvra_vars() {
30
30
31
31
# we can generate the package release from the git version metadata
32
32
# OS_GIT_VERSION will always have metadata, but either contain
33
- # pre-release information _and_ build metadata, or only the latter
33
+ # pre-release information _and_ build metadata, or only the latter.
34
+ # Build metadata may or may not contain the number of commits past
35
+ # the last tag. If no commit number exists, we are on a tag and use 0.
34
36
# ex.
35
37
# -alpha.0+shasums-123-dirty
36
38
# -alpha.0+shasums-123
39
+ # -alpha.0+shasums-dirty
40
+ # -alpha.0+shasums
37
41
# +shasums-123-dirty
38
42
# +shasums-123
43
+ # +shasums-dirty
44
+ # +shasums
39
45
if [[ " ${metadata: 0: 1} " == " +" ]]; then
40
46
# we only have build metadata, but need to massage it so
41
47
# we can generate a valid RPM release from it
42
- if [[ " ${metadata} " =~ ^\+ ([a-z0-9]{7})-([0-9]+)(-dirty)? $ ]]; then
48
+ if [[ " ${metadata} " =~ ^\+ ([a-z0-9]{7})( -([0-9]+)) ? (-dirty)? $ ]]; then
43
49
build_sha=" ${BASH_REMATCH[1]} "
44
- build_num=" ${BASH_REMATCH[2] } "
50
+ build_num=" ${BASH_REMATCH[3] :- 0 } "
45
51
else
46
52
os::log::fatal " Malformed git version metadata: ${metadata} "
47
53
fi
48
54
OS_RPM_RELEASE=" 1.${build_num} .${build_sha} "
49
55
elif [[ " ${metadata: 0: 1} " == " -" ]]; then
50
56
# we have both build metadata and pre-release info
51
- if [[ " ${metadata} " =~ ^-([^\+ ]+)\+ ([a-z0-9]{7})-([0-9]+)(-dirty)? $ ]]; then
57
+ if [[ " ${metadata} " =~ ^-([^\+ ]+)\+ ([a-z0-9]{7})( -([0-9]+)) ? (-dirty)? $ ]]; then
52
58
pre_release=" ${BASH_REMATCH[1]} "
53
59
build_sha=" ${BASH_REMATCH[2]} "
54
- build_num=" ${BASH_REMATCH[3] } "
60
+ build_num=" ${BASH_REMATCH[4] :- 0 } "
55
61
else
56
62
os::log::fatal " Malformed git version metadata: ${metadata} "
57
63
fi
0 commit comments