Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2025 13:55:12 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: f9097705fb1c - main - pkgbase: Fix OSVERSION specification when creating a repo
Message-ID:  <202501201355.50KDtCjV030756@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=f9097705fb1c8d9c1f8946d1c1897d606bdbd517

commit f9097705fb1c8d9c1f8946d1c1897d606bdbd517
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2025-01-19 23:25:09 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2025-01-20 13:54:49 +0000

    pkgbase: Fix OSVERSION specification when creating a repo
    
    -o OSVERSION= needs to appear before the "repo" verb, otherwise it has
    no effect.  In this case, recent pkg-devel fails to create the repo,
    saying that ABI cannot be specified without OSVERSION.
    
    Reviewed by:    kevans, manu
    MFC after:      2 weeks
    Fixes:          188fe88ec50e ("pkgbase: force OSVERSION")
    Differential Revision:  https://reviews.freebsd.org/D48518
---
 Makefile.inc1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc1 b/Makefile.inc1
index c8e6e63d2e39..efa1299b76a7 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -2362,7 +2362,7 @@ real-sign-packages:	_pkgbootstrap .PHONY
 .if ${PKG_BIN_VERSION} < 11700
 	printf "packing_format = \"${PKG_FORMAT}\";\n" >> ${WSTAGEDIR}/meta
 .endif
-	@${PKG_CMD} -o ABI=${PKG_ABI} repo -o OSVERSION="${SRCRELDATE}" \
+	@${PKG_CMD} -o ABI=${PKG_ABI} -o OSVERSION="${SRCRELDATE}" repo \
 		-m ${WSTAGEDIR}/meta \
 		-o ${REPODIR}/${PKG_ABI}/${PKG_VERSION} \
 		${REPODIR}/${PKG_ABI}/${PKG_VERSION} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501201355.50KDtCjV030756>