Date: Sun, 12 Jul 2015 07:38:53 +0000 (UTC) From: Olli Hauer <ohauer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391768 - head/devel/bugzilla44 Message-ID: <201507120738.t6C7crBC023459@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ohauer Date: Sun Jul 12 07:38:53 2015 New Revision: 391768 URL: https://svnweb.freebsd.org/changeset/ports/391768 Log: - sort USES (noted by portlint) - remove redundant -f from $RM - adjust comment about interface deprecation Modified: head/devel/bugzilla44/Makefile Modified: head/devel/bugzilla44/Makefile ============================================================================== --- head/devel/bugzilla44/Makefile Sat Jul 11 19:00:49 2015 (r391767) +++ head/devel/bugzilla44/Makefile Sun Jul 12 07:38:53 2015 (r391768) @@ -26,7 +26,7 @@ RUN_DEPENDS= \ p5-TimeDate>=2.23:${PORTSDIR}/devel/p5-TimeDate \ p5-URI>=1.55:${PORTSDIR}/net/p5-URI -USES= perl5 cpe +USES= cpe perl5 USE_PERL5= run CPE_VENDOR= mozilla @@ -98,7 +98,6 @@ RUN_DEPENDS+= p5-Email-MIME-Attachment-S .endif .if ${PORT_OPTIONS:MMAIL_QUEUEING} -# p5-File-Slurp will be a default dependency in the next release RUN_DEPENDS+= p5-TheSchwartz>=1.10:${PORTSDIR}/devel/p5-TheSchwartz \ p5-Daemon-Generic>=0:${PORTSDIR}/net/p5-Daemon-Generic \ p5-File-Slurp>=9999.13:${PORTSDIR}/devel/p5-File-Slurp @@ -113,6 +112,8 @@ RUN_DEPENDS+= p5-MIME-Tools>=5.406:${POR RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick .endif +# Note: XML-RPC and JSON-RPC are deprecated in favor of REST +# and will likely be removed in the Bugzilla 7.0 release. .if ${PORT_OPTIONS:MXMLRPC} || ${PORT_OPTIONS:MJSONRPC} RUN_DEPENDS+= p5-Test-Taint>=1.06:${PORTSDIR}/devel/p5-Test-Taint .endif @@ -125,7 +126,6 @@ RUN_DEPENDS+= p5-SOAP-Lite>=0.712:${PORT .endif .if ${PORT_OPTIONS:MJSONRPC} -# p5-JSON-XS will be a default dependency in the next release RUN_DEPENDS+= p5-JSON-RPC>=0:${PORTSDIR}/devel/p5-JSON-RPC \ p5-JSON-XS>=2.0:${PORTSDIR}/converters/p5-JSON-XS .endif @@ -166,8 +166,8 @@ RUN_DEPENDS+= p5-File-MimeInfo>=0.16:${P .endif post-extract: - ${RM} -rf ${WRKSRC}/.git - ${RM} -f ${WRKSRC}/.bzrignore ${WRKSRC}/.gitignore ${WRKSRC}/.gitrev \ + ${RM} -r ${WRKSRC}/.git + ${RM} ${WRKSRC}/.bzrignore ${WRKSRC}/.gitignore ${WRKSRC}/.gitrev \ ${WRKSRC}/docs/en/README.docs ${WRKSRC}/docs/en/html/Bugzilla-Guide.proc \ ${WRKSRC}/.travis.yml ${WRKSRC}/Build.PL ${WRKSRC}/MANIFEST.SKIP \ ${WRKSRC}/taskgraph.json
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507120738.t6C7crBC023459>