====> Running Q/A tests (stage-qa) Warning: 'lib/libgetdns_ext_ev.so.1.4.1' is not stripped consider trying INSTALL_TARGET=install-strip or using ${STRIP_CMD} ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: lib/libgetdns_ext_ev.so.1 Error: Orphaned: lib/libgetdns_ext_ev.so.1.4.1 ===> Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: lib/libgetdns_ext_ev-%%PORTVERSION%%.so Error: Missing: lib/libgetdns_ext_ev-%%PORTVERSION%%.so.0 ===> Error: Plist issues found. *** Error code 1 ====> Running Q/A tests (stage-qa) Warning: 'lib/libgetdns_ext_event.so.1.4.1' is not stripped consider trying INSTALL_TARGET=install-strip or using ${STRIP_CMD} ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: lib/libgetdns_ext_event.so.1 Error: Orphaned: lib/libgetdns_ext_event.so.1.4.1 ===> Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: lib/libgetdns_ext_event-%%PORTVERSION%%.so Error: Missing: lib/libgetdns_ext_event-%%PORTVERSION%%.so.0 ===> Error: Plist issues found. *** Error code 1 ====> Running Q/A tests (stage-qa) Warning: 'lib/libgetdns_ext_uv.so.1.4.1' is not stripped consider trying INSTALL_TARGET=install-strip or using ${STRIP_CMD} ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: lib/libgetdns_ext_uv.so.1 Error: Orphaned: lib/libgetdns_ext_uv.so.1.4.1 ===> Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: lib/libgetdns_ext_uv-%%PORTVERSION%%.so Error: Missing: lib/libgetdns_ext_uv-%%PORTVERSION%%.so.0 ===> Error: Plist issues found. *** Error code 1
Fixed!
A commit references this bug: Author: zi Date: Sat Jan 28 17:05:59 UTC 2017 New revision: 432634 URL: https://svnweb.freebsd.org/changeset/ports/432634 Log: - Fix build issue with non-default OPTIONS - Don't bump PORTREVISION as this is a noop for the default package PR: 216548 Reported by: Jan Beich <jbeich@FreeBSD.org> Changes: head/dns/getdns/Makefile head/dns/getdns/pkg-plist
(In reply to Ryan Steinmetz from comment #1) Hello zi! I have some Q/A warnings in port that I'm working like this ====> Running Q/A tests (stage-qa) Warning: 'lib/libgetdns_ext_event.so.1.4.1' is not stripped consider trying INSTALL_TARGET=install-strip or using ${STRIP_CMD} How did you fixed this? Thanks
One of two ways: 1. Add a post-install target to strip the libraries: post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgetdns*.so.* ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/getdns_* 2. If the Makefile for your software supports it, you can use the install-strip target by defining: INSTALL_TARGET=install-strip