From owner-svn-ports-head@freebsd.org Fri Dec 9 14:24:08 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44956C684EE; Fri, 9 Dec 2016 14:24:08 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 142151F0; Fri, 9 Dec 2016 14:24:08 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB9EO76n099737; Fri, 9 Dec 2016 14:24:07 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB9EO7cZ099736; Fri, 9 Dec 2016 14:24:07 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201612091424.uB9EO7cZ099736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 9 Dec 2016 14:24:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428207 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Dec 2016 14:24:08 -0000 Author: mat Date: Fri Dec 9 14:24:07 2016 New Revision: 428207 URL: https://svnweb.freebsd.org/changeset/ports/428207 Log: Report the binary with bad linking. Sponsored by: Absolight Modified: head/Mk/Scripts/qa.sh (contents, props changed) Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Fri Dec 9 14:16:22 2016 (r428206) +++ head/Mk/Scripts/qa.sh Fri Dec 9 14:24:07 2016 (r428207) @@ -107,15 +107,19 @@ shebang() { baselibs() { local rc local found_openssl + local file [ "${PKGBASE}" = "pkg" -o "${PKGBASE}" = "pkg-devel" ] && return while read f; do case ${f} in + File:\ .*) + file=${f#File: .} + ;; *NEEDED*\[libarchive.so.[56]]) - err "Bad linking on ${f##* } please add USES=libarchive" + err "Bad linking on ${f##* } for ${file} please add USES=libarchive" rc=1 ;; *NEEDED*\[libedit.so.7]) - err "Bad linking on ${f##* } please add USES=libedit" + err "Bad linking on ${f##* } for ${file} please add USES=libedit" rc=1 ;; *NEEDED*\[libcrypto.so.*]|*NEEDED*\[libssl.so.*])