Date: Sun, 15 Dec 2024 07:59:28 GMT From: "Jason E. Hale" <jhale@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: ec0195954509 - main - Mk/Scripts/qa.sh: Add warnings for Qt6 components Message-ID: <202412150759.4BF7xSw3004148@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhale: URL: https://cgit.FreeBSD.org/ports/commit/?id=ec01959545099b2725145291676d2cb45c9181c5 commit ec01959545099b2725145291676d2cb45c9181c5 Author: Jason E. Hale <jhale@FreeBSD.org> AuthorDate: 2024-12-15 07:52:41 +0000 Commit: Jason E. Hale <jhale@FreeBSD.org> CommitDate: 2024-12-15 07:58:54 +0000 Mk/Scripts/qa.sh: Add warnings for Qt6 components Reviewed by: arrowd, mat Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D48028 --- Mk/Scripts/qa.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index 3b91e2319571..f481a672d5b2 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -561,6 +561,9 @@ proxydeps_suggest_uses() { # Qt5 elif expr ${pkg} : '.*/qt5-.*' > /dev/null; then warn "you need USES=qt:5 and USE_QT+=$(echo ${pkg} | sed -E 's|.*/qt5-||')" + # Qt6 + elif expr ${pkg} : '.*/qt6-.*' > /dev/null; then + warn "you need USES=qt:6 and USE_QT+=$(echo ${pkg} | sed -E 's|.*/qt6-||')" # MySQL elif expr ${lib_file} : "${LOCALBASE}/lib/mysql/[^/]*$" > /dev/null; then warn "you need USES+=mysql"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412150759.4BF7xSw3004148>