svn commit: r451250 - head/Mk/Scripts

Adriaan de Groot adridg at FreeBSD.org
Wed Oct 4 21:01:10 UTC 2017


Author: adridg
Date: Wed Oct  4 21:01:09 2017
New Revision: 451250
URL: https://svnweb.freebsd.org/changeset/ports/451250

Log:
  Take out the check that suggests that all <foo>-qt5 ports should be
  part of USE_QT5, since all of those suggestions are wrong.
  
  Approved by:	rakuco (mentor), tcberner (mentor), portmgr (mat)
  Differential Revision:	https://reviews.freebsd.org/D12526

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Wed Oct  4 20:40:36 2017	(r451249)
+++ head/Mk/Scripts/qa.sh	Wed Oct  4 21:01:09 2017	(r451250)
@@ -554,8 +554,6 @@ proxydeps_suggest_uses() {
 	# Qt5
 	elif expr ${pkg} : '.*/qt5-.*' > /dev/null; then
 		warn "you need USE_QT5+=$(echo ${pkg} | sed -E 's|.*/qt5-||')"
-	elif expr ${pkg} : '.*/.*-qt5' > /dev/null; then
-		warn "you need USE_QT5+=$(echo ${pkg} | sed -E 's|.*/(.*)-qt5|\1|')"
 	# MySQL
 	elif expr ${lib_file} : "${LOCALBASE}/lib/mysql/[^/]*$" > /dev/null; then
 		warn "you need USES+=mysql"


More information about the svn-ports-all mailing list