From owner-svn-ports-all@freebsd.org Mon Jul 9 08:40:33 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C953710305F6; Mon, 9 Jul 2018 08:40:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C84C8B2D4; Mon, 9 Jul 2018 08:40:32 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5DE3B12A87; Mon, 9 Jul 2018 08:40:32 +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 w698eWbO071559; Mon, 9 Jul 2018 08:40:32 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w698eIwQ071481; Mon, 9 Jul 2018 08:40:18 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201807090840.w698eIwQ071481@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 9 Jul 2018 08:40:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474242 - in head: audio/p5-Filesys-Virtual-DAAP audio/p5-Net-DAAP-Client benchmarks/p5-Benchmark-Stopwatch cad/pcb chinese/p5-Text-Greeking-zh_TW chinese/scim-fcitx comms/p5-SMS-Send-T... X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: audio/p5-Filesys-Virtual-DAAP audio/p5-Net-DAAP-Client benchmarks/p5-Benchmark-Stopwatch cad/pcb chinese/p5-Text-Greeking-zh_TW chinese/scim-fcitx comms/p5-SMS-Send-TW-PChome comms/p5-SMS-Sen... X-SVN-Commit-Revision: 474242 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jul 2018 08:40:33 -0000 Author: mat Date: Mon Jul 9 08:40:17 2018 New Revision: 474242 URL: https://svnweb.freebsd.org/changeset/ports/474242 Log: Remove all := from BUILD_DEPENDS, here are never needed. While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight Modified: head/audio/p5-Filesys-Virtual-DAAP/Makefile (contents, props changed) head/audio/p5-Net-DAAP-Client/Makefile (contents, props changed) head/benchmarks/p5-Benchmark-Stopwatch/Makefile (contents, props changed) head/cad/pcb/Makefile (contents, props changed) head/chinese/p5-Text-Greeking-zh_TW/Makefile (contents, props changed) head/chinese/scim-fcitx/Makefile (contents, props changed) head/comms/p5-SMS-Send-TW-PChome/Makefile (contents, props changed) head/comms/p5-SMS-Send-TW-Qma/Makefile (contents, props changed) head/comms/p5-SMS-Send-TW-Socket2Air/Makefile (contents, props changed) head/comms/p5-SMS-Send-TW-chtsns/Makefile (contents, props changed) head/comms/p5-SMS-Send-TW-emome/Makefile (contents, props changed) head/converters/p5-Convert-PEM/Makefile (contents, props changed) head/converters/p5-Data-AMF/Makefile (contents, props changed) head/converters/p5-Encode-Punycode/Makefile (contents, props changed) head/converters/p5-JSON-XS-VersionOneAndTwo/Makefile (contents, props changed) head/converters/p5-JSON1/Makefile (contents, props changed) head/converters/p5-MIME-Base64-URLSafe/Makefile (contents, props changed) head/converters/p5-Net-IDN-Nameprep/Makefile (contents, props changed) head/databases/p5-Class-DBI-AbstractSearch/Makefile (contents, props changed) head/databases/p5-Class-DBI-BaseDSN/Makefile (contents, props changed) head/databases/p5-Class-DBI-DATA-Schema/Makefile (contents, props changed) head/databases/p5-Class-DBI-FromCGI/Makefile (contents, props changed) head/databases/p5-Class-DBI-Loader/Makefile (contents, props changed) head/databases/p5-Class-DBI-Pager/Makefile (contents, props changed) head/databases/p5-Class-DBI-SAK/Makefile (contents, props changed) head/databases/p5-Class-DBI-SQLite/Makefile (contents, props changed) head/databases/p5-Class-DBI-ToSax/Makefile (contents, props changed) head/databases/p5-Class-Inflate/Makefile (contents, props changed) head/databases/p5-DBD-PgLite/Makefile (contents, props changed) head/databases/p5-DBI-Shell/Makefile (contents, props changed) head/databases/p5-DBIx-Class-DeploymentHandler/Makefile (contents, props changed) head/databases/p5-DBIx-Class-DigestColumns/Makefile (contents, props changed) head/databases/p5-DBIx-Class-DynamicSubclass/Makefile (contents, props changed) head/databases/p5-DBIx-Class-Fixtures/Makefile (contents, props changed) head/databases/p5-DBIx-Class-FrozenColumns/Makefile (contents, props changed) head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile (contents, props changed) head/databases/p5-DBIx-Class-InflateColumn-FS/Makefile (contents, props changed) head/databases/p5-DBIx-Class-PassphraseColumn/Makefile (contents, props changed) head/databases/p5-DBIx-Class-TimeStamp/Makefile (contents, props changed) head/databases/p5-DBIx-Class-Tree-NestedSet/Makefile (contents, props changed) head/databases/p5-DBIx-Class-Tree/Makefile (contents, props changed) head/databases/p5-DBIx-Class-WebForm/Makefile (contents, props changed) head/databases/p5-DBIx-Connector/Makefile (contents, props changed) head/databases/p5-DBIx-ContextualFetch/Makefile (contents, props changed) head/databases/p5-DBIx-DBHResolver/Makefile (contents, props changed) head/databases/p5-DBIx-Inspector/Makefile (contents, props changed) head/databases/p5-DBIx-QueryLog/Makefile (contents, props changed) head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/Makefile (contents, props changed) head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/Makefile (contents, props changed) head/databases/p5-DBIx-Skinny-Pager/Makefile (contents, props changed) head/databases/p5-DBIx-Skinny-Schema-Loader/Makefile (contents, props changed) head/databases/p5-DBIx-Skinny/Makefile (contents, props changed) head/databases/p5-DBIx-TransactionManager/Makefile (contents, props changed) head/databases/p5-Genezzo/Makefile (contents, props changed) head/databases/p5-Rose-DBx-Object-Renderer/Makefile (contents, props changed) head/databases/p5-SQL-Abstract-Limit/Makefile (contents, props changed) head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile (contents, props changed) head/databases/p5-SQL-Maker/Makefile (contents, props changed) head/databases/p5-Teng/Makefile (contents, props changed) head/databases/p5-Test-Fixture-DBI/Makefile (contents, props changed) head/databases/p5-Test-mysqld/Makefile (contents, props changed) head/databases/p5-Test-postgresql/Makefile (contents, props changed) head/databases/p5-Tie-DBI/Makefile (contents, props changed) head/devel/cpan-upload-http/Makefile (contents, props changed) head/devel/cpan-upload/Makefile (contents, props changed) head/devel/p5-AI-Prolog/Makefile (contents, props changed) head/devel/p5-Acme-Damn/Makefile (contents, props changed) head/devel/p5-Algorithm-Cron/Makefile (contents, props changed) head/devel/p5-Algorithm-Merge/Makefile (contents, props changed) head/devel/p5-Alien-SDL/Makefile (contents, props changed) head/devel/p5-AnyEvent-Filesys-Notify/Makefile (contents, props changed) head/devel/p5-AnyEvent-Graphite/Makefile (contents, props changed) head/devel/p5-AnyEvent-Run/Makefile (contents, props changed) head/devel/p5-AnyEvent-Task/Makefile (contents, props changed) head/devel/p5-App-Cache/Makefile (contents, props changed) head/devel/p5-App-local-lib-helper/Makefile (contents, props changed) head/devel/p5-AppConfig-Std/Makefile (contents, props changed) head/devel/p5-B-Compiling/Makefile (contents, props changed) head/devel/p5-B-Deobfuscate/Makefile (contents, props changed) head/devel/p5-CHI/Makefile (contents, props changed) head/devel/p5-CPAN-Mini/Makefile (contents, props changed) head/devel/p5-CPAN-YACSmoke/Makefile (contents, props changed) head/devel/p5-Callback-Frame/Makefile (contents, props changed) head/devel/p5-Check-ISA/Makefile (contents, props changed) head/devel/p5-Class-C3-Adopt-NEXT/Makefile (contents, props changed) head/devel/p5-Class-Method-Modifiers-Fast/Makefile (contents, props changed) head/devel/p5-Config-MySQL/Makefile (contents, props changed) head/devel/p5-Const-Fast/Makefile (contents, props changed) head/devel/p5-Data-DumpXML/Makefile (contents, props changed) head/devel/p5-Data-Localize/Makefile (contents, props changed) head/devel/p5-Data-Model/Makefile (contents, props changed) head/devel/p5-Data-Page-NoTotalEntries/Makefile (contents, props changed) head/devel/p5-Data-Page-Pageset/Makefile (contents, props changed) head/devel/p5-Data-SExpression/Makefile (contents, props changed) head/devel/p5-Data-Stag/Makefile (contents, props changed) head/devel/p5-Data-Util/Makefile (contents, props changed) head/devel/p5-Data-Visitor-Encode/Makefile (contents, props changed) head/devel/p5-DateTime-Calendar-Mayan/Makefile (contents, props changed) head/devel/p5-DateTime-Event-NameDay/Makefile (contents, props changed) head/devel/p5-DateTime-Event-Zodiac/Makefile (contents, props changed) head/devel/p5-DateTime-Format-Bork/Makefile (contents, props changed) head/devel/p5-DateTime-Format-DateManip/Makefile (contents, props changed) head/devel/p5-DateTime-Format-HTTP/Makefile (contents, props changed) head/devel/p5-DateTime-Format-ICal/Makefile (contents, props changed) head/devel/p5-DateTime-Format-Mail/Makefile (contents, props changed) head/devel/p5-DateTime-Format-Roman/Makefile (contents, props changed) head/devel/p5-DateTime-Format-W3CDTF/Makefile (contents, props changed) head/devel/p5-DateTime-HiRes/Makefile (contents, props changed) head/devel/p5-DateTime-TimeZone-Alias/Makefile (contents, props changed) head/devel/p5-Devel-BeginLift/Makefile (contents, props changed) head/devel/p5-Devel-Cover-Report-Clover/Makefile (contents, props changed) head/devel/p5-Devel-Declare-Parser/Makefile (contents, props changed) head/devel/p5-Devel-Ditto/Makefile (contents, props changed) head/devel/p5-Devel-EvalContext/Makefile (contents, props changed) head/devel/p5-Devel-RingBuffer/Makefile (contents, props changed) head/devel/p5-Devel-STrace/Makefile (contents, props changed) head/devel/p5-Devel-StackTrace-AsHTML/Makefile (contents, props changed) head/devel/p5-Devel-StackTrace-WithLexicals/Makefile (contents, props changed) head/devel/p5-Devel-ebug/Makefile (contents, props changed) head/devel/p5-Dist-Metadata/Makefile (contents, props changed) head/devel/p5-Exporter-Declare/Makefile (contents, props changed) head/devel/p5-File-ChangeNotify/Makefile (contents, props changed) head/devel/p5-File-Find-Rule/Makefile (contents, props changed) head/devel/p5-File-Finder/Makefile (contents, props changed) head/devel/p5-File-ShareDir-ProjectDistDir/Makefile (contents, props changed) head/devel/p5-Filesys-Notify-KQueue/Makefile (contents, props changed) head/devel/p5-Gearman-Client-Async/Makefile (contents, props changed) head/devel/p5-Getopt-Compact/Makefile (contents, props changed) head/devel/p5-Google-Checkout/Makefile (contents, props changed) head/devel/p5-GraphQL/Makefile (contents, props changed) head/devel/p5-IO-Callback/Makefile (contents, props changed) head/devel/p5-IO-Handle-Util/Makefile (contents, props changed) head/devel/p5-Jonk/Makefile (contents, props changed) head/devel/p5-Log-Any-Adapter-Callback/Makefile (contents, props changed) head/devel/p5-Log-Any-Adapter-Dispatch/Makefile (contents, props changed) head/devel/p5-Log-Contextual/Makefile (contents, props changed) head/devel/p5-Log-Defer/Makefile (contents, props changed) head/devel/p5-Log-Dispatch-Screen-Color/Makefile (contents, props changed) head/devel/p5-Module-Collect/Makefile (contents, props changed) head/devel/p5-Module-Depends/Makefile (contents, props changed) head/devel/p5-Module-Install-AuthorRequires/Makefile (contents, props changed) head/devel/p5-Module-Install-AuthorTests/Makefile (contents, props changed) head/devel/p5-Module-Setup/Makefile (contents, props changed) head/devel/p5-Module-Used/Makefile (contents, props changed) head/devel/p5-MooseX-Async/Makefile (contents, props changed) head/devel/p5-MooseX-Clone/Makefile (contents, props changed) head/devel/p5-MooseX-CompileTime-Traits/Makefile (contents, props changed) head/devel/p5-MooseX-ConfigFromFile/Makefile (contents, props changed) head/devel/p5-MooseX-Lists/Makefile (contents, props changed) head/devel/p5-MooseX-MultiInitArg/Makefile (contents, props changed) head/devel/p5-MooseX-MultiMethods/Makefile (contents, props changed) head/devel/p5-MooseX-SimpleConfig/Makefile (contents, props changed) head/devel/p5-MooseX-Types-DateTime-MySQL/Makefile (contents, props changed) head/devel/p5-MooseX-Types-ISO8601/Makefile (contents, props changed) head/devel/p5-MooseX-Types-LoadableClass/Makefile (contents, props changed) head/devel/p5-MooseX-Types-Path-Class/Makefile (contents, props changed) head/devel/p5-MooseX-Types-VariantTable/Makefile (contents, props changed) head/devel/p5-MouseX-AttributeHelpers/Makefile (contents, props changed) head/devel/p5-MouseX-Getopt/Makefile (contents, props changed) head/devel/p5-MouseX-Types/Makefile (contents, props changed) head/devel/p5-Object-Enum/Makefile (contents, props changed) head/devel/p5-POE-Session-MultiDispatch/Makefile (contents, props changed) head/devel/p5-POEx-Role-SessionInstantiation/Makefile (contents, props changed) head/devel/p5-POEx-Role-Streaming/Makefile (contents, props changed) head/devel/p5-POEx-Types/Makefile (contents, props changed) head/devel/p5-Parallel-Scoreboard/Makefile (contents, props changed) head/devel/p5-Params-CallbackRequest/Makefile (contents, props changed) head/devel/p5-Perl-Metrics-Lite/Makefile (contents, props changed) head/devel/p5-Perl-Metrics-Simple/Makefile (contents, props changed) head/devel/p5-Perl-Version/Makefile (contents, props changed) head/devel/p5-Proc-Guard/Makefile (contents, props changed) head/devel/p5-Regexp-Assemble-Compressed/Makefile (contents, props changed) head/devel/p5-SVN-Web/Makefile (contents, props changed) head/devel/p5-String-Errf/Makefile (contents, props changed) head/devel/p5-String-Formatter/Makefile (contents, props changed) head/devel/p5-String-TT/Makefile (contents, props changed) head/devel/p5-Sub-Exporter-ForMethods/Makefile (contents, props changed) head/devel/p5-System-Sub/Makefile (contents, props changed) head/devel/p5-TAP-Formatter-JUnit/Makefile (contents, props changed) head/devel/p5-TAP-Harness-JUnit/Makefile (contents, props changed) head/devel/p5-Test-Assertions/Makefile (contents, props changed) head/devel/p5-Test-Inline/Makefile (contents, props changed) head/devel/p5-Test-LoadAllModules/Makefile (contents, props changed) head/devel/p5-Test-Module-Used/Makefile (contents, props changed) head/devel/p5-Test-Most/Makefile (contents, props changed) head/devel/p5-Test-Pod-Coverage-Permissive/Makefile (contents, props changed) head/devel/p5-Test-Pod-Coverage/Makefile (contents, props changed) head/devel/p5-Test-Script-Run/Makefile (contents, props changed) head/devel/p5-Test-WWW-Mechanize-CGI/Makefile (contents, props changed) head/devel/p5-Test-WWW-Mechanize-PSGI/Makefile (contents, props changed) head/devel/p5-Test-XML-Valid/Makefile (contents, props changed) head/devel/p5-Test-YAML-Valid/Makefile (contents, props changed) head/devel/p5-Text-vFile-asData/Makefile (contents, props changed) head/devel/p5-Thread-Cancel/Makefile (contents, props changed) head/devel/p5-Throwable/Makefile (contents, props changed) head/devel/p5-Tie-RefHash-Weak/Makefile (contents, props changed) head/devel/p5-Tree-Binary-Dictionary/Makefile (contents, props changed) head/devel/p5-UUID-URandom/Makefile (contents, props changed) head/devel/p5-VCS/Makefile (contents, props changed) head/devel/p5-Validation-Class/Makefile (contents, props changed) head/devel/p5-XML-Compile-Tester/Makefile (contents, props changed) head/devel/p5-YAML-AppConfig/Makefile (contents, props changed) head/devel/p5-carton/Makefile (contents, props changed) head/devel/p5-cpan-listchanges/Makefile (contents, props changed) head/devel/p5-uni-perl/Makefile (contents, props changed) head/devel/pushmi/Makefile (contents, props changed) head/dns/dsc/Makefile (contents, props changed) head/dns/p5-App-DSC-DataTool/Makefile (contents, props changed) head/emulators/p5-Acme-6502/Makefile (contents, props changed) head/finance/p5-Business-OnlinePayment-Beanstream/Makefile (contents, props changed) head/finance/p5-Finance-Currency-Convert-XE/Makefile (contents, props changed) head/finance/p5-Finance-QuoteTW/Makefile (contents, props changed) head/ftp/filezilla/Makefile (contents, props changed) head/ftp/p5-Net-FTPServer/Makefile (contents, props changed) head/games/frozen-bubble/Makefile (contents, props changed) head/graphics/IPA/Makefile (contents, props changed) head/graphics/p5-Chart-Clicker/Makefile (contents, props changed) head/graphics/p5-Convert-Color/Makefile (contents, props changed) head/graphics/p5-Geometry-Primitive/Makefile (contents, props changed) head/graphics/p5-Graphics-ColorNames-WWW/Makefile (contents, props changed) head/graphics/p5-Image-Caa/Makefile (contents, props changed) head/irc/p5-POE-Component-Server-IRC/Makefile (contents, props changed) head/japanese/p5-Date-Japanese-Holiday/Makefile (contents, props changed) head/japanese/p5-Encode-JP-Mobile/Makefile (contents, props changed) head/japanese/p5-HTML-MobileJp/Makefile (contents, props changed) head/japanese/p5-WWW-MobileCarrierJP/Makefile (contents, props changed) head/lang/p5-Pugs-Compiler-Rule/Makefile (contents, props changed) head/mail/mu4e-maildirs/Makefile (contents, props changed) head/mail/mutt_vc_query/Makefile (contents, props changed) head/mail/p5-Clamd/Makefile (contents, props changed) head/mail/p5-Email-Abstract/Makefile (contents, props changed) head/mail/p5-Email-LocalDelivery/Makefile (contents, props changed) head/mail/p5-Email-MIME-Creator-ISO_2022_JP/Makefile (contents, props changed) head/mail/p5-Email-MIME-Encodings/Makefile (contents, props changed) head/mail/p5-Email-Sender-Transport-SMTP-TLS/Makefile (contents, props changed) head/mail/p5-Email-Sender-Transport-SQLite/Makefile (contents, props changed) head/mail/p5-Mail-Audit-Attach/Makefile (contents, props changed) head/mail/p5-Mail-DomainKeys/Makefile (contents, props changed) head/mail/p5-Mail-Graph/Makefile (contents, props changed) head/mail/p5-Mail-ListDetector/Makefile (contents, props changed) head/mail/p5-Mail-Tools/Makefile (contents, props changed) head/mail/p5-Net-SMTPS/Makefile (contents, props changed) head/mail/sympa/Makefile (contents, props changed) head/math/p5-Task-Math-Symbolic/Makefile (contents, props changed) head/misc/p5-Geo-Cache/Makefile (contents, props changed) head/misc/p5-Geo-Coder-Multiple/Makefile (contents, props changed) head/misc/p5-Locale-Geocode/Makefile (contents, props changed) head/misc/xiphos/Makefile (contents, props changed) head/net-im/p5-Jabber-SimpleSend/Makefile (contents, props changed) head/net-mgmt/p5-AnyEvent-SNMP/Makefile (contents, props changed) head/net-mgmt/p5-BigIP-iControl/Makefile (contents, props changed) head/net-mgmt/p5-Net-Telnet-Cisco-IOS/Makefile (contents, props changed) head/net-mgmt/p5-SNMP-Info/Makefile (contents, props changed) head/net-mgmt/p5-jmx4perl/Makefile (contents, props changed) head/net/p5-AnyEvent-MPRPC/Makefile (contents, props changed) head/net/p5-IO-Socket-Multicast/Makefile (contents, props changed) head/net/p5-Net-Analysis/Makefile (contents, props changed) head/net/p5-Net-CIDR-MobileJP/Makefile (contents, props changed) head/net/p5-Net-Google-Analytics/Makefile (contents, props changed) head/net/p5-Net-Hiveminder/Makefile (contents, props changed) head/net/p5-Net-SSH-Expect/Makefile (contents, props changed) head/net/p5-Net-Server-Coro/Makefile (contents, props changed) head/net/p5-Net-Yadis/Makefile (contents, props changed) head/net/p5-POE-Component-Client-Traceroute/Makefile (contents, props changed) head/net/p5-POE-Component-ControlPort/Makefile (contents, props changed) head/net/p5-POEx-Role-TCPServer/Makefile (contents, props changed) head/net/p5-REST-Google/Makefile (contents, props changed) head/net/p5-RPC-EPC-Service/Makefile (contents, props changed) head/net/p5-ResourcePool-Resource-SOAP-Lite/Makefile (contents, props changed) head/net/p5-URI-Match/Makefile (contents, props changed) head/net/scnc/Makefile (contents, props changed) head/news/p5-News-Article-NoCeM/Makefile (contents, props changed) head/ports-mgmt/distilator/Makefile (contents, props changed) head/russian/p5-XML-Parser-encodings/Makefile (contents, props changed) head/science/py-veusz/Makefile (contents, props changed) head/security/kpcli/Makefile (contents, props changed) head/security/p5-App-TLSMe/Makefile (contents, props changed) head/security/p5-Crypt-DSA/Makefile (contents, props changed) head/security/p5-GnuPG-Interface/Makefile (contents, props changed) head/security/p5-SHA/Makefile (contents, props changed) head/sysutils/confman/Makefile (contents, props changed) head/sysutils/p5-Schedule-Cron/Makefile (contents, props changed) head/sysutils/p5-Schedule-Load/Makefile (contents, props changed) head/sysutils/p5-Sys-Filesystem/Makefile (contents, props changed) head/textproc/p5-CSS-Squish/Makefile (contents, props changed) head/textproc/p5-CSS-Tiny/Makefile (contents, props changed) head/textproc/p5-HTML-Copy/Makefile (contents, props changed) head/textproc/p5-Lingua-EN-Inflect-Phrase/Makefile (contents, props changed) head/textproc/p5-PPIx-Utilities/Makefile (contents, props changed) head/textproc/p5-Pod-Tree/Makefile (contents, props changed) head/textproc/p5-Regexp-Log-Common/Makefile (contents, props changed) head/textproc/p5-String-Truncate/Makefile (contents, props changed) head/textproc/p5-String-Urandom/Makefile (contents, props changed) head/textproc/p5-Text-Patch/Makefile (contents, props changed) head/textproc/p5-Text-Report/Makefile (contents, props changed) head/textproc/p5-Text-Sass/Makefile (contents, props changed) head/textproc/p5-XML-DOM/Makefile (contents, props changed) head/textproc/p5-XML-FOAF/Makefile (contents, props changed) head/textproc/p5-XML-RSS-JavaScript/Makefile (contents, props changed) head/textproc/p5-XML-RSS-Parser/Makefile (contents, props changed) head/textproc/p5-XML-RSS/Makefile (contents, props changed) head/textproc/p5-XML-Rewrite/Makefile (contents, props changed) head/textproc/p5-XML-Rules/Makefile (contents, props changed) head/textproc/p5-XML-SAX-Expat-Incremental/Makefile (contents, props changed) head/textproc/p5-XML-SAX-Expat/Makefile (contents, props changed) head/textproc/p5-YAPE-Regex-Explain/Makefile (contents, props changed) head/textproc/p5-pod2pdf/Makefile (contents, props changed) head/textproc/py-pyhwp/Makefile (contents, props changed) head/www/interchange/Makefile (contents, props changed) head/www/p5-AnyEvent-Mojo/Makefile (contents, props changed) head/www/p5-AnyEvent-ReverseHTTP/Makefile (contents, props changed) head/www/p5-AnyEvent-SCGI/Makefile (contents, props changed) head/www/p5-Ark/Makefile (contents, props changed) head/www/p5-Business-PayPal/Makefile (contents, props changed) head/www/p5-CGI-Application-PSGI/Makefile (contents, props changed) head/www/p5-CGI-Application-Plugin-ConfigAuto/Makefile (contents, props changed) head/www/p5-CGI-Compile/Makefile (contents, props changed) head/www/p5-CGI-Emulate-PSGI/Makefile (contents, props changed) head/www/p5-CGI-SSI/Makefile (contents, props changed) head/www/p5-CGI-Untaint-email/Makefile (contents, props changed) head/www/p5-Catalyst-Controller-FormBuilder/Makefile (contents, props changed) head/www/p5-Catalyst-Engine-PSGI/Makefile (contents, props changed) head/www/p5-Catalyst-Model-Adaptor/Makefile (contents, props changed) head/www/p5-Catalyst-Model-Memcached/Makefile (contents, props changed) head/www/p5-Catalyst-Plugin-Authorization-Roles/Makefile (contents, props changed) head/www/p5-Catalyst-Plugin-ConfigLoader-Environment/Makefile (contents, props changed) head/www/p5-Catalyst-Plugin-Session-State-Cookie/Makefile (contents, props changed) head/www/p5-Catalyst-View-Jemplate/Makefile (contents, props changed) head/www/p5-Catalyst-View-REST-XML/Makefile (contents, props changed) head/www/p5-CatalystX-Component-Traits/Makefile (contents, props changed) head/www/p5-Corona/Makefile (contents, props changed) head/www/p5-Dancer-Plugin-Lexicon/Makefile (contents, props changed) head/www/p5-Dancer-Plugin-Memcached/Makefile (contents, props changed) head/www/p5-Dancer-Plugin-REST/Makefile (contents, props changed) head/www/p5-Dancer-Plugin-ValidationClass/Makefile (contents, props changed) head/www/p5-Dancer-Template-Xslate/Makefile (contents, props changed) head/www/p5-Dancer/Makefile (contents, props changed) head/www/p5-FCGI-Client/Makefile (contents, props changed) head/www/p5-Facebook-Graph/Makefile (contents, props changed) head/www/p5-Feed-Find/Makefile (contents, props changed) head/www/p5-Flea/Makefile (contents, props changed) head/www/p5-Fliggy/Makefile (contents, props changed) head/www/p5-Furl/Makefile (contents, props changed) head/www/p5-Google-Search/Makefile (contents, props changed) head/www/p5-GunghoX-FollowLinks/Makefile (contents, props changed) head/www/p5-HTML-ContentExtractor/Makefile (contents, props changed) head/www/p5-HTML-ExtractContent/Makefile (contents, props changed) head/www/p5-HTML-ExtractMain/Makefile (contents, props changed) head/www/p5-HTML-FillInForm-ForceUTF8/Makefile (contents, props changed) head/www/p5-HTML-GoogleMaps/Makefile (contents, props changed) head/www/p5-HTML-Parser/Makefile (contents, props changed) head/www/p5-HTML-Shakan/Makefile (contents, props changed) head/www/p5-HTML-StickyQuery-DoCoMoGUID/Makefile (contents, props changed) head/www/p5-HTML-Template-Associate/Makefile (contents, props changed) head/www/p5-HTTP-Engine-Middleware/Makefile (contents, props changed) head/www/p5-HTTP-Exception/Makefile (contents, props changed) head/www/p5-HTTP-MobileAgent-Plugin-Charset/Makefile (contents, props changed) head/www/p5-HTTP-MobileAgent-Plugin-Locator/Makefile (contents, props changed) head/www/p5-HTTP-MobileAgent/Makefile (contents, props changed) head/www/p5-HTTP-Session-State-MobileAgentID/Makefile (contents, props changed) head/www/p5-HTTP-Session/Makefile (contents, props changed) head/www/p5-HTTP-Thin/Makefile (contents, props changed) head/www/p5-JE/Makefile (contents, props changed) head/www/p5-LWP-Authen-Negotiate/Makefile (contents, props changed) head/www/p5-LWP-Authen-OAuth/Makefile (contents, props changed) head/www/p5-LWP-ConnCache-MaxKeepAliveRequests/Makefile (contents, props changed) head/www/p5-LWP-UserAgent-Determined/Makefile (contents, props changed) head/www/p5-Net-FireEagle/Makefile (contents, props changed) head/www/p5-Net-GeoPlanet/Makefile (contents, props changed) head/www/p5-Net-STF-Client/Makefile (contents, props changed) head/www/p5-POE-Component-Server-PSGI/Makefile (contents, props changed) head/www/p5-POEx-Role-PSGIServer/Makefile (contents, props changed) head/www/p5-Path-Class-URI/Makefile (contents, props changed) head/www/p5-Perlbal-Plugin-PSGI/Makefile (contents, props changed) head/www/p5-Plack-App-Proxy/Makefile (contents, props changed) head/www/p5-Plack-Handler-AnyEvent-HTTPD/Makefile (contents, props changed) head/www/p5-Plack-Handler-AnyEvent-ReverseHTTP/Makefile (contents, props changed) head/www/p5-Plack-Handler-AnyEvent-SCGI/Makefile (contents, props changed) head/www/p5-Plack-Handler-CLI/Makefile (contents, props changed) head/www/p5-Plack-Handler-SCGI/Makefile (contents, props changed) head/www/p5-Plack-Middleware-AMF/Makefile (contents, props changed) head/www/p5-Plack-Middleware-AddDefaultCharset/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Auth-Digest/Makefile (contents, props changed) head/www/p5-Plack-Middleware-AutoRefresh/Makefile (contents, props changed) head/www/p5-Plack-Middleware-ConsoleLogger/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Debug/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Deflater/Makefile (contents, props changed) head/www/p5-Plack-Middleware-File-Sass/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Header/Makefile (contents, props changed) head/www/p5-Plack-Middleware-IEnosniff/Makefile (contents, props changed) head/www/p5-Plack-Middleware-JSConcat/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Precompressed/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Reproxy/Makefile (contents, props changed) head/www/p5-Plack-Middleware-ReverseProxy/Makefile (contents, props changed) head/www/p5-Plack-Middleware-ServerStatus-Lite/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Session/Makefile (contents, props changed) head/www/p5-Plack-Middleware-SocketIO/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Status/Makefile (contents, props changed) head/www/p5-Plack-Middleware-Throttle/Makefile (contents, props changed) head/www/p5-Plack-Server-Coro/Makefile (contents, props changed) head/www/p5-Plack-Server-POE/Makefile (contents, props changed) head/www/p5-Plack-Server-ReverseHTTP/Makefile (contents, props changed) head/www/p5-Plack/Makefile (contents, props changed) head/www/p5-REST-Google-Apps-Provisioning/Makefile (contents, props changed) head/www/p5-Role-REST-Client/Makefile (contents, props changed) head/www/p5-STF-Dispatcher-PSGI/Makefile (contents, props changed) head/www/p5-Squatting-On-PSGI/Makefile (contents, props changed) head/www/p5-Starlet/Makefile (contents, props changed) head/www/p5-Starman/Makefile (contents, props changed) head/www/p5-Template-Plugin-Number-Format/Makefile (contents, props changed) head/www/p5-Template-Plugin-VMethods/Makefile (contents, props changed) head/www/p5-Template-Stash-AutoEscape/Makefile (contents, props changed) head/www/p5-Tenjin/Makefile (contents, props changed) head/www/p5-Twiggy/Makefile (contents, props changed) head/www/p5-URI-ParseSearchString/Makefile (contents, props changed) head/www/p5-WWW-Mechanize-CGI/Makefile (contents, props changed) head/www/p5-WWW-Mechanize-Meta/Makefile (contents, props changed) head/www/p5-WWW-Mixi-Scraper/Makefile (contents, props changed) head/www/p5-WWW-Plurk/Makefile (contents, props changed) head/www/p5-WWW-Scripter-Plugin-Ajax/Makefile (contents, props changed) head/www/p5-WWW-Scripter-Plugin-JavaScript/Makefile (contents, props changed) head/www/p5-WWW-Scripter/Makefile (contents, props changed) head/www/p5-WWW-Yandex-TIC/Makefile (contents, props changed) head/www/p5-WebService-Basecamp/Makefile (contents, props changed) head/www/p5-WebService-CIA/Makefile (contents, props changed) head/www/p5-WebService-Redmine/Makefile (contents, props changed) head/www/p5-WebService-YouTube/Makefile (contents, props changed) head/www/p5-webservice-validator-html-w3c/Makefile (contents, props changed) head/www/perlbal/Makefile (contents, props changed) Modified: head/audio/p5-Filesys-Virtual-DAAP/Makefile ============================================================================== --- head/audio/p5-Filesys-Virtual-DAAP/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/audio/p5-Filesys-Virtual-DAAP/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Present a DAAP share as a VFS +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-Accessor>=0:devel/p5-Class-Accessor \ p5-Filesys-Virtual>=0:devel/p5-Filesys-Virtual \ p5-Filesys-Virtual-Plain>=0:devel/p5-Filesys-Virtual-Plain \ p5-Net-DAAP-Client>=0:audio/p5-Net-DAAP-Client -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= modbuild Modified: head/audio/p5-Net-DAAP-Client/Makefile ============================================================================== --- head/audio/p5-Net-DAAP-Client/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/audio/p5-Net-DAAP-Client/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Client for Apple iTunes DAAP service +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Digest-MD5-M4p>=0:security/p5-Digest-MD5-M4p \ p5-libwww>=0:www/p5-libwww \ p5-Net-DAAP-DMAP>=0:audio/p5-Net-DAAP-DMAP -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= modbuild Modified: head/benchmarks/p5-Benchmark-Stopwatch/Makefile ============================================================================== --- head/benchmarks/p5-Benchmark-Stopwatch/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/benchmarks/p5-Benchmark-Stopwatch/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple timing of stages of your code +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-Test-LongString>=0:devel/p5-Test-LongString RUN_DEPENDS= p5-Clone>=0:devel/p5-Clone -BUILD_DEPENDS:= ${RUN_DEPENDS} -BUILD_DEPENDS+= p5-Test-LongString>=0:devel/p5-Test-LongString USES= perl5 USE_PERL5= configure Modified: head/cad/pcb/Makefile ============================================================================== --- head/cad/pcb/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/cad/pcb/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,11 +12,11 @@ COMMENT= X11 interactive printed circuit board layout LICENSE= GPLv2 +BUILD_DEPENDS= ${RUN_DEPENDS} LIB_DEPENDS= libgd.so:graphics/gd \ libgtkglext-x11-1.0.so:x11-toolkits/gtkglext RUN_DEPENDS= m4>=1.4.11:devel/m4 \ ${LOCALBASE}/libdata/pkgconfig/dbus-1.pc:devel/dbus -BUILD_DEPENDS:= ${RUN_DEPENDS} CONFLICTS= gts-[0-9]* Modified: head/chinese/p5-Text-Greeking-zh_TW/Makefile ============================================================================== --- head/chinese/p5-Text-Greeking-zh_TW/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/chinese/p5-Text-Greeking-zh_TW/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate meaningless Chinese text that creates the illusion of the document +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-common-sense>=2.02:devel/p5-common-sense -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/chinese/scim-fcitx/Makefile ============================================================================== --- head/chinese/scim-fcitx/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/chinese/scim-fcitx/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -15,8 +15,8 @@ COMMENT= SCIM IMEngine module for fcitx LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= scim:textproc/scim -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= tar:bzip2 gmake libtool:keepla pkgconfig GNU_CONFIGURE= yes Modified: head/comms/p5-SMS-Send-TW-PChome/Makefile ============================================================================== --- head/comms/p5-SMS-Send-TW-PChome/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/comms/p5-SMS-Send-TW-PChome/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= SMS::Send driver for sms.pchome.com.tw +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-SMS-Send>=0:comms/p5-SMS-Send \ p5-Text-Iconv>=0:converters/p5-Text-Iconv \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/comms/p5-SMS-Send-TW-Qma/Makefile ============================================================================== --- head/comms/p5-SMS-Send-TW-Qma/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/comms/p5-SMS-Send-TW-Qma/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= SMS::Send driver for http://www.qma.com/ +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-SMS-Send>=0:comms/p5-SMS-Send \ p5-Crypt-SSLeay>=0.57:security/p5-Crypt-SSLeay \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/comms/p5-SMS-Send-TW-Socket2Air/Makefile ============================================================================== --- head/comms/p5-SMS-Send-TW-Socket2Air/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/comms/p5-SMS-Send-TW-Socket2Air/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= SMS::Send driver for Socket2Air +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-SMS-Send>=0:comms/p5-SMS-Send \ p5-Switch>=0:lang/p5-Switch \ p5-libwww>=0:www/p5-libwww \ p5-Text-Iconv>=0:converters/p5-Text-Iconv -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/comms/p5-SMS-Send-TW-chtsns/Makefile ============================================================================== --- head/comms/p5-SMS-Send-TW-chtsns/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/comms/p5-SMS-Send-TW-chtsns/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= SMS::Send driver for SNS service of CHT +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-SMS-Send>=0:comms/p5-SMS-Send \ p5-Switch>=0:lang/p5-Switch \ p5-libwww>=0:www/p5-libwww \ p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-Text-Iconv>=0:converters/p5-Text-Iconv -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/comms/p5-SMS-Send-TW-emome/Makefile ============================================================================== --- head/comms/p5-SMS-Send-TW-emome/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/comms/p5-SMS-Send-TW-emome/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= snowfly@yuntech.edu.tw COMMENT= SMS::Send driver for www.emome.net +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-SMS-Send>=0.03:comms/p5-SMS-Send \ p5-Crypt-SSLeay>=0.57:security/p5-Crypt-SSLeay \ p5-WWW-Mechanize>=1.20:www/p5-WWW-Mechanize \ p5-Text-Iconv>=:converters/p5-Text-Iconv -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/converters/p5-Convert-PEM/Makefile ============================================================================== --- head/converters/p5-Convert-PEM/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-Convert-PEM/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Read/write access to ASN.1-encoded PEM files with optional encryption +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-ErrorHandler>=0:devel/p5-Class-ErrorHandler \ p5-Convert-ASN1>=0.10:converters/p5-Convert-ASN1 \ p5-Crypt-DES_EDE3>=0:security/p5-Crypt-DES_EDE3 -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/converters/p5-Data-AMF/Makefile ============================================================================== --- head/converters/p5-Data-AMF/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-Data-AMF/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,12 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to serialize, deserialize AMF data +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DateTime>0:devel/p5-DateTime \ p5-Any-Moose>0:devel/p5-Any-Moose \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require \ p5-XML-LibXML>0:textproc/p5-XML-LibXML -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/converters/p5-Encode-Punycode/Makefile ============================================================================== --- head/converters/p5-Encode-Punycode/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-Encode-Punycode/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,9 +12,9 @@ COMMENT= Encode plugin for Punycode LICENSE= GPLv1 -RUN_DEPENDS= p5-Net-IDN-Encode>=0:textproc/p5-Net-IDN-Encode -BUILD_DEPENDS:= ${RUN_DEPENDS} \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings +RUN_DEPENDS= p5-Net-IDN-Encode>=0:textproc/p5-Net-IDN-Encode USES= perl5 USE_PERL5= modbuild Modified: head/converters/p5-JSON-XS-VersionOneAndTwo/Makefile ============================================================================== --- head/converters/p5-JSON-XS-VersionOneAndTwo/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-JSON-XS-VersionOneAndTwo/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Support versions 1 and 2 of JSON::XS +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-JSON-XS>=0:converters/p5-JSON-XS -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/converters/p5-JSON1/Makefile ============================================================================== --- head/converters/p5-JSON1/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-JSON1/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMESUFFIX= 1 MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to convert to JSON (JavaScript Object Notation) +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-libwww>=0:www/p5-libwww -BUILD_DEPENDS:= ${RUN_DEPENDS} CONFLICTS= p5-JSON-2.* USES= perl5 Modified: head/converters/p5-MIME-Base64-URLSafe/Makefile ============================================================================== --- head/converters/p5-MIME-Base64-URLSafe/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-MIME-Base64-URLSafe/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= citric@cubicone.tmetic.com COMMENT= Perl version of Python's URL-safe base64 codec +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-MIME-Base64>=0:converters/p5-MIME-Base64 -BUILD_DEPENDS:= ${RUN_DEPENDS} WRKSRC= ${WRKDIR}/${DISTNAME:S/00//} Modified: head/converters/p5-Net-IDN-Nameprep/Makefile ============================================================================== --- head/converters/p5-Net-IDN-Nameprep/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/converters/p5-Net-IDN-Nameprep/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Normalization of domain names (Nameprep, RFC 3491) -RUN_DEPENDS= p5-Unicode-Stringprep>=0:converters/p5-Unicode-Stringprep -BUILD_DEPENDS:= ${RUN_DEPENDS} \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings +RUN_DEPENDS= p5-Unicode-Stringprep>=0:converters/p5-Unicode-Stringprep USES= perl5 USE_PERL5= modbuild Modified: head/databases/p5-Class-DBI-AbstractSearch/Makefile ============================================================================== --- head/databases/p5-Class-DBI-AbstractSearch/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-AbstractSearch/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Abstract Class::DBI SQL with SQL::Abstract +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-SQL-Abstract>=0:databases/p5-SQL-Abstract \ p5-SQL-Abstract-Limit>=0:databases/p5-SQL-Abstract-Limit -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Class-DBI-BaseDSN/Makefile ============================================================================== --- head/databases/p5-Class-DBI-BaseDSN/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-BaseDSN/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DSN sensitive base class -BUILD_DEPENDS:= ${RUN_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI USES= perl5 Modified: head/databases/p5-Class-DBI-DATA-Schema/Makefile ============================================================================== --- head/databases/p5-Class-DBI-DATA-Schema/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-DATA-Schema/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Execute Class::DBI SQL from DATA sections +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-Test-Simple>=0:devel/p5-Test-Simple RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} -BUILD_DEPENDS+= p5-Test-Simple>=0:devel/p5-Test-Simple USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Class-DBI-FromCGI/Makefile ============================================================================== --- head/databases/p5-Class-DBI-FromCGI/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-FromCGI/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Update Class::DBI data using CGI::Untaint -BUILD_DEPENDS:= ${RUN_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-CGI-Untaint>=0:www/p5-CGI-Untaint Modified: head/databases/p5-Class-DBI-Loader/Makefile ============================================================================== --- head/databases/p5-Class-DBI-Loader/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-Loader/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,10 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Dynamic definition of Class::DBI sub classes +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-DBI>=0.89:databases/p5-Class-DBI \ p5-DBI>=1.3:databases/p5-DBI \ p5-Lingua-EN-Inflect>=0:textproc/p5-Lingua-EN-Inflect -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Class-DBI-Pager/Makefile ============================================================================== --- head/databases/p5-Class-DBI-Pager/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-Pager/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pager utility for Class::DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-Exporter-Lite>=0:devel/p5-Exporter-Lite \ p5-Data-Page>=0:databases/p5-Data-Page \ Modified: head/databases/p5-Class-DBI-SAK/Makefile ============================================================================== --- head/databases/p5-Class-DBI-SAK/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-SAK/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Class::DBI Swiss Army Knife (SAK) -BUILD_DEPENDS:= ${RUN_DEPENDS} \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ p5-mixin>=0:devel/p5-mixin RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-Class-DBI-AbstractSearch>=0:databases/p5-Class-DBI-AbstractSearch \ Modified: head/databases/p5-Class-DBI-SQLite/Makefile ============================================================================== --- head/databases/p5-Class-DBI-SQLite/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-SQLite/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extension to Class::DBI for sqlite +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Ima-DBI>=0:databases/p5-Ima-DBI \ p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-SQL-Statement>=0:databases/p5-SQL-Statement \ p5-Clone>=0:devel/p5-Clone -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Class-DBI-ToSax/Makefile ============================================================================== --- head/databases/p5-Class-DBI-ToSax/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-DBI-ToSax/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extension to Class::DBI for sqlite +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Class-DBI>=0:databases/p5-Class-DBI \ p5-XML-SAX-Writer>=0:textproc/p5-XML-SAX-Writer \ p5-NEXT>=0:devel/p5-NEXT -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Class-Inflate/Makefile ============================================================================== --- head/databases/p5-Class-Inflate/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Class-Inflate/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Inflate HASH Object from Values in Database -RUN_DEPENDS= p5-Devel-Messenger>=0:devel/p5-Devel-Messenger -BUILD_DEPENDS:= ${RUN_DEPENDS} -BUILD_DEPENDS+= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Test-Debugger>=0:devel/p5-Test-Debugger +RUN_DEPENDS= p5-Devel-Messenger>=0:devel/p5-Devel-Messenger USES= perl5 USE_PERL5= modbuild Modified: head/databases/p5-DBD-PgLite/Makefile ============================================================================== --- head/databases/p5-DBD-PgLite/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBD-PgLite/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= PostgreSQL emulation mode for SQLite +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBD-SQLite>=1.0:databases/p5-DBD-SQLite \ p5-Text-Iconv>=1.0:converters/p5-Text-Iconv \ p5-DBI>=1.30:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBI-Shell/Makefile ============================================================================== --- head/databases/p5-DBI-Shell/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBI-Shell/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,11 +11,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interactive command shell for the DBI +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Text-Reform>=0:textproc/p5-Text-Reform \ p5-Text-CSV_XS>=0:textproc/p5-Text-CSV_XS \ p5-IO-Tee>=0:devel/p5-IO-Tee -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= lib/DBI/Shell/SQLMinus.pm Modified: head/databases/p5-DBIx-Class-DeploymentHandler/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-DeploymentHandler/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-DeploymentHandler/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,6 +12,7 @@ COMMENT= Perl extension for extensible DBIx::Class dep LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Carp-Clan>0:devel/p5-Carp-Clan \ p5-Context-Preserve>0:devel/p5-Context-Preserve \ @@ -26,7 +27,6 @@ RUN_DEPENDS= \ p5-Text-Brew>=0.02:textproc/p5-Text-Brew \ p5-Try-Tiny>0:lang/p5-Try-Tiny \ p5-namespace-autoclean>0:devel/p5-namespace-autoclean -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBIx-Class-DigestColumns/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-DigestColumns/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-DigestColumns/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Automatic digest columns +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class>=0.06002:databases/p5-DBIx-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= modbuild extract Modified: head/databases/p5-DBIx-Class-DynamicSubclass/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-DynamicSubclass/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-DynamicSubclass/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= vovkasm@gmail.com COMMENT= Use dynamic subclassing with DBIx::Class +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class>=0.07003:databases/p5-DBIx-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBIx-Class-Fixtures/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-Fixtures/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-Fixtures/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,6 +13,7 @@ COMMENT= Perl extension to use fixtures with DBIx::Cla LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor-Grouped>=0.1001:devel/p5-Class-Accessor-Grouped \ p5-Config-Any>=0.23:devel/p5-Config-Any \ @@ -29,7 +30,6 @@ RUN_DEPENDS= \ p5-IO-All>=0.85:devel/p5-IO-All \ p5-YAML-Syck>=1.27:textproc/p5-YAML-Syck \ p5-Path-Class>=0.32:devel/p5-Path-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= \ p5-DBD-SQLite>=1.12:databases/p5-DBD-SQLite \ p5-DBIx-Class-InflateColumn-FS>=0.01007:databases/p5-DBIx-Class-InflateColumn-FS \ Modified: head/databases/p5-DBIx-Class-FrozenColumns/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-FrozenColumns/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-FrozenColumns/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -14,9 +14,9 @@ COMMENT= Store virtual columns inside another column LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class>=0.07003:databases/p5-DBIx-Class \ p5-JSON-XS>=0:converters/p5-JSON-XS -BUILD_DEPENDS:= ${RUN_DEPENDS} NO_ARCH= yes USES= perl5 Modified: head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,10 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= fw@moov.de COMMENT= Inflate/deflate columns to Authen::Passphrase instances +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class-DynamicDefault>=0.03:databases/p5-DBIx-Class-DynamicDefault \ - p5-DBIx-Class>=0.08009:databases/p5-DBIx-Class \ - p5-Authen-Passphrase>=0:security/p5-Authen-Passphrase -BUILD_DEPENDS:= p5-DBIx-Class-DynamicDefault>=0.03:databases/p5-DBIx-Class-DynamicDefault \ p5-DBIx-Class>=0.08009:databases/p5-DBIx-Class \ p5-Authen-Passphrase>=0:security/p5-Authen-Passphrase Modified: head/databases/p5-DBIx-Class-InflateColumn-FS/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-InflateColumn-FS/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-InflateColumn-FS/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to {in,de}flate columns to Path::Class::File objects +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBIx-Class>=0.08:databases/p5-DBIx-Class \ p5-DBIx-Class-UUIDColumns>=0.02005:databases/p5-DBIx-Class-UUIDColumns \ p5-Path-Class>0:devel/p5-Path-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-DBICx-TestDatabase>=0:databases/p5-DBICx-TestDatabase USES= perl5 Modified: head/databases/p5-DBIx-Class-PassphraseColumn/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-PassphraseColumn/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-PassphraseColumn/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= fw@moov.de COMMENT= Automatically hash password/passphrase columns +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class-DynamicDefault>=0.03:databases/p5-DBIx-Class-DynamicDefault \ p5-DBIx-Class>=0.08009:databases/p5-DBIx-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBIx-Class-TimeStamp/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-TimeStamp/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-TimeStamp/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= DBIx::Class extension to handle date and time based fields +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class-DynamicDefault>=0.03:databases/p5-DBIx-Class-DynamicDefault \ p5-DBIx-Class>=0.08009:databases/p5-DBIx-Class \ p5-DateTime>=0.55:devel/p5-DateTime \ p5-Time-Warp>=0:devel/p5-Time-Warp \ p5-DateTime-Format-MySQL>=0:devel/p5-DateTime-Format-MySQL \ p5-DateTime-Format-SQLite>=0:devel/p5-DateTime-Format-SQLite -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 Modified: head/databases/p5-DBIx-Class-Tree-NestedSet/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-Tree-NestedSet/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-Tree-NestedSet/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to manage trees of data using the nested set model +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBIx-Class>=0.08:databases/p5-DBIx-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-DBICx-TestDatabase>=0:databases/p5-DBICx-TestDatabase \ p5-Test-Exception>=0:devel/p5-Test-Exception Modified: head/databases/p5-DBIx-Class-Tree/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-Tree/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-Tree/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,9 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to manipulate and analyze tree structured data +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBIx-Class>=0.08100:databases/p5-DBIx-Class -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite Modified: head/databases/p5-DBIx-Class-WebForm/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-WebForm/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Class-WebForm/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= CRUD methods for DBIx::Class +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ p5-HTML-Tree>=0:www/p5-HTML-Tree \ p5-Data-FormValidator>=0:textproc/p5-Data-FormValidator -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= modbuild Modified: head/databases/p5-DBIx-Connector/Makefile ============================================================================== --- head/databases/p5-DBIx-Connector/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Connector/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -9,8 +9,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for fast, safe DBI connection management +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBI>=1.605:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-MockModule>=0:devel/p5-Test-MockModule USES= perl5 Modified: head/databases/p5-DBIx-ContextualFetch/Makefile ============================================================================== --- head/databases/p5-DBIx-ContextualFetch/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-ContextualFetch/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -14,8 +14,8 @@ COMMENT= Add contextual fetches to DBI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 Modified: head/databases/p5-DBIx-DBHResolver/Makefile ============================================================================== --- head/databases/p5-DBIx-DBHResolver/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-DBHResolver/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,6 +10,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to resolve DB connection with many database servers +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Config-Any>0:devel/p5-Config-Any \ @@ -19,7 +20,6 @@ RUN_DEPENDS= \ p5-Try-Tiny>0:lang/p5-Try-Tiny \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require \ p5-YAML>0:textproc/p5-YAML -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-Sub-Uplevel>=0:devel/p5-Sub-Uplevel Modified: head/databases/p5-DBIx-Inspector/Makefile ============================================================================== --- head/databases/p5-DBIx-Inspector/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Inspector/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to get information from $dbh +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor-Lite>0:devel/p5-Class-Accessor-Lite \ p5-DBI>0:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-Test-Requires>0:devel/p5-Test-Requires \ Modified: head/databases/p5-DBIx-QueryLog/Makefile ============================================================================== --- head/databases/p5-DBIx-QueryLog/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-QueryLog/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,10 +12,10 @@ COMMENT= Perl extension for logging queries for DBI LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBI>0:databases/p5-DBI \ p5-Text-ASCIITable>0:textproc/p5-Text-ASCIITable -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-Class-Method-Modifiers>0:devel/p5-Class-Method-Modifiers \ Modified: head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/Makefile ============================================================================== --- head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,6 +13,7 @@ COMMENT= Perl extension to inflate/deflate DateTime fo LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite \ p5-DBIx-Skinny>=0.05:databases/p5-DBIx-Skinny \ @@ -20,7 +21,6 @@ RUN_DEPENDS= \ p5-DateTime-Format-MySQL>0:devel/p5-DateTime-Format-MySQL \ p5-DateTime-Format-Strptime>0:devel/p5-DateTime-Format-Strptime \ p5-DateTime-TimeZone>0:devel/p5-DateTime-TimeZone -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-DBD-Mock>=0:databases/p5-DBD-Mock NO_ARCH= yes Modified: head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/Makefile ============================================================================== --- head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension of DBIx::DBHResolver mixin for DBIx::Skinny +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBIx-DBHResolver>0:databases/p5-DBIx-DBHResolver \ p5-DBIx-Skinny>0:databases/p5-DBIx-Skinny -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBIx-Skinny-Pager/Makefile ============================================================================== --- head/databases/p5-DBIx-Skinny-Pager/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Skinny-Pager/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,11 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension of resultset pager for DBIx::Skinny +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBIx-Skinny>=0.0729:databases/p5-DBIx-Skinny \ p5-Data-Page>0:databases/p5-Data-Page \ p5-Class-Accessor-Lite>0:devel/p5-Class-Accessor-Lite -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-Test-UseAllModules>=0:devel/p5-Test-UseAllModules \ p5-Test-Deep>0:devel/p5-Test-Deep \ Modified: head/databases/p5-DBIx-Skinny-Schema-Loader/Makefile ============================================================================== --- head/databases/p5-DBIx-Skinny-Schema-Loader/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Skinny-Schema-Loader/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to load schema for DBIx::Skinny +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBIx-Skinny>=0.0733:databases/p5-DBIx-Skinny -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Class-Data-Inheritable>=0:devel/p5-Class-Data-Inheritable Modified: head/databases/p5-DBIx-Skinny/Makefile ============================================================================== --- head/databases/p5-DBIx-Skinny/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-Skinny/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,6 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for simple DBI wrapper/ORMapper +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBI>0:databases/p5-DBI \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require \ @@ -18,7 +19,6 @@ RUN_DEPENDS= \ p5-Try-Tiny>0:lang/p5-Try-Tiny \ p5-DBIx-TransactionManager>=1.07:databases/p5-DBIx-TransactionManager \ p5-Class-Load>0:devel/p5-Class-Load -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBIx-TransactionManager/Makefile ============================================================================== --- head/databases/p5-DBIx-TransactionManager/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-DBIx-TransactionManager/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -14,10 +14,10 @@ COMMENT= Perl extension for database transaction handl LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBI>0:databases/p5-DBI \ p5-Try-Tiny>0:lang/p5-Try-Tiny -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Genezzo/Makefile ============================================================================== --- head/databases/p5-Genezzo/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Genezzo/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extensible database with SQL and DBI +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Parse-RecDescent>=0:devel/p5-Parse-RecDescent -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 shebangfix SHEBANG_FILES= lib/Genezzo/*.pl Modified: head/databases/p5-Rose-DBx-Object-Renderer/Makefile ============================================================================== --- head/databases/p5-Rose-DBx-Object-Renderer/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Rose-DBx-Object-Renderer/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Web UI Rendering for Rose::DB::Object +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Rose-DBx-Object-MoreHelpers>=0:databases/p5-Rose-DBx-Object-MoreHelpers \ p5-CGI-FormBuilder>=3.05:www/p5-CGI-FormBuilder \ p5-File-Copy-Recursive>0:devel/p5-File-Copy-Recursive \ p5-Lingua-EN-Inflect>0:textproc/p5-Lingua-EN-Inflect \ p5-Template-Toolkit>0:www/p5-Template-Toolkit -BUILD_DEPENDS:= ${RUN_DEPENDS} WRKSRC= ${WRKDIR}/${PORTNAME} Modified: head/databases/p5-SQL-Abstract-Limit/Makefile ============================================================================== --- head/databases/p5-SQL-Abstract-Limit/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-SQL-Abstract-Limit/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,9 +12,9 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/0$//} MAINTAINER= perl@FreeBSD.org COMMENT= SQL Portability layer for LIMIT emulation +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-SQL-Abstract>=1.24:databases/p5-SQL-Abstract \ p5-DBI>=0:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Deep>=0:devel/p5-Test-Deep Modified: head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile ============================================================================== --- head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to add bulk insert for SQL::Abstract +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-SQL-Abstract>=1.6:databases/p5-SQL-Abstract \ p5-Sub-Exporter>0:devel/p5-Sub-Exporter -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= modbuild Modified: head/databases/p5-SQL-Maker/Makefile ============================================================================== --- head/databases/p5-SQL-Maker/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-SQL-Maker/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,10 +13,10 @@ COMMENT= Perl extension for yet another SQL builder LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ p5-DBI>0:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Simple>=0.96:devel/p5-Test-Simple \ p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-Tie-IxHash>=0:devel/p5-Tie-IxHash Modified: head/databases/p5-Teng/Makefile ============================================================================== --- head/databases/p5-Teng/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Teng/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,6 +13,7 @@ COMMENT= Perl extension for simple DBI wrapper/ORMappe LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite \ p5-Class-Load>=0.06:devel/p5-Class-Load \ @@ -22,7 +23,6 @@ RUN_DEPENDS= \ p5-Data-Page>0:databases/p5-Data-Page \ p5-Data-Page-NoTotalEntries>=0.02:devel/p5-Data-Page-NoTotalEntries \ p5-SQL-Maker>=0.14:databases/p5-SQL-Maker -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= \ p5-DBD-SQLite>=1.12:databases/p5-DBD-SQLite \ p5-Test-Mock-Guard>=0.10:devel/p5-Test-Mock-Guard \ Modified: head/databases/p5-Test-Fixture-DBI/Makefile ============================================================================== --- head/databases/p5-Test-Fixture-DBI/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Test-Fixture-DBI/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,13 +13,13 @@ COMMENT= Perl extension to load fixture data into data LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-DBI>0:databases/p5-DBI \ p5-SQL-Abstract>0:databases/p5-SQL-Abstract \ p5-SQL-Abstract-Plugin-InsertMulti>0:databases/p5-SQL-Abstract-Plugin-InsertMulti \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require \ p5-YAML-Syck>0:textproc/p5-YAML-Syck -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Sub-Uplevel>=0:devel/p5-Sub-Uplevel Modified: head/databases/p5-Test-mysqld/Makefile ============================================================================== --- head/databases/p5-Test-mysqld/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Test-mysqld/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,12 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for mysqld test runner +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor-Lite>0:devel/p5-Class-Accessor-Lite \ p5-File-Copy-Recursive>0:devel/p5-File-Copy-Recursive \ p5-DBD-mysql>=0:databases/p5-DBD-mysql \ p5-Test-SharedFork>=0.06:devel/p5-Test-SharedFork -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/databases/p5-Test-postgresql/Makefile ============================================================================== --- head/databases/p5-Test-postgresql/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Test-postgresql/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,11 +13,11 @@ COMMENT= Perl extension of postgresql runner for tests LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Class-Accessor-Lite>0:devel/p5-Class-Accessor-Lite \ p5-DBI>0:databases/p5-DBI \ p5-DBD-Pg>0:databases/p5-DBD-Pg -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-SharedFork>=0.06:devel/p5-Test-SharedFork USES= perl5 Modified: head/databases/p5-Tie-DBI/Makefile ============================================================================== --- head/databases/p5-Tie-DBI/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/databases/p5-Tie-DBI/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,9 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module implementing Tie hash to a DBI handle +BUILD_DEPENDS= ${RUN_DEPENDS} \ + p5-DBD-SQLite>=0:databases/p5-DBD-SQLite RUN_DEPENDS= p5-DBI>=0:databases/p5-DBI -BUILD_DEPENDS:= ${RUN_DEPENDS} -BUILD_DEPENDS+= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite USES= perl5 USE_PERL5= configure Modified: head/devel/cpan-upload-http/Makefile ============================================================================== --- head/devel/cpan-upload-http/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/cpan-upload-http/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,11 +10,11 @@ MASTER_SITE_SUBDIR= CPAN:BRADFITZ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl script to upload one or more files to CPAN, using PAUSE +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-AppConfig-Std>=1.05:devel/p5-AppConfig-Std \ p5-libwww>0:www/p5-libwww \ p5-Term-ReadKey>0:devel/p5-Term-ReadKey -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/devel/cpan-upload/Makefile ============================================================================== --- head/devel/cpan-upload/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/cpan-upload/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,10 +11,10 @@ MASTER_SITE_SUBDIR= CPAN:NEILB/scripts MAINTAINER= perl@FreeBSD.org COMMENT= Script for uploading distributions to CPAN +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-AppConfig-Std>=1.05:devel/p5-AppConfig-Std \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey \ p5-libwww>=0:www/p5-libwww -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/devel/p5-AI-Prolog/Makefile ============================================================================== --- head/devel/p5-AI-Prolog/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/p5-AI-Prolog/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -12,6 +12,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for logic programming +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-aliased>=0.11:devel/p5-aliased \ p5-Clone>=0.15:devel/p5-Clone \ p5-Exporter-Tidy>=0.06:devel/p5-Exporter-Tidy \ @@ -19,7 +20,6 @@ RUN_DEPENDS= p5-aliased>=0.11:devel/p5-aliased \ p5-Regexp-Common>=2.119:textproc/p5-Regexp-Common \ p5-Text-Quote>=0.03:textproc/p5-Text-Quote \ p5-Term-ReadKey>=2.21:devel/p5-Term-ReadKey -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Acme-Damn/Makefile ============================================================================== --- head/devel/p5-Acme-Damn/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/p5-Acme-Damn/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= imp@FreeBSD.org COMMENT= Unblessing perl objects +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Test-Exception>=0.29:devel/p5-Test-Exception -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Algorithm-Cron/Makefile ============================================================================== --- head/devel/p5-Algorithm-Cron/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/p5-Algorithm-Cron/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,8 +13,8 @@ COMMENT= Abstract implementation of the cron(8) schedu LICENSE= ART10 GPLv1+ LICENSE_COMB= dual -BUILD_DEPENDS:= p5-Time-timegm>=0:devel/p5-Time-timegm -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Time-timegm>=0:devel/p5-Time-timegm USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Algorithm-Merge/Makefile ============================================================================== --- head/devel/p5-Algorithm-Merge/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/p5-Algorithm-Merge/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -11,8 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Three-way merge and diff +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-Algorithm-Diff>=1.15:devel/p5-Algorithm-Diff -BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Alien-SDL/Makefile ============================================================================== --- head/devel/p5-Alien-SDL/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/p5-Alien-SDL/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -14,7 +14,7 @@ LICENSE= GPLv1 ART10 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS:= ${RUN_DEPENDS} \ +BUILD_DEPENDS= ${RUN_DEPENDS} \ p5-Text-Patch>=1.4:textproc/p5-Text-Patch RUN_DEPENDS= p5-Archive-Extract>=0:archivers/p5-Archive-Extract \ p5-File-Which>=0:sysutils/p5-File-Which \ Modified: head/devel/p5-AnyEvent-Filesys-Notify/Makefile ============================================================================== --- head/devel/p5-AnyEvent-Filesys-Notify/Makefile Mon Jul 9 08:38:13 2018 (r474241) +++ head/devel/p5-AnyEvent-Filesys-Notify/Makefile Mon Jul 9 08:40:17 2018 (r474242) @@ -13,6 +13,7 @@ COMMENT= Perl extension for AnyEvent compat to monitor LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-Moo>=1.003001:devel/p5-Moo \ p5-MooX-late>=0.014:devel/p5-MooX-late \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***