svn commit: r349518 - in stable: 11/release 12/release
Glen Barber
gjb at FreeBSD.org
Fri Jun 28 20:28:22 UTC 2019
Author: gjb
Date: Fri Jun 28 20:28:20 2019
New Revision: 349518
URL: https://svnweb.freebsd.org/changeset/base/349518
Log:
MFC r349372:
Include files containing metadata specific to the branch in the
directory where the individual distribution sets exist.
The new metadata files include the build date, svn branch, and
revision of the build.
Sponsored by: Rubicon Communications, LLC (Netgate)
Modified:
stable/12/release/Makefile.mirrors
Directory Properties:
stable/12/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/11/release/Makefile.mirrors
Directory Properties:
stable/11/ (props changed)
Modified: stable/12/release/Makefile.mirrors
==============================================================================
--- stable/12/release/Makefile.mirrors Fri Jun 28 19:57:42 2019 (r349517)
+++ stable/12/release/Makefile.mirrors Fri Jun 28 20:28:20 2019 (r349518)
@@ -19,6 +19,7 @@ FTPDIR?= ${RELEASEDIR}/ftp-stage
.if exists(${RELEASEDIR})
STAGE_TARGETS?= iso-images-stage
.endif
+SRCBRANCH!= ${SVN_CMD} info --show-item relative-url ${WORLDDIR}
.if (defined(EMBEDDED_TARGET) && !empty(EMBEDDED_TARGET)) || (defined(EMBEDDEDBUILD) && !empty(EMBEDDEDBUILD))
. if ${TARGET:Marm*} != "" || ${EMBEDDED_TARGET:Marm*} != ""
@@ -185,6 +186,9 @@ iso-images-stage:
.if exists(${RELEASEDIR}/ftp)
mkdir -p ${FTP_DIR}
cp -p ${RELEASEDIR}/ftp/*.txz ${RELEASEDIR}/ftp/MANIFEST ${FTP_DIR}
+ echo ${BUILDDATE} > ${FTP_DIR}/BUILDDATE
+ echo ${SRCBRANCH} > ${FTP_DIR}/SRCBRANCH
+ echo r${SVNREVISION} > ${FTP_DIR}/REVISION
cd ${TLD}/${TARGET} && \
ln -s ${TARGET_ARCH}/${REVISION}-${BRANCH} \
${REVISION}-${BRANCH}
More information about the svn-src-stable-12
mailing list