Created attachment 163851 [details] patch for updating the port - update to 1.16 - "portlint -AC" just warns against non-empty $FreeBSD$ tag. - Tested with poudriere (log attached) at 11.0-CURRENT-amd64 with perl-5.20.3
Created attachment 163852 [details] log from poudriere at 11.0-amd64 and perl-5.20
A commit references this bug: Author: sunpoet Date: Sat Dec 5 06:12:11 UTC 2015 New revision: 403034 URL: https://svnweb.freebsd.org/changeset/ports/403034 Log: - Update to 1.16 - Sort PLIST - While I'm here: - Update *_DEPENDS: remove redundant LOCALBASE/bin - Sort *_DEPENDS PR: 205024 Submitted by: Sergei Vyshenski <svysh.fbsd@gmail.com> (maintainer) Changes: head/devel/p5-Connector/Makefile head/devel/p5-Connector/distinfo head/devel/p5-Connector/pkg-plist
Committed. Thanks!
Thank you very much. For the future, could you please recommend a tool for sorting *_DEPENDS ?
I do not know such tools and I sort *_DEPENDS by hand. If there is a long list of dependencies, you could try: % make -V BUILD_DEPENDS:O | xargs -n 1 You could also rename BUILD_DEPENDS before running the command to avoid dependencies from other knobs (e.g. USES=perl5). HTH
Thank you very much again. Got the idea.