svn commit: r499493 - in head/devel: . p5-Function-Fallback-CoreOrPP

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Apr 21 00:15:57 UTC 2019


Author: sunpoet
Date: Sun Apr 21 00:15:55 2019
New Revision: 499493
URL: https://svnweb.freebsd.org/changeset/ports/499493

Log:
  Add p5-Function-Fallback-CoreOrPP 0.08
  
  Function::Fallback::CoreOrPP provides functions that use non-core XS modules
  (for best speed, reliability, feature, etc) but falls back to those that use
  core XS or pure-Perl modules when the non-core XS module is not available.
  
  This module helps when you want to bootstrap your Perl application with a
  portable, dependency-free Perl script. In a vanilla Perl installation (having
  only core modules), you can use App::FatPacker to include non-core pure-Perl
  dependencies to your script.
  
  WWW: https://metacpan.org/release/Function-Fallback-CoreOrPP

Added:
  head/devel/p5-Function-Fallback-CoreOrPP/
  head/devel/p5-Function-Fallback-CoreOrPP/Makefile   (contents, props changed)
  head/devel/p5-Function-Fallback-CoreOrPP/distinfo   (contents, props changed)
  head/devel/p5-Function-Fallback-CoreOrPP/pkg-descr   (contents, props changed)
  head/devel/p5-Function-Fallback-CoreOrPP/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Apr 21 00:15:32 2019	(r499492)
+++ head/devel/Makefile	Sun Apr 21 00:15:55 2019	(r499493)
@@ -2638,6 +2638,7 @@
     SUBDIR += p5-Form-Sensible
     SUBDIR += p5-FreeBSD-i386-Ptrace
     SUBDIR += p5-FreezeThaw
+    SUBDIR += p5-Function-Fallback-CoreOrPP
     SUBDIR += p5-Function-Parameters
     SUBDIR += p5-Future
     SUBDIR += p5-Gearman

Added: head/devel/p5-Function-Fallback-CoreOrPP/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Function-Fallback-CoreOrPP/Makefile	Sun Apr 21 00:15:55 2019	(r499493)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Function-Fallback-CoreOrPP
+PORTVERSION=	0.08
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:PERLANCAR
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Functions that use non-core XS module but provide pure-Perl/core fallback
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	p5-Clone-PP>=0:devel/p5-Clone-PP
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-Function-Fallback-CoreOrPP/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Function-Fallback-CoreOrPP/distinfo	Sun Apr 21 00:15:55 2019	(r499493)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1552648421
+SHA256 (Function-Fallback-CoreOrPP-0.08.tar.gz) = 016ab46fbb191067064439de4d9f600358824e3eacde70e078294229e163192c
+SIZE (Function-Fallback-CoreOrPP-0.08.tar.gz) = 15199

Added: head/devel/p5-Function-Fallback-CoreOrPP/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Function-Fallback-CoreOrPP/pkg-descr	Sun Apr 21 00:15:55 2019	(r499493)
@@ -0,0 +1,10 @@
+Function::Fallback::CoreOrPP provides functions that use non-core XS modules
+(for best speed, reliability, feature, etc) but falls back to those that use
+core XS or pure-Perl modules when the non-core XS module is not available.
+
+This module helps when you want to bootstrap your Perl application with a
+portable, dependency-free Perl script. In a vanilla Perl installation (having
+only core modules), you can use App::FatPacker to include non-core pure-Perl
+dependencies to your script.
+
+WWW: https://metacpan.org/release/Function-Fallback-CoreOrPP

Added: head/devel/p5-Function-Fallback-CoreOrPP/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Function-Fallback-CoreOrPP/pkg-plist	Sun Apr 21 00:15:55 2019	(r499493)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Function/Fallback/CoreOrPP.pm
+%%PERL5_MAN3%%/Function::Fallback::CoreOrPP.3.gz


More information about the svn-ports-all mailing list