Date: Tue, 6 May 2025 21:58:55 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 16d0fe1f721f - main - release/pkg-stage: Put each package on a separate line Message-ID: <202505062158.546LwtwP024714@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=16d0fe1f721f63d15c741ff4c0072390aaa27e73 commit 16d0fe1f721f63d15c741ff4c0072390aaa27e73 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2025-05-06 19:37:55 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2025-05-06 21:51:50 +0000 release/pkg-stage: Put each package on a separate line The list of packages included in dvd1.iso is maintained in pkg-stage.sh itself, and sees regular additions and deletions. Rearrange the beginning and end of the variable so that each package is alone on a line, to make it easier to track changes. Reviewed by: cperciva Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D50221 --- release/scripts/pkg-stage.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/release/scripts/pkg-stage.sh b/release/scripts/pkg-stage.sh index 821f15e01bd8..fc74f8e6c0c6 100755 --- a/release/scripts/pkg-stage.sh +++ b/release/scripts/pkg-stage.sh @@ -12,7 +12,8 @@ export ROOTDIR="$PWD/dvd" export PKGCMD="/usr/sbin/pkg -d --rootdir ${ROOTDIR}" export PORTSDIR="${PORTSDIR:-/usr/ports}" -_DVD_PACKAGES="devel/git@lite +_DVD_PACKAGES=" +devel/git@lite graphics/drm-kmod graphics/drm-510-kmod graphics/drm-515-kmod @@ -33,7 +34,8 @@ x11/gnome x11/kde x11/sddm x11/xorg -x11-wm/sway" +x11-wm/sway +" # If NOPORTS is set for the release, do not attempt to build pkg(8). if [ ! -f ${PORTSDIR}/Makefile ]; then
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202505062158.546LwtwP024714>