pkgbase: collapse -PRERELEASE into STABLE/CURRENT case for version suffix
-PRERELEASE exists as a given stable/X branch while the next minor version release is in progress. From a functional standpoint, it should be treated as -STABLE since it'll typically be a superset of what's included in the concurrent releng branch. Reviewed by: gjb Differential Revision: https://reviews.freebsd.org/D28166
This commit is contained in:
parent
9af9e7c5cc
commit
da8cc827ae
@ -557,7 +557,7 @@ VERSION= FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDA
|
||||
.endif
|
||||
|
||||
.if !defined(PKG_VERSION)
|
||||
.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*}
|
||||
.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*} || ${_BRANCH:MPRERELEASE*}
|
||||
TIMENOW= %Y%m%d%H%M%S
|
||||
EXTRA_REVISION= .s${TIMENOW:gmtime}
|
||||
.elif ${_BRANCH:MALPHA*}
|
||||
@ -566,8 +566,6 @@ EXTRA_REVISION= _${_BRANCH:C/-ALPHA/.a/}
|
||||
EXTRA_REVISION= _${_BRANCH:C/-BETA/.b/}
|
||||
.elif ${_BRANCH:MRC*}
|
||||
EXTRA_REVISION= _${_BRANCH:C/-RC/.r/}
|
||||
.elif ${_BRANCH:MPRERELEASE*}
|
||||
EXTRA_REVISION= _${_BRANCH:C/-PRERELEASE/.p/}
|
||||
.elif ${_BRANCH:M*-p*}
|
||||
EXTRA_REVISION= _${_BRANCH:C/.*-p([0-9]+$)/\1/}
|
||||
.endif
|
||||
|
Loading…
Reference in New Issue
Block a user