Index: head/Mk/Uses/perl5.mk =================================================================== --- head/Mk/Uses/perl5.mk (revision 416156) +++ head/Mk/Uses/perl5.mk (revision 416157) @@ -1,325 +1,330 @@ # $FreeBSD$ # # Provide support to use perl5 # # PERL5 - Set to full path of perl5, either in the system or # installed from a port. # PERL - Set to full path of perl5, either in the system or # installed from a port, but without the version number. # Use this if you need to replace "#!" lines in scripts. # PERL_VERSION - Full version of perl5 (see below for current value). # # PERL_VER - Short version of perl5 (major.minor without patchlevel) # # PERL_LEVEL - Perl version as an integer of the form MNNNPP, where # M is major version, N is minor version, and P is # the patch level. E.g., PERL_VERSION=5.14.4 would give # a PERL_LEVEL of 501404. This can be used in comparisons # to determine if the version of perl is high enough, # whether a particular dependency is needed, etc. # PERL_ARCH - Directory name of architecture dependent libraries # (value: mach). # PERL_PORT - Name of the perl port that is installed # (for example: perl5.18) # SITE_PERL - Directory name where site specific perl packages go. # This value is added to PLIST_SUB. # SITE_ARCH - Directory name where arch site specific perl packages go. # This value is added to PLIST_SUB. # USE_PERL5 - If set, this port uses perl5 in one or more of the extract, # patch, build, install or run phases. # It can also have configure, modbuild and modbuildtiny when # the port needs to run Makefile.PL, Build.PL and a # Module::Build::Tiny flavor of Build.PL. # # MAINTAINER: perl@FreeBSD.org .if !defined(_INCLUDE_USES_PERL5_MK) _INCLUDE_USES_PERL5_MK= yes .if !empty(perl5_ARGS) IGNORE= Incorrect 'USES+=perl5:${perl5_ARGS}' perl5 takes no arguments .endif USE_PERL5?= run build # remove when 5.20 goes away. .sinclude "${LOCALBASE}/etc/perl5_version" .if defined(PERL_VERSION) PERL5_DEPEND= ${PERL5} THIS_IS_OLD_PERL= yes .else # end of remove # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. .include "${PORTSDIR}/Mk/bsd.default-versions.mk" .if ${PERL5_DEFAULT} == 5.18 .include "${PORTSDIR}/lang/perl5.18/version.mk" .elif ${PERL5_DEFAULT} == 5.20 .include "${PORTSDIR}/lang/perl5.20/version.mk" .elif ${PERL5_DEFAULT} == 5.22 .include "${PORTSDIR}/lang/perl5.22/version.mk" .elif ${PERL5_DEFAULT} == 5.24 .include "${PORTSDIR}/lang/perl5.24/version.mk" .elif ${PERL5_DEFAULT} == devel .include "${PORTSDIR}/lang/perl5-devel/version.mk" # Force PERL_PORT here in case two identical PERL_VERSION. PERL_PORT?= perl5-devel .else IGNORE= Invalid perl5 version ${PERL5_DEFAULT} .endif .endif PERL_VER?= ${PERL_VERSION:C/\.[0-9]+$//} .if !defined(PERL_LEVEL) && defined(PERL_VERSION) perl_major= ${PERL_VERSION:C|^([1-9]+).*|\1|} _perl_minor= 00${PERL_VERSION:C|^([1-9]+)\.([0-9]+).*|\2|} perl_minor= ${_perl_minor:C|^.*(...)|\1|} .if ${perl_minor} >= 100 perl_minor= ${PERL_VERSION:C|^([1-9]+)\.([0-9][0-9][0-9]).*|\2|} perl_patch= ${PERL_VERSION:C|^.*(..)|\1|} .else # ${perl_minor} < 100 _perl_patch= 0${PERL_VERSION:C|^([1-9]+)\.([0-9]+)\.*|0|} perl_patch= ${_perl_patch:C|^.*(..)|\1|} .endif # ${perl_minor} < 100 PERL_LEVEL= ${perl_major}${perl_minor}${perl_patch} .else PERL_LEVEL=0 .endif # !defined(PERL_LEVEL) && defined(PERL_VERSION) PERL_ARCH?= mach # there must always be a default to prevent dependency failures such # as "ports/lang: not found". Also, perl5-devel is taken care in the # perl5_default file, or up there in the default versions selection. # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. .if ${PERL_LEVEL} >= 502400 PERL_PORT?= perl5.24 .elif ${PERL_LEVEL} >= 502200 PERL_PORT?= perl5.22 .elif ${PERL_LEVEL} >= 502000 PERL_PORT?= perl5.20 .else # ${PERL_LEVEL} < 502000 PERL_PORT?= perl5.18 .endif SITE_PERL_REL?= lib/perl5/site_perl SITE_PERL?= ${LOCALBASE}/${SITE_PERL_REL} SITE_ARCH_REL?= ${SITE_PERL_REL}/${PERL_ARCH}/${PERL_VER} SITE_ARCH?= ${LOCALBASE}/${SITE_ARCH_REL} SITE_MAN3_REL?= ${SITE_PERL_REL}/man/man3 SITE_MAN3?= ${PREFIX}/${SITE_MAN3_REL} .if defined(THIS_IS_OLD_PERL) SITE_MAN1_REL?= share/man/man1 .else SITE_MAN1_REL?= ${SITE_PERL_REL}/man/man1 .endif SITE_MAN1?= ${PREFIX}/${SITE_MAN1_REL} PERL5?= ${LOCALBASE}/bin/perl${PERL_VERSION} PERL?= ${LOCALBASE}/bin/perl CONFIGURE_ENV+= ac_cv_path_PERL=${PERL} ac_cv_path_PERL_PATH=${PERL} QA_ENV+= SITE_ARCH_REL=${SITE_ARCH_REL} LIBPERL=libperl.so.${PERL_VER} # Define the want perl first if defined .if ${USE_PERL5:M5*} want_perl_sign= ${USE_PERL5:M5*:C|^[0-9.]+||} want_perl_ver= ${USE_PERL5:M5*:S|${want_perl_sign}$||} want_perl_major= ${want_perl_ver:C|\..*||} _want_perl_minor= ${want_perl_ver:S|^${want_perl_major}||:S|^.||:C|\..*||} _want_perl_patch= ${want_perl_ver:S|^${want_perl_major}||:S|^.${_want_perl_minor}||:S|^.||:C|\..*||} want_perl_minor= ${_want_perl_minor:S|^|000|:C|.*(...)|\1|} want_perl_patch= ${_want_perl_patch:S|^|00|:C|.*(..)|\1|} USE_PERL5_LEVEL= ${want_perl_major}${want_perl_minor}${want_perl_patch} .endif # All but version _USE_PERL5= ${USE_PERL5:N5*} # Mask unspecified components. E.g. this way "5" will match any "5.x.x". .if empty(_want_perl_minor) masked_PERL_LEVEL= ${PERL_LEVEL:C|(.....)$|00000|} .elif empty(_want_perl_patch) masked_PERL_LEVEL= ${PERL_LEVEL:C|(..)$|00|} .else masked_PERL_LEVEL= ${PERL_LEVEL} .endif .if defined(want_perl_sign) .if ${want_perl_sign} == "+" .if ${USE_PERL5_LEVEL} > ${masked_PERL_LEVEL} USE_PERL5_REASON?= requires Perl ${want_perl_ver} or later, install lang/perl${want_perl_major}.${want_perl_minor:C|^0||} and try again IGNORE= ${USE_PERL5_REASON} .endif # ${USE_PERL5_LEVEL} > ${masked_PERL_LEVEL} .elif ${want_perl_sign} == "" .if ${USE_PERL5_LEVEL} != ${masked_PERL_LEVEL} USE_PERL5_REASON?= requires Perl ${want_perl_ver} exactly IGNORE= ${USE_PERL5_REASON} .endif # ${USE_PERL5_LEVEL} != ${masked_PERL_LEVEL} .elif ${want_perl_sign} == "-" .if ${USE_PERL5_LEVEL} <= ${masked_PERL_LEVEL} USE_PERL5_REASON?= requires a Perl version earlier than ${want_perl_ver} IGNORE= ${USE_PERL5_REASON} .endif # ${USE_PERL5_LEVEL} <= ${masked_PERL_LEVEL} .else # wrong suffix IGNORE= improper use of USE_PERL5 .endif .endif _USES_POST+= perl5 .endif .if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_PERL5_POST_MK) _INCLUDE_USES_PERL5_POST_MK= yes PLIST_SUB+= PERL_VERSION=${PERL_VERSION} \ PERL_VER=${PERL_VER} \ PERL5_MAN1=${SITE_MAN1_REL} \ PERL5_MAN3=${SITE_MAN3_REL} \ SITE_PERL=${SITE_PERL_REL} \ SITE_ARCH=${SITE_ARCH_REL} # handle perl5 specific manpages .for sect in 3 .if defined(P5MAN${sect}) _MANPAGES+= ${P5MAN${sect}:S%^%${PREFIX}/lib/perl5/${PERL_VER}/man/man${sect}/%} .endif .endfor MANDIRS+= ${PREFIX}/${SITE_PERL_REL}/man .if ${_USE_PERL5:Mmodbuild} || ${_USE_PERL5:Mmodbuildtiny} _USE_PERL5+= configure ALL_TARGET?= # empty CONFIGURE_ARGS+=--install_path lib="${PREFIX}/${SITE_PERL_REL}" \ --install_path arch="${PREFIX}/${SITE_ARCH_REL}" \ --install_path script="${PREFIX}/bin" \ --install_path bin="${PREFIX}/bin" \ --install_path libdoc="${MAN3PREFIX}/man/man3" \ --install_path bindoc="${MAN1PREFIX}/man/man1" CONFIGURE_SCRIPT?= Build.PL PL_BUILD?= Build CONFIGURE_ARGS+=--destdir ${STAGEDIR} DESTDIRNAME= --destdir .if ${_USE_PERL5:Mmodbuild} .if ${PORTNAME} != Module-Build BUILD_DEPENDS+= p5-Module-Build>=0.4206:devel/p5-Module-Build .endif CONFIGURE_ARGS+=--create_packlist 1 .endif .if ${_USE_PERL5:Mmodbuildtiny} .if ${PORTNAME} != Module-Build-Tiny BUILD_DEPENDS+= p5-Module-Build-Tiny>=0.039:devel/p5-Module-Build-Tiny .endif CONFIGURE_ARGS+=--create_packlist 1 .endif .elif ${_USE_PERL5:Mconfigure} CONFIGURE_ARGS+=INSTALLDIRS="site" .endif # modbuild .if ${_USE_PERL5:Mconfigure} _USE_PERL5+= build run # Disable AutoInstall from attempting to install from CPAN directly in # the case of missing dependencies. This causes the build to loop on # the build cluster asking for interactive input. CONFIGURE_ENV+= PERL_EXTUTILS_AUTOINSTALL="--skipdeps" .if defined(BATCH) && !defined(IS_INTERACTIVE) CONFIGURE_ENV+= PERL_MM_USE_DEFAULT="YES" .endif # defined(BATCH) && !defined(IS_INTERACTIVE) .endif # configure .if ${_USE_PERL5:Mextract} EXTRACT_DEPENDS+= ${PERL5_DEPEND}:lang/${PERL_PORT} .endif .if ${_USE_PERL5:Mpatch} PATCH_DEPENDS+= ${PERL5_DEPEND}:lang/${PERL_PORT} .endif .if ${_USE_PERL5:Mbuild} BUILD_DEPENDS+= ${PERL5_DEPEND}:lang/${PERL_PORT} .endif .if ${_USE_PERL5:Mrun} RUN_DEPENDS+= ${PERL5_DEPEND}:lang/${PERL_PORT} .endif .if ${_USE_PERL5:Mconfigure} CONFIGURE_ARGS+= CC="${CC}" CCFLAGS="${CFLAGS}" PREFIX="${PREFIX}" \ INSTALLPRIVLIB="${PREFIX}/lib" INSTALLARCHLIB="${PREFIX}/lib" CONFIGURE_SCRIPT?= Makefile.PL MAN3PREFIX?= ${PREFIX}/${SITE_PERL_REL} .if !defined(THIS_IS_OLD_PERL) MAN1PREFIX?= ${PREFIX}/${SITE_PERL_REL} .endif .undef HAS_CONFIGURE .if !target(do-configure) do-configure: @if [ -f ${SCRIPTDIR}/configure ]; then \ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ ${SCRIPTDIR}/configure; \ fi @cd ${CONFIGURE_WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} \ ${PERL5} ${CONFIGURE_CMD} ${CONFIGURE_ARGS} .if !${_USE_PERL5:Mmodbuild*} @cd ${CONFIGURE_WRKSRC} && \ ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile .endif # ! modbuild .endif # !target(do-configure) .endif # configure .if ${_USE_PERL5:Mmodbuild*} .if !target(do-build) do-build: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${ALL_TARGET} ${MAKE_ARGS}) .endif # !target(do-build) .if !${USES:Mgmake} .if !target(do-install) do-install: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${INSTALL_TARGET} ${MAKE_ARGS}) .endif # !target(do-install) .endif # ! USES=gmake .endif # modbuild PACKLIST_DIR?= ${PREFIX}/${SITE_ARCH_REL}/auto # In all those, don't use - before the command so that the user does # not wonder what has been ignored by this message "*** Error code 1 (ignored)" _USES_install+= 560:fix-perl-things fix-perl-things: # Remove STAGEDIR from .packlist and add the file to the plist. @(if [ -d ${STAGEDIR}${PACKLIST_DIR} ] ; then \ ${FIND} ${STAGEDIR}${PACKLIST_DIR} -name .packlist | while read f ; do \ ${SED} -i '' 's|^${STAGEDIR}||' "$$f"; \ ${ECHO} $$f | ${SED} -e 's|^${STAGEDIR}||' >> ${TMPPLIST}; \ done \ fi) || : # Starting with perl 5.20, the empty bootstrap files are not installed any more # by ExtUtils::MakeMaker. As we don't need them anyway, remove them. # Module::Build continues to install them, so remove the files unconditionally. @${FIND} ${STAGEDIR} -name '*.bs' -size 0 -delete || : # Some ports use their own way of building perl modules and generate # perllocal.pod, remove it here so that those ports don't include it # by mistake in their plists. It is sometime compressed, so use a # shell glob for the removal. Also, remove the directories that # contain it to not leave orphans directories around. @${RM} -f ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod* || : @${RMDIR} -p ${STAGEDIR}${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH} 2>/dev/null || : +# Starting at ExtUtils::MakeMaker 7.06 and Perl 5.25.1, the base README.pod is +# no longer manified into a README.3, as the README.pod is installed and can be +# read with perldoc, remove the README.3 files that may be generated. + @[ -d "${STAGEDIR}${SITE_MAN3}" ] && \ + ${FIND} ${STAGEDIR}${SITE_MAN3} -name '*::README.3' -delete || : .if !target(do-test) && (!empty(USE_PERL5:Mmodbuild*) || !empty(USE_PERL5:Mconfigure)) TEST_TARGET?= test TEST_WRKSRC?= ${BUILD_WRKSRC} do-test: .if ${USE_PERL5:Mmodbuild*} cd ${TEST_WRKSRC}/ && ${SETENV} ${TEST_ENV} ${PERL5} ${PL_BUILD} ${TEST_TARGET} ${TEST_ARGS} .elif ${USE_PERL5:Mconfigure} cd ${TEST_WRKSRC}/ && ${SETENV} ${TEST_ENV} ${MAKE_CMD} ${TEST_ARGS} ${TEST_TARGET} .endif # USE_PERL5:Mmodbuild* .endif # do-test .endif # defined(_POSTMKINCLUDED) Index: head/databases/p5-DBD-mysql/Makefile =================================================================== --- head/databases/p5-DBD-mysql/Makefile (revision 416156) +++ head/databases/p5-DBD-mysql/Makefile (revision 416157) @@ -1,34 +1,35 @@ # Created by: Sergey Skvortsov # $FreeBSD$ PORTNAME= DBD-mysql PORTVERSION= 4.033 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT?= MySQL driver for the Perl5 Database Interface (DBI) LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-DBI>=1.08:databases/p5-DBI RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep CONFLICTS_INSTALL?= p5-DBD-mysql[45][0-9]-[0-9]* USE_MYSQL= yes USE_PERL5= configure USES= perl5 OPTIONS_DEFINE= SSL SSL_BUILD_DEPENDS= p5-Crypt-SSLeay>=0:security/p5-Crypt-SSLeay SSL_RUN_DEPENDS= ${SSL_BUILD_DEPENDS} SSL_CONFIGURE_ON= --ssl post-stage: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/DBD/mysql/mysql.so .include Index: head/databases/p5-DBD-mysql/pkg-plist =================================================================== --- head/databases/p5-DBD-mysql/pkg-plist (revision 416156) +++ head/databases/p5-DBD-mysql/pkg-plist (revision 416157) @@ -1,10 +1,9 @@ %%SITE_ARCH%%/Bundle/DBD/mysql.pm %%SITE_ARCH%%/DBD/README.pod %%SITE_ARCH%%/DBD/mysql.pm %%SITE_ARCH%%/DBD/mysql/GetInfo.pm %%SITE_ARCH%%/DBD/mysql/INSTALL.pod %%SITE_ARCH%%/auto/DBD/mysql/mysql.so %%PERL5_MAN3%%/Bundle::DBD::mysql.3.gz -%%PERL5_MAN3%%/DBD::README.3.gz %%PERL5_MAN3%%/DBD::mysql.3.gz %%PERL5_MAN3%%/DBD::mysql::INSTALL.3.gz Index: head/databases/p5-RedisDB-Parser/Makefile =================================================================== --- head/databases/p5-RedisDB-Parser/Makefile (revision 416156) +++ head/databases/p5-RedisDB-Parser/Makefile (revision 416157) @@ -1,22 +1,23 @@ # $FreeBSD$ PORTNAME= RedisDB-Parser PORTVERSION= 2.21 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for Redis protocol parser LICENSE= ART10 GPLv1 LICENSE_COMB= dual RUN_DEPENDS= \ p5-Try-Tiny>0:lang/p5-Try-Tiny BUILD_DEPENDS= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/databases/p5-RedisDB-Parser/pkg-plist =================================================================== --- head/databases/p5-RedisDB-Parser/pkg-plist (revision 416156) +++ head/databases/p5-RedisDB-Parser/pkg-plist (revision 416157) @@ -1,11 +1,10 @@ %%PERL5_MAN3%%/RedisDB::Parser.3.gz %%PERL5_MAN3%%/RedisDB::Parser::Error.3.gz %%PERL5_MAN3%%/RedisDB::Parser::PP.3.gz %%PERL5_MAN3%%/RedisDB::Parser::XS.3.gz -%%PERL5_MAN3%%/RedisDB::README.3.gz %%SITE_ARCH%%/auto/RedisDB/Parser/Parser.so %%SITE_ARCH%%/RedisDB/Parser.pm %%SITE_ARCH%%/RedisDB/Parser/Error.pm %%SITE_ARCH%%/RedisDB/Parser/PP.pm %%SITE_ARCH%%/RedisDB/Parser/XS.pm %%SITE_ARCH%%/RedisDB/README.pod Property changes on: head/databases/p5-RedisDB-Parser/pkg-plist ___________________________________________________________________ Modified: fbsd:nokeywords ## -1 +1 ## -on \ No newline at end of property +yes \ No newline at end of property Index: head/devel/p5-App-CLI-Extension/Makefile =================================================================== --- head/devel/p5-App-CLI-Extension/Makefile (revision 416156) +++ head/devel/p5-App-CLI-Extension/Makefile (revision 416157) @@ -1,26 +1,26 @@ # Created by: Wen Heping # $FreeBSD$ PORTNAME= App-CLI-Extension PORTVERSION= 1.42.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:HOLLY PKGNAMEPREFIX= p5- DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} MAINTAINER= perl@FreeBSD.org COMMENT= Extension for App::CLI extension module BUILD_DEPENDS= p5-App-CLI>=0.313:devel/p5-App-CLI \ p5-Class-Accessor-Grouped>=0.10000:devel/p5-Class-Accessor-Grouped \ p5-Error>=0.17000:lang/p5-Error \ p5-MRO-Compat>=0.11:devel/p5-MRO-Compat \ p5-UNIVERSAL-require>=0.13:devel/p5-UNIVERSAL-require RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-App-CLI-Extension/pkg-plist =================================================================== --- head/devel/p5-App-CLI-Extension/pkg-plist (revision 416156) +++ head/devel/p5-App-CLI-Extension/pkg-plist (revision 416157) @@ -1,18 +1,17 @@ %%PERL5_MAN3%%/App::CLI::Extension.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Component::Config.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Component::ErrorHandler.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Component::InstallCallback.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Component::OriginalArgv.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Component::RunCommand.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Component::Stash.3.gz %%PERL5_MAN3%%/App::CLI::Extension::Exception.3.gz -%%PERL5_MAN3%%/App::CLI::README.3.gz %%SITE_PERL%%/App/CLI/Extension.pm %%SITE_PERL%%/App/CLI/Extension/Component/Config.pm %%SITE_PERL%%/App/CLI/Extension/Component/ErrorHandler.pm %%SITE_PERL%%/App/CLI/Extension/Component/InstallCallback.pm %%SITE_PERL%%/App/CLI/Extension/Component/OriginalArgv.pm %%SITE_PERL%%/App/CLI/Extension/Component/RunCommand.pm %%SITE_PERL%%/App/CLI/Extension/Component/Stash.pm %%SITE_PERL%%/App/CLI/Extension/Exception.pm %%SITE_PERL%%/App/CLI/README.pod Index: head/devel/p5-Data-Page-NoTotalEntries/Makefile =================================================================== --- head/devel/p5-Data-Page-NoTotalEntries/Makefile (revision 416156) +++ head/devel/p5-Data-Page-NoTotalEntries/Makefile (revision 416157) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= Data-Page-NoTotalEntries PORTVERSION= 0.02 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:TOKUHIROM PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for paging results without total entries RUN_DEPENDS= \ p5-Class-Accessor-Lite>=0.05:devel/p5-Class-Accessor-Lite BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Simple>=0.96:devel/p5-Test-Simple USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-Data-Page-NoTotalEntries/pkg-plist =================================================================== --- head/devel/p5-Data-Page-NoTotalEntries/pkg-plist (revision 416156) +++ head/devel/p5-Data-Page-NoTotalEntries/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Data/Page/NoTotalEntries.pm %%SITE_PERL%%/Data/Page/README.pod %%PERL5_MAN3%%/Data::Page::NoTotalEntries.3.gz -%%PERL5_MAN3%%/Data::Page::README.3.gz Index: head/devel/p5-Devel-KYTProf/Makefile =================================================================== --- head/devel/p5-Devel-KYTProf/Makefile (revision 416156) +++ head/devel/p5-Devel-KYTProf/Makefile (revision 416157) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= Devel-KYTProf PORTVERSION= 0.05 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for simple profiler BUILD_DEPENDS= p5-Class-Data-Inheritable>0:devel/p5-Class-Data-Inheritable \ p5-UNIVERSAL-require>0:devel/p5-UNIVERSAL-require RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBI>0:databases/p5-DBI \ p5-DBD-SQLite>0:databases/p5-DBD-SQLite USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-Devel-KYTProf/pkg-plist =================================================================== --- head/devel/p5-Devel-KYTProf/pkg-plist (revision 416156) +++ head/devel/p5-Devel-KYTProf/pkg-plist (revision 416157) @@ -1,7 +1,6 @@ %%SITE_PERL%%/Devel/KYTProf.pm %%SITE_PERL%%/Devel/KYTProf/Logger/LTSV.pm %%SITE_PERL%%/Devel/KYTProf/Logger/LTSV.pod %%SITE_PERL%%/Devel/README.pod %%PERL5_MAN3%%/Devel::KYTProf.3.gz %%PERL5_MAN3%%/Devel::KYTProf::Logger::LTSV.3.gz -%%PERL5_MAN3%%/Devel::README.3.gz Index: head/devel/p5-JIRA-REST/Makefile =================================================================== --- head/devel/p5-JIRA-REST/Makefile (revision 416156) +++ head/devel/p5-JIRA-REST/Makefile (revision 416157) @@ -1,32 +1,32 @@ # Created by: Brad Davis # $FreeBSD$ PORTNAME= JIRA-REST PORTVERSION= 0.012 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extended interface to JIRA REST API LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-HTML-TreeBuilder-LibXML>=0:www/p5-HTML-TreeBuilder-LibXML \ p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-JSON>=0:converters/p5-JSON \ p5-REST-Client>=0:www/p5-REST-Client \ p5-URI>=0:net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure NO_ARCH= yes PLIST_FILES= %%SITE_PERL%%/JIRA/README.pod \ %%SITE_PERL%%/JIRA/REST.pm \ - %%PERL5_MAN3%%/JIRA::README.3.gz \ %%PERL5_MAN3%%/JIRA::REST.3.gz .include Index: head/devel/p5-Log-Defer/Makefile =================================================================== --- head/devel/p5-Log-Defer/Makefile (revision 416156) +++ head/devel/p5-Log-Defer/Makefile (revision 416157) @@ -1,24 +1,24 @@ # $FreeBSD$ PORTNAME= Log-Defer PORTVERSION= 0.311 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= bill.brinzer@gmail.com COMMENT= Deferred logs and timers LICENSE= ART10 GPLv1 LICENSE_COMB= dual RUN_DEPENDS= p5-Guard>=0:devel/p5-Guard BUILD_DEPENDS:= ${RUN_DEPENDS} NO_ARCH= yes USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-Log-Defer/pkg-plist =================================================================== --- head/devel/p5-Log-Defer/pkg-plist (revision 416156) +++ head/devel/p5-Log-Defer/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%PERL5_MAN3%%/Log::Defer.3.gz -%%PERL5_MAN3%%/Log::README.3.gz %%SITE_PERL%%/Log/Defer.pm %%SITE_PERL%%/Log/README.pod Index: head/devel/p5-Module-Collect/Makefile =================================================================== --- head/devel/p5-Module-Collect/Makefile (revision 416156) +++ head/devel/p5-Module-Collect/Makefile (revision 416157) @@ -1,20 +1,20 @@ # $FreeBSD$ PORTNAME= Module-Collect PORTVERSION= 0.06 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to collect module files from some directories RUN_DEPENDS= \ p5-File-Find-Rule>0:devel/p5-File-Find-Rule BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-Module-Collect/pkg-plist =================================================================== --- head/devel/p5-Module-Collect/pkg-plist (revision 416156) +++ head/devel/p5-Module-Collect/pkg-plist (revision 416157) @@ -1,6 +1,5 @@ %%SITE_PERL%%/Module/Collect/Package.pm %%SITE_PERL%%/Module/Collect.pm %%SITE_PERL%%/Module/README.pod %%PERL5_MAN3%%/Module::Collect.3.gz -%%PERL5_MAN3%%/Module::README.3.gz %%PERL5_MAN3%%/Module::Collect::Package.3.gz Index: head/devel/p5-MouseX-AttributeHelpers/Makefile =================================================================== --- head/devel/p5-MouseX-AttributeHelpers/Makefile (revision 416156) +++ head/devel/p5-MouseX-AttributeHelpers/Makefile (revision 416157) @@ -1,25 +1,25 @@ # $FreeBSD$ PORTNAME= MouseX-AttributeHelpers PORTVERSION= 0.07 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MASAKI PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to extend your attribute interfaces RUN_DEPENDS= \ p5-Mouse>=0.40:devel/p5-Mouse BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Any-Moose>=0:devel/p5-Any-Moose \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-UseAllModules>=0:devel/p5-Test-UseAllModules \ p5-Test-Data>=0:devel/p5-Test-Data USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-MouseX-AttributeHelpers/pkg-plist =================================================================== --- head/devel/p5-MouseX-AttributeHelpers/pkg-plist (revision 416156) +++ head/devel/p5-MouseX-AttributeHelpers/pkg-plist (revision 416157) @@ -1,24 +1,23 @@ %%SITE_PERL%%/MouseX/AttributeHelpers.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Base.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Bool.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Collection/Array.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Collection/Bag.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Collection/Hash.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Collection/ImmutableHash.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Collection/List.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Counter.pm %%SITE_PERL%%/MouseX/AttributeHelpers/Number.pm %%SITE_PERL%%/MouseX/AttributeHelpers/String.pm %%SITE_PERL%%/MouseX/README.pod %%PERL5_MAN3%%/MouseX::AttributeHelpers.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Base.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Bool.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Collection::Array.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Collection::Bag.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Collection::Hash.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Collection::ImmutableHash.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Collection::List.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Counter.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::Number.3.gz %%PERL5_MAN3%%/MouseX::AttributeHelpers::String.3.gz -%%PERL5_MAN3%%/MouseX::README.3.gz Index: head/devel/p5-PerlIO-via-Timeout/Makefile =================================================================== --- head/devel/p5-PerlIO-via-Timeout/Makefile (revision 416156) +++ head/devel/p5-PerlIO-via-Timeout/Makefile (revision 416157) @@ -1,20 +1,21 @@ # $FreeBSD$ PORTNAME= PerlIO-via-Timeout PORTVERSION= 0.32 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= pi@FreeBSD.org COMMENT= PerlIO layer to add read and write timeouts to a handle LICENSE= ART10 GPLv1 LICENSE_COMB= dual NO_ARCH= yes USE_PERL5= configure USES= perl5 .include Index: head/devel/p5-PerlIO-via-Timeout/pkg-plist =================================================================== --- head/devel/p5-PerlIO-via-Timeout/pkg-plist (revision 416156) +++ head/devel/p5-PerlIO-via-Timeout/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/PerlIO/via/README.pod %%SITE_PERL%%/PerlIO/via/Timeout.pm -%%PERL5_MAN3%%/PerlIO::via::README.3.gz %%PERL5_MAN3%%/PerlIO::via::Timeout.3.gz Index: head/devel/p5-SVN-Hooks/Makefile =================================================================== --- head/devel/p5-SVN-Hooks/Makefile (revision 416156) +++ head/devel/p5-SVN-Hooks/Makefile (revision 416157) @@ -1,29 +1,30 @@ # Created by: Greg Larkin # $FreeBSD$ PORTNAME= SVN-Hooks PORTVERSION= 1.31 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= bofh@FreeBSD.org COMMENT= Framework for implementing Subversion hooks LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-Data-Util>=0:devel/p5-Data-Util \ p5-SVN-Look>=0:devel/p5-SVN-Look \ p5-SVN-Notify>=0:devel/p5-SVN-Notify \ p5-JIRA-Client>=0:devel/p5-JIRA-Client \ p5-XMLRPC-Lite>0:net/p5-XMLRPC-Lite \ subversion>=1.4.0:devel/subversion RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-URI>=0:net/p5-URI USES= perl5 USE_PERL5= configure NO_ARCH= yes .include Index: head/devel/p5-SVN-Hooks/pkg-plist =================================================================== --- head/devel/p5-SVN-Hooks/pkg-plist (revision 416156) +++ head/devel/p5-SVN-Hooks/pkg-plist (revision 416157) @@ -1,34 +1,33 @@ %%SITE_PERL%%/SVN/Hooks.pm %%SITE_PERL%%/SVN/Hooks/AllowLogChange.pm %%SITE_PERL%%/SVN/Hooks/AllowPropChange.pm %%SITE_PERL%%/SVN/Hooks/CheckCapability.pm %%SITE_PERL%%/SVN/Hooks/CheckJira.pm %%SITE_PERL%%/SVN/Hooks/CheckLog.pm %%SITE_PERL%%/SVN/Hooks/CheckMimeTypes.pm %%SITE_PERL%%/SVN/Hooks/CheckProperty.pm %%SITE_PERL%%/SVN/Hooks/CheckStructure.pm %%SITE_PERL%%/SVN/Hooks/DenyChanges.pm %%SITE_PERL%%/SVN/Hooks/DenyFilenames.pm %%SITE_PERL%%/SVN/Hooks/Generic.pm %%SITE_PERL%%/SVN/Hooks/JiraAcceptance.pm %%SITE_PERL%%/SVN/Hooks/Mailer.pm %%SITE_PERL%%/SVN/Hooks/Notify.pm %%SITE_PERL%%/SVN/Hooks/UpdateConfFile.pm %%SITE_PERL%%/SVN/README.pod %%PERL5_MAN3%%/SVN::Hooks.3.gz %%PERL5_MAN3%%/SVN::Hooks::AllowLogChange.3.gz %%PERL5_MAN3%%/SVN::Hooks::AllowPropChange.3.gz %%PERL5_MAN3%%/SVN::Hooks::CheckCapability.3.gz %%PERL5_MAN3%%/SVN::Hooks::CheckJira.3.gz %%PERL5_MAN3%%/SVN::Hooks::CheckLog.3.gz %%PERL5_MAN3%%/SVN::Hooks::CheckMimeTypes.3.gz %%PERL5_MAN3%%/SVN::Hooks::CheckProperty.3.gz %%PERL5_MAN3%%/SVN::Hooks::CheckStructure.3.gz %%PERL5_MAN3%%/SVN::Hooks::DenyChanges.3.gz %%PERL5_MAN3%%/SVN::Hooks::DenyFilenames.3.gz %%PERL5_MAN3%%/SVN::Hooks::Generic.3.gz %%PERL5_MAN3%%/SVN::Hooks::JiraAcceptance.3.gz %%PERL5_MAN3%%/SVN::Hooks::Mailer.3.gz %%PERL5_MAN3%%/SVN::Hooks::Notify.3.gz %%PERL5_MAN3%%/SVN::Hooks::UpdateConfFile.3.gz -%%PERL5_MAN3%%/SVN::README.3.gz Index: head/devel/p5-Sys-Syscall/Makefile =================================================================== --- head/devel/p5-Sys-Syscall/Makefile (revision 416156) +++ head/devel/p5-Sys-Syscall/Makefile (revision 416157) @@ -1,20 +1,20 @@ # Created by: Gea-Suan Lin # $FreeBSD$ PORTNAME= Sys-Syscall PORTVERSION= 0.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Access system calls that Perl doesn't provide access to USES= perl5 USE_PERL5= configure post-patch: @${RM} ${WRKSRC}/lib/Sys/Syscall.pm.orig .include Index: head/devel/p5-Sys-Syscall/pkg-plist =================================================================== --- head/devel/p5-Sys-Syscall/pkg-plist (revision 416156) +++ head/devel/p5-Sys-Syscall/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ -%%PERL5_MAN3%%/Sys::README.3.gz %%PERL5_MAN3%%/Sys::Syscall.3.gz %%SITE_PERL%%/Sys/README.pod %%SITE_PERL%%/Sys/Syscall.pm Index: head/devel/p5-Test-Fake-HTTPD/Makefile =================================================================== --- head/devel/p5-Test-Fake-HTTPD/Makefile (revision 416156) +++ head/devel/p5-Test-Fake-HTTPD/Makefile (revision 416157) @@ -1,35 +1,36 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= Test-Fake-HTTPD PORTVERSION= 0.07 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fake HTTP server LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-HTTP-Daemon>=0:www/p5-HTTP-Daemon \ p5-Plack>=0:www/p5-Plack \ p5-Test-SharedFork>=0.29:devel/p5-Test-SharedFork \ p5-Test-TCP>=0:devel/p5-Test-TCP \ p5-URI>=0:net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-TCP>=0:devel/p5-Test-TCP \ p5-Test-UseAllModules>=0:devel/p5-Test-UseAllModules \ p5-libwww>=0:www/p5-libwww OPTIONS_DEFINE= SSL USE_PERL5= configure USES= perl5 SSL_BUILD_DEPENDS= p5-HTTP-Daemon-SSL>=0:www/p5-HTTP-Daemon-SSL SSL_RUN_DEPENDS= p5-HTTP-Daemon-SSL>=0:www/p5-HTTP-Daemon-SSL .include Index: head/devel/p5-Test-Fake-HTTPD/pkg-plist =================================================================== --- head/devel/p5-Test-Fake-HTTPD/pkg-plist (revision 416156) +++ head/devel/p5-Test-Fake-HTTPD/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Test/Fake/HTTPD.pm %%SITE_PERL%%/Test/Fake/README.pod %%PERL5_MAN3%%/Test::Fake::HTTPD.3.gz -%%PERL5_MAN3%%/Test::Fake::README.3.gz Index: head/devel/p5-Test-Mini/Makefile =================================================================== --- head/devel/p5-Test-Mini/Makefile (revision 416156) +++ head/devel/p5-Test-Mini/Makefile (revision 416157) @@ -1,28 +1,28 @@ # Created by: Kurt Lidl # $FreeBSD$ PORTNAME= Test-Mini PORTVERSION= v1.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PVANDE PKGNAMEPREFIX= p5- MAINTAINER= kurt.lidl@cello.com COMMENT= Provides lightweight unit testing framework BUILD_DEPENDS= p5-Data-Inspect>=0.03:devel/p5-Data-Inspect \ p5-Exception-Class>=1.30:devel/p5-Exception-Class \ p5-IO-stringy>=2.110:devel/p5-IO-stringy \ p5-MRO-Compat>=0.10:devel/p5-MRO-Compat \ p5-Text-Outdent>=0.01:devel/p5-Text-Outdent \ p5-Try-Tiny>=0.04:lang/p5-Try-Tiny \ p5-aliased>=0.30:devel/p5-aliased \ p5-namespace-clean>=0.14:devel/p5-namespace-clean RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-Test-Mini/pkg-plist =================================================================== --- head/devel/p5-Test-Mini/pkg-plist (revision 416156) +++ head/devel/p5-Test-Mini/pkg-plist (revision 416157) @@ -1,20 +1,19 @@ %%SITE_PERL%%/Test/Mini.pm %%SITE_PERL%%/Test/Mini.pod %%SITE_PERL%%/Test/Mini/Assertions.pm %%SITE_PERL%%/Test/Mini/Assertions.pod %%SITE_PERL%%/Test/Mini/Logger.pm %%SITE_PERL%%/Test/Mini/Logger.pod %%SITE_PERL%%/Test/Mini/Logger/TAP.pm %%SITE_PERL%%/Test/Mini/Logger/TAP.pod %%SITE_PERL%%/Test/Mini/Runner.pm %%SITE_PERL%%/Test/Mini/Runner.pod %%SITE_PERL%%/Test/Mini/TestCase.pm %%SITE_PERL%%/Test/Mini/TestCase.pod %%SITE_PERL%%/Test/README.pod %%PERL5_MAN3%%/Test::Mini.3.gz %%PERL5_MAN3%%/Test::Mini::Assertions.3.gz %%PERL5_MAN3%%/Test::Mini::Logger.3.gz %%PERL5_MAN3%%/Test::Mini::Logger::TAP.3.gz %%PERL5_MAN3%%/Test::Mini::Runner.3.gz %%PERL5_MAN3%%/Test::Mini::TestCase.3.gz -%%PERL5_MAN3%%/Test::README.3.gz Index: head/devel/p5-Test-Mini-Unit/Makefile =================================================================== --- head/devel/p5-Test-Mini-Unit/Makefile (revision 416156) +++ head/devel/p5-Test-Mini-Unit/Makefile (revision 416157) @@ -1,21 +1,21 @@ # Created by: Kurt Lidl # $FreeBSD$ PORTNAME= Test-Mini-Unit PORTVERSION= v1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PVANDE PKGNAMEPREFIX= p5- MAINTAINER= kurt.lidl@cello.com COMMENT= Declarative syntactic sugar for Test::Mini BUILD_DEPENDS= p5-Devel-Declare>=0.6.0:devel/p5-Devel-Declare \ p5-Test-Mini>=v1.1.3:devel/p5-Test-Mini USES= perl5 USE_PERL5= configure .include Index: head/devel/p5-Test-Mini-Unit/pkg-plist =================================================================== --- head/devel/p5-Test-Mini-Unit/pkg-plist (revision 416156) +++ head/devel/p5-Test-Mini-Unit/pkg-plist (revision 416157) @@ -1,11 +1,10 @@ %%SITE_PERL%%/Test/Mini/README.pod %%SITE_PERL%%/Test/Mini/Unit.pm %%SITE_PERL%%/Test/Mini/Unit.pod %%SITE_PERL%%/Test/Mini/Unit/SharedBehavior.pm %%SITE_PERL%%/Test/Mini/Unit/Sugar/Advice.pm %%SITE_PERL%%/Test/Mini/Unit/Sugar/Reuse.pm %%SITE_PERL%%/Test/Mini/Unit/Sugar/Shared.pm %%SITE_PERL%%/Test/Mini/Unit/Sugar/Test.pm %%SITE_PERL%%/Test/Mini/Unit/Sugar/TestCase.pm -%%PERL5_MAN3%%/Test::Mini::README.3.gz %%PERL5_MAN3%%/Test::Mini::Unit.3.gz Index: head/devel/p5-Test-MockObject/Makefile =================================================================== --- head/devel/p5-Test-MockObject/Makefile (revision 416156) +++ head/devel/p5-Test-MockObject/Makefile (revision 416157) @@ -1,27 +1,28 @@ # $FreeBSD$ PORTNAME= Test-MockObject PORTVERSION= 1.20150527 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Tests remote URLs or local web files LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-UNIVERSAL-can>=1.20110617:devel/p5-UNIVERSAL-can \ p5-UNIVERSAL-isa>=1.20110614:devel/p5-UNIVERSAL-isa RUN_DEPENDS= p5-UNIVERSAL-can>=1.20110617:devel/p5-UNIVERSAL-can \ p5-UNIVERSAL-isa>=1.20110614:devel/p5-UNIVERSAL-isa TEST_DEPENDS= p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Test-Warn>=0.23:devel/p5-Test-Warn USES= perl5 USE_PERL5= configure INSTALL_TARGET= pure_install NO_ARCH= YES .include Index: head/devel/p5-Test-MockObject/pkg-plist =================================================================== --- head/devel/p5-Test-MockObject/pkg-plist (revision 416156) +++ head/devel/p5-Test-MockObject/pkg-plist (revision 416157) @@ -1,6 +1,5 @@ %%PERL5_MAN3%%/Test::MockObject.3.gz %%PERL5_MAN3%%/Test::MockObject::Extends.3.gz -%%PERL5_MAN3%%/Test::README.3.gz %%SITE_PERL%%/Test/MockObject.pm %%SITE_PERL%%/Test/MockObject/Extends.pm %%SITE_PERL%%/Test/README.pod Index: head/finance/p5-Business-Stripe/Makefile =================================================================== --- head/finance/p5-Business-Stripe/Makefile (revision 416156) +++ head/finance/p5-Business-Stripe/Makefile (revision 416157) @@ -1,25 +1,26 @@ # Created by: Vick Khera # $FreeBSD$ PORTNAME= Business-Stripe PORTVERSION= 0.05 +PORTREVISION= 1 CATEGORIES= finance perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module interface for the Stripe.com payment system RUN_DEPENDS= p5-HTTP-Message>=0.0:www/p5-HTTP-Message \ p5-JSON>=0.0:converters/p5-JSON \ p5-libwww>0.0:www/p5-libwww \ p5-MIME-Base64>=0.0:converters/p5-MIME-Base64 LICENSE= ART10 GPLv1 LICENSE_COMB= dual USES= perl5 USE_PERL5= configure NO_ARCH= yes .include Index: head/finance/p5-Business-Stripe/pkg-plist =================================================================== --- head/finance/p5-Business-Stripe/pkg-plist (revision 416156) +++ head/finance/p5-Business-Stripe/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Business/README.pod %%SITE_PERL%%/Business/Stripe.pm %%PERL5_MAN3%%/Business::Stripe.3.gz -%%PERL5_MAN3%%/Business::README.3.gz Index: head/graphics/p5-Data-Google-Visualization-DataSource/Makefile =================================================================== --- head/graphics/p5-Data-Google-Visualization-DataSource/Makefile (revision 416156) +++ head/graphics/p5-Data-Google-Visualization-DataSource/Makefile (revision 416157) @@ -1,24 +1,25 @@ # $FreeBSD$ PORTNAME= Data-Google-Visualization-DataSource PORTVERSION= 0.01 +PORTREVISION= 1 CATEGORIES= graphics perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= jeremybbaggs@gmail.com COMMENT= Perl helper class for the Google Chart Tools Datasource Protocol LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-Clone>=0:devel/p5-Clone \ p5-Data-Google-Visualization-DataTable>=0:graphics/p5-Data-Google-Visualization-DataTable \ p5-JSON-XS>=2.0:converters/p5-JSON-XS \ p5-Moose>=0:devel/p5-Moose RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist =================================================================== --- head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist (revision 416156) +++ head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Data/Google/Visualization/DataSource.pm %%SITE_PERL%%/Data/Google/Visualization/README.pod %%PERL5_MAN3%%/Data::Google::Visualization::DataSource.3.gz -%%PERL5_MAN3%%/Data::Google::Visualization::README.3.gz Property changes on: head/graphics/p5-Data-Google-Visualization-DataSource/pkg-plist ___________________________________________________________________ Modified: fbsd:nokeywords ## -1 +1 ## -on \ No newline at end of property +yes \ No newline at end of property Index: head/net/p5-XML-RPC-Fast/Makefile =================================================================== --- head/net/p5-XML-RPC-Fast/Makefile (revision 416156) +++ head/net/p5-XML-RPC-Fast/Makefile (revision 416157) @@ -1,26 +1,26 @@ # Created by: gugu # $FreeBSD$ PORTNAME= XML-RPC-Fast PORTVERSION= 0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= mons@cpan.org COMMENT= Fast and modular implementation for an XML-RPC client and server BUILD_DEPENDS= p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-WWW-Curl>=0:www/p5-WWW-Curl \ p5-XML-Hash-LX>=0.05:textproc/p5-XML-Hash-LX \ p5-XML-LibXML>=1.58:textproc/p5-XML-LibXML \ p5-libwww>=0:www/p5-libwww RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings USES= perl5 USE_PERL5= configure .include Index: head/net/p5-XML-RPC-Fast/pkg-plist =================================================================== --- head/net/p5-XML-RPC-Fast/pkg-plist (revision 416156) +++ head/net/p5-XML-RPC-Fast/pkg-plist (revision 416157) @@ -1,18 +1,17 @@ %%SITE_PERL%%/XML/RPC/UA.pm %%SITE_PERL%%/XML/RPC/Enc.pm %%SITE_PERL%%/XML/RPC/Enc/LibXML.pm %%SITE_PERL%%/XML/RPC/UA/LWP.pm %%SITE_PERL%%/XML/RPC/UA/Curl.pm %%SITE_PERL%%/XML/RPC/UA/AnyEvent.pm %%SITE_PERL%%/XML/RPC/UA/AnyEventSync.pm %%SITE_PERL%%/XML/RPC/Fast.pm %%SITE_PERL%%/XML/RPC/README.pod %%PERL5_MAN3%%/XML::RPC::Enc.3.gz %%PERL5_MAN3%%/XML::RPC::Enc::LibXML.3.gz %%PERL5_MAN3%%/XML::RPC::Fast.3.gz -%%PERL5_MAN3%%/XML::RPC::README.3.gz %%PERL5_MAN3%%/XML::RPC::UA.3.gz %%PERL5_MAN3%%/XML::RPC::UA::AnyEvent.3.gz %%PERL5_MAN3%%/XML::RPC::UA::AnyEventSync.3.gz %%PERL5_MAN3%%/XML::RPC::UA::Curl.3.gz %%PERL5_MAN3%%/XML::RPC::UA::LWP.3.gz Index: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile =================================================================== --- head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile (revision 416156) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/Makefile (revision 416157) @@ -1,28 +1,29 @@ # Created by: Henk van Oers # $FreeBSD$ PORTNAME= Dancer2-Plugin-Auth-Extensible-Provider-DBIC PORTVERSION= 0.502 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= hvo.pm@xs4all.nl COMMENT= Extensible authentication framework for Dancer2 apps using DBIC LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class \ p5-Dancer2-Plugin-Auth-Extensible>=0.501:security/p5-Dancer2-Plugin-Auth-Extensible \ p5-Dancer2-Plugin-DBIC>=0:databases/p5-Dancer2-Plugin-DBIC \ p5-String-CamelCase>=0:textproc/p5-String-CamelCase RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Class-Load>=0:devel/p5-Class-Load \ p5-DateTime-Format-SQLite>=0:devel/p5-DateTime-Format-SQLite \ p5-Path-Tiny>=0:devel/p5-Path-Tiny USES= perl5 USE_PERL5= configure .include Index: head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-plist =================================================================== --- head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-plist (revision 416156) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Dancer2/Plugin/Auth/Extensible/Provider/DBIC.pm %%SITE_PERL%%/Dancer2/Plugin/Auth/Extensible/Provider/README.pod %%PERL5_MAN3%%/Dancer2::Plugin::Auth::Extensible::Provider::DBIC.3.gz -%%PERL5_MAN3%%/Dancer2::Plugin::Auth::Extensible::Provider::README.3.gz Index: head/security/p5-Protocol-ACME/Makefile =================================================================== --- head/security/p5-Protocol-ACME/Makefile (revision 416156) +++ head/security/p5-Protocol-ACME/Makefile (revision 416157) @@ -1,27 +1,28 @@ # $FreeBSD$ PORTNAME= Protocol-ACME PORTVERSION= 0.12 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SLUDIN PKGNAMEPREFIX= p5- MAINTAINER= pi@FreeBSD.org COMMENT= Interface to the Let's Encrypt ACME API LICENSE= ART20 RUN_DEPENDS= p5-Crypt-Format>=0.06:security/p5-Crypt-Format \ p5-Crypt-OpenSSL-Bignum>=0.06:security/p5-Crypt-OpenSSL-Bignum \ p5-Crypt-OpenSSL-RSA>=0.28:security/p5-Crypt-OpenSSL-RSA \ p5-Crypt-RSA-Parse>=0.041:security/p5-Crypt-RSA-Parse \ p5-Digest-SHA>=5.95:security/p5-Digest-SHA \ p5-Log-Any>=1.032:devel/p5-Log-Any \ p5-JSON>=2.90:converters/p5-JSON \ p5-libwww>=6.13:www/p5-libwww USES= perl5 USE_PERL5= configure .include Index: head/security/p5-Protocol-ACME/pkg-plist =================================================================== --- head/security/p5-Protocol-ACME/pkg-plist (revision 416156) +++ head/security/p5-Protocol-ACME/pkg-plist (revision 416157) @@ -1,19 +1,18 @@ %%SITE_PERL%%/Protocol/ACME.pm %%SITE_PERL%%/Protocol/ACME/Challenge.pm %%SITE_PERL%%/Protocol/ACME/Challenge/LocalFile.pm %%SITE_PERL%%/Protocol/ACME/Challenge/Manual.pm %%SITE_PERL%%/Protocol/ACME/Challenge/SimpleSSH.pm %%SITE_PERL%%/Protocol/ACME/Exception.pm %%SITE_PERL%%/Protocol/ACME/Key.pm %%SITE_PERL%%/Protocol/ACME/Logger.pm %%SITE_PERL%%/Protocol/ACME/OpenSSL.pm %%SITE_PERL%%/Protocol/ACME/Utils.pm %%SITE_PERL%%/Protocol/README.pod %%SITE_PERL%%/Protocol/client.pl %%SITE_PERL%%/Protocol/revoke.pl %%PERL5_MAN3%%/Protocol::ACME.3.gz %%PERL5_MAN3%%/Protocol::ACME::Challenge.3.gz %%PERL5_MAN3%%/Protocol::ACME::Challenge::LocalFile.3.gz %%PERL5_MAN3%%/Protocol::ACME::Challenge::Manual.3.gz %%PERL5_MAN3%%/Protocol::ACME::Challenge::SimpleSSH.3.gz -%%PERL5_MAN3%%/Protocol::README.3.gz Index: head/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile =================================================================== --- head/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile (revision 416156) +++ head/textproc/p5-HTML-FormatText-WithLinks-AndTables/Makefile (revision 416157) @@ -1,24 +1,25 @@ # Created by: Steve Wills # $FreeBSD$ PORTNAME= HTML-FormatText-WithLinks-AndTables PORTVERSION= 0.06 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module to convert HTML to text with tables in tact LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-HTML-Format>=0:textproc/p5-HTML-Format \ p5-HTML-FormatText-WithLinks>=0:textproc/p5-HTML-FormatText-WithLinks \ p5-HTML-Tree>=0:www/p5-HTML-Tree RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/textproc/p5-HTML-FormatText-WithLinks-AndTables/pkg-plist =================================================================== --- head/textproc/p5-HTML-FormatText-WithLinks-AndTables/pkg-plist (revision 416156) +++ head/textproc/p5-HTML-FormatText-WithLinks-AndTables/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/HTML/FormatText/WithLinks/AndTables.pm %%SITE_PERL%%/HTML/FormatText/WithLinks/README.pod %%PERL5_MAN3%%/HTML::FormatText::WithLinks::AndTables.3.gz -%%PERL5_MAN3%%/HTML::FormatText::WithLinks::README.3.gz Index: head/textproc/p5-Text-CSV-Encoded/Makefile =================================================================== --- head/textproc/p5-Text-CSV-Encoded/Makefile (revision 416156) +++ head/textproc/p5-Text-CSV-Encoded/Makefile (revision 416157) @@ -1,25 +1,26 @@ # Created by: Dereckson # $FreeBSD$ PORTNAME= Text-CSV-Encoded PORTVERSION= 0.25 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= dereckson@gmail.com COMMENT= Perl module for Encoding aware CVS files parsing LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-Test-Simple>=0:devel/p5-Test-Simple \ p5-Test-Harness>=0:devel/p5-Test-Harness \ p5-Text-CSV>=0:textproc/p5-Text-CSV RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USES= perl5 USE_PERL5= configure .include Index: head/textproc/p5-Text-CSV-Encoded/pkg-plist =================================================================== --- head/textproc/p5-Text-CSV-Encoded/pkg-plist (revision 416156) +++ head/textproc/p5-Text-CSV-Encoded/pkg-plist (revision 416157) @@ -1,10 +1,9 @@ %%PERL5_MAN3%%/Text::CSV::Encoded.3.gz %%PERL5_MAN3%%/Text::CSV::Encoded::Coder::Base.3.gz %%PERL5_MAN3%%/Text::CSV::Encoded::Coder::Encode.3.gz %%PERL5_MAN3%%/Text::CSV::Encoded::Coder::EncodeGuess.3.gz -%%PERL5_MAN3%%/Text::CSV::README.3.gz %%SITE_PERL%%/Text/CSV/Encoded.pm %%SITE_PERL%%/Text/CSV/Encoded/Coder/Base.pm %%SITE_PERL%%/Text/CSV/Encoded/Coder/Encode.pm %%SITE_PERL%%/Text/CSV/Encoded/Coder/EncodeGuess.pm %%SITE_PERL%%/Text/CSV/README.pod Index: head/www/p5-Amon2-Plugin-LogDispatch/Makefile =================================================================== --- head/www/p5-Amon2-Plugin-LogDispatch/Makefile (revision 416156) +++ head/www/p5-Amon2-Plugin-LogDispatch/Makefile (revision 416157) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= Amon2-Plugin-LogDispatch PORTVERSION= 0.01 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension of Log::Dispatch glue for Amon2 RUN_DEPENDS= \ p5-Amon2>=2.33:www/p5-Amon2 \ p5-Log-Dispatch>0:devel/p5-Log-Dispatch BUILD_DEPENDS= ${RUN_DEPENDS} TEST_DEPENDS= \ p5-Test-Requires>0:devel/p5-Test-Requires USES= perl5 USE_PERL5= configure .include Index: head/www/p5-Amon2-Plugin-LogDispatch/pkg-plist =================================================================== --- head/www/p5-Amon2-Plugin-LogDispatch/pkg-plist (revision 416156) +++ head/www/p5-Amon2-Plugin-LogDispatch/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Amon2/Plugin/LogDispatch.pm %%SITE_PERL%%/Amon2/Plugin/README.pod %%PERL5_MAN3%%/Amon2::Plugin::LogDispatch.3.gz -%%PERL5_MAN3%%/Amon2::Plugin::README.3.gz Index: head/www/p5-Dancer2-Plugin-Deferred/Makefile =================================================================== --- head/www/p5-Dancer2-Plugin-Deferred/Makefile (revision 416156) +++ head/www/p5-Dancer2-Plugin-Deferred/Makefile (revision 416157) @@ -1,21 +1,22 @@ # Created by: Adam Weinberger # $FreeBSD$ PORTNAME= Dancer2-Plugin-Deferred PORTVERSION= 0.007015 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DELUXARAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Dancer2 plugin to defer messages or data across redirections BUILD_DEPENDS= p5-Dancer2>=0:www/p5-Dancer2 \ p5-URI>=0:net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/www/p5-Dancer2-Plugin-Deferred/pkg-plist =================================================================== --- head/www/p5-Dancer2-Plugin-Deferred/pkg-plist (revision 416156) +++ head/www/p5-Dancer2-Plugin-Deferred/pkg-plist (revision 416157) @@ -1,5 +1,4 @@ %%SITE_PERL%%/Dancer2/Plugin/Deferred.pm %%PERL5_MAN3%%/Dancer2::Plugin::Deferred.3.gz -@comment Don't install these: +@comment Don't package these: @comment %%SITE_PERL%%/Dancer2/Plugin/README.pod -@comment %%PERL5_MAN3%%/Dancer2::Plugin::README.3.gz Index: head/www/p5-HTTP-Router/Makefile =================================================================== --- head/www/p5-HTTP-Router/Makefile (revision 416156) +++ head/www/p5-HTTP-Router/Makefile (revision 416157) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= HTTP-Router PORTVERSION= 0.05 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension of Yet Another Path Router for HTTP BUILD_DEPENDS= \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Devel-Caller-Perl>0:devel/p5-Devel-Caller-Perl \ p5-Filter>0:devel/p5-Filter \ p5-Hash-AsObject>0:devel/p5-Hash-AsObject \ p5-Lingua-EN-Inflect-Number>0:textproc/p5-Lingua-EN-Inflect-Number \ p5-List-MoreUtils>0:lang/p5-List-MoreUtils \ p5-String-CamelCase>0:textproc/p5-String-CamelCase \ p5-Text-SimpleTable>=0:textproc/p5-Text-SimpleTable \ p5-Text-SimpleTemplate>0:textproc/p5-Text-SimpleTemplate \ p5-URI-Template-Restrict>=0.05:net/p5-URI-Template-Restrict RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/www/p5-HTTP-Router/pkg-plist =================================================================== --- head/www/p5-HTTP-Router/pkg-plist (revision 416156) +++ head/www/p5-HTTP-Router/pkg-plist (revision 416157) @@ -1,14 +1,13 @@ %%SITE_PERL%%/HTTP/README.pod %%SITE_PERL%%/HTTP/Router/Route.pm %%SITE_PERL%%/HTTP/Router/Debug.pm %%SITE_PERL%%/HTTP/Router/Declare.pm %%SITE_PERL%%/HTTP/Router/Match.pm %%SITE_PERL%%/HTTP/Router.pm %%SITE_PERL%%/Test/HTTP/Router.pm -%%PERL5_MAN3%%/HTTP::README.3.gz %%PERL5_MAN3%%/HTTP::Router.3.gz %%PERL5_MAN3%%/HTTP::Router::Debug.3.gz %%PERL5_MAN3%%/HTTP::Router::Declare.3.gz %%PERL5_MAN3%%/HTTP::Router::Match.3.gz %%PERL5_MAN3%%/HTTP::Router::Route.3.gz %%PERL5_MAN3%%/Test::HTTP::Router.3.gz Index: head/www/p5-Mojolicious-Plugin-Database/Makefile =================================================================== --- head/www/p5-Mojolicious-Plugin-Database/Makefile (revision 416156) +++ head/www/p5-Mojolicious-Plugin-Database/Makefile (revision 416157) @@ -1,26 +1,27 @@ # Created by: Henk van Oers # $FreeBSD$ PORTNAME= Mojolicious-Plugin-Database PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Handling of DBI based connections in Mojolicious LICENSE= ART10 GPLv1 LICENSE_COMB= dual BUILD_DEPENDS= p5-DBI>=0:databases/p5-DBI \ p5-Mojolicious>=1:www/p5-Mojolicious RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ p5-Try-Tiny>=0:lang/p5-Try-Tiny NO_ARCH= yes USES= perl5 USE_PERL5= configure .include Index: head/www/p5-Mojolicious-Plugin-Database/pkg-plist =================================================================== --- head/www/p5-Mojolicious-Plugin-Database/pkg-plist (revision 416156) +++ head/www/p5-Mojolicious-Plugin-Database/pkg-plist (revision 416157) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Mojolicious/Plugin/Database.pm %%SITE_PERL%%/Mojolicious/Plugin/README.pod %%PERL5_MAN3%%/Mojolicious::Plugin::Database.3.gz -%%PERL5_MAN3%%/Mojolicious::Plugin::README.3.gz Index: head/www/p5-WWW-SourceForge/Makefile =================================================================== --- head/www/p5-WWW-SourceForge/Makefile (revision 416156) +++ head/www/p5-WWW-SourceForge/Makefile (revision 416157) @@ -1,24 +1,24 @@ # Created by: Yuan-Chung Hsiao # $FreeBSD$ PORTNAME= WWW-SourceForge PORTVERSION= 0.70 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RBOW PKGNAMEPREFIX= p5- MAINTAINER= ychsiao@ychsiao.org COMMENT= Retrieve information from SourceForge site BUILD_DEPENDS= p5-WWW-Mechanize>=0:www/p5-WWW-Mechanize \ p5-HTML-TableExtract>=0:www/p5-HTML-TableExtract \ p5-YAML>=0:textproc/p5-YAML RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure .include Index: head/www/p5-WWW-SourceForge/pkg-plist =================================================================== --- head/www/p5-WWW-SourceForge/pkg-plist (revision 416156) +++ head/www/p5-WWW-SourceForge/pkg-plist (revision 416157) @@ -1,11 +1,10 @@ %%SITE_PERL%%/WWW/README.pod %%SITE_PERL%%/WWW/SourceForge.pm %%SITE_PERL%%/WWW/SourceForge/API.pm %%SITE_PERL%%/WWW/SourceForge/Project.pm %%SITE_PERL%%/WWW/SourceForge/User.pm %%SITE_PERL%%/WWW/SourceForge/Wiki.pm -%%PERL5_MAN3%%/WWW::README.3.gz %%PERL5_MAN3%%/WWW::SourceForge.3.gz %%PERL5_MAN3%%/WWW::SourceForge::Project.3.gz %%PERL5_MAN3%%/WWW::SourceForge::User.3.gz %%PERL5_MAN3%%/WWW::SourceForge::Wiki.3.gz