Skip to content

Commit 42c3bfa

Browse files
author
OpenShift Bot
authored
Merge pull request #13654 from stevekuznetsov/skuznets/rpm-version
Merged by openshift-bot
2 parents c92000c + 5b8152f commit 42c3bfa

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

hack/lib/build/rpm.sh

+11-5
Original file line numberDiff line numberDiff line change
@@ -30,28 +30,34 @@ function os::build::rpm::get_nvra_vars() {
3030

3131
# we can generate the package release from the git version metadata
3232
# 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.
3436
# ex.
3537
# -alpha.0+shasums-123-dirty
3638
# -alpha.0+shasums-123
39+
# -alpha.0+shasums-dirty
40+
# -alpha.0+shasums
3741
# +shasums-123-dirty
3842
# +shasums-123
43+
# +shasums-dirty
44+
# +shasums
3945
if [[ "${metadata:0:1}" == "+" ]]; then
4046
# we only have build metadata, but need to massage it so
4147
# 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
4349
build_sha="${BASH_REMATCH[1]}"
44-
build_num="${BASH_REMATCH[2]}"
50+
build_num="${BASH_REMATCH[3]:-0}"
4551
else
4652
os::log::fatal "Malformed git version metadata: ${metadata}"
4753
fi
4854
OS_RPM_RELEASE="1.${build_num}.${build_sha}"
4955
elif [[ "${metadata:0:1}" == "-" ]]; then
5056
# 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
5258
pre_release="${BASH_REMATCH[1]}"
5359
build_sha="${BASH_REMATCH[2]}"
54-
build_num="${BASH_REMATCH[3]}"
60+
build_num="${BASH_REMATCH[4]:-0}"
5561
else
5662
os::log::fatal "Malformed git version metadata: ${metadata}"
5763
fi

0 commit comments

Comments
 (0)