[Midnightbsd-cvs] mports [23593] trunk/lang: add moreutils xs

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Jul 1 12:38:36 EDT 2018


Revision: 23593
          http://svnweb.midnightbsd.org/mports/?rev=23593
Author:   laffer1
Date:     2018-07-01 12:38:36 -0400 (Sun, 01 Jul 2018)
Log Message:
-----------
add moreutils xs

Modified Paths:
--------------
    trunk/lang/Makefile
    trunk/lang/p5-List-MoreUtils/Makefile
    trunk/lang/p5-List-MoreUtils/distinfo
    trunk/lang/p5-List-MoreUtils/pkg-plist

Added Paths:
-----------
    trunk/lang/p5-List-MoreUtils-XS/
    trunk/lang/p5-List-MoreUtils-XS/Makefile
    trunk/lang/p5-List-MoreUtils-XS/distinfo
    trunk/lang/p5-List-MoreUtils-XS/pkg-descr
    trunk/lang/p5-List-MoreUtils-XS/pkg-plist

Modified: trunk/lang/Makefile
===================================================================
--- trunk/lang/Makefile	2018-07-01 16:38:15 UTC (rev 23592)
+++ trunk/lang/Makefile	2018-07-01 16:38:36 UTC (rev 23593)
@@ -49,6 +49,7 @@
 SUBDIR += p5-Data-JavaScript
 SUBDIR += p5-Error
 SUBDIR += p5-List-MoreUtils
+SUBDIR += p5-List-MoreUtils-XS
 SUBDIR += p5-Scalar-List-Utils
 SUBDIR += p5-Switch
 SUBDIR += p5-Try-Tiny

Modified: trunk/lang/p5-List-MoreUtils/Makefile
===================================================================
--- trunk/lang/p5-List-MoreUtils/Makefile	2018-07-01 16:38:15 UTC (rev 23592)
+++ trunk/lang/p5-List-MoreUtils/Makefile	2018-07-01 16:38:36 UTC (rev 23593)
@@ -1,16 +1,24 @@
 # $MidnightBSD$
 
 PORTNAME=	List-MoreUtils
-DISTVERSION=	0.33
+PORTVERSION=	0.428
 CATEGORIES=	lang perl5
 MASTER_SITES=	CPAN
-MASTER_SITE_SUBDIR=	CPAN:ADAMK
 PKGNAMEPREFIX=	p5-
 
-MAINTAINER=	ports at MidnightBSD.org
+MAINTAINER=	perl at FreeBSD.org
 COMMENT=	Provide the stuff missing in List::Util
-LICENSE=	perl
 
-PERL_CONFIGURE=	yes
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
+BUILD_DEPENDS=	p5-Exporter-Tiny>=0.038:devel/p5-Exporter-Tiny \
+		p5-List-MoreUtils-XS>=0.426:lang/p5-List-MoreUtils-XS
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+TEST_DEPENDS=	p5-Test-LeakTrace>=0:devel/p5-Test-LeakTrace
+
+NO_ARCH=	yes
+USES=		perl5
+USE_PERL5=	configure
+
 .include <bsd.port.mk>

Modified: trunk/lang/p5-List-MoreUtils/distinfo
===================================================================
--- trunk/lang/p5-List-MoreUtils/distinfo	2018-07-01 16:38:15 UTC (rev 23592)
+++ trunk/lang/p5-List-MoreUtils/distinfo	2018-07-01 16:38:36 UTC (rev 23593)
@@ -1,2 +1,3 @@
-SHA256 (List-MoreUtils-0.33.tar.gz) = 315c0b444c22b7bf207ac3c7e651d102c84a2308bfafb7a7efe095a9219494ad
-SIZE (List-MoreUtils-0.33.tar.gz) = 38997
+TIMESTAMP = 1513077511
+SHA256 (List-MoreUtils-0.428.tar.gz) = 713e0945d5f16e62d81d5f3da2b6a7b14a4ce439f6d3a7de74df1fd166476cc2
+SIZE (List-MoreUtils-0.428.tar.gz) = 146030

Modified: trunk/lang/p5-List-MoreUtils/pkg-plist
===================================================================
--- trunk/lang/p5-List-MoreUtils/pkg-plist	2018-07-01 16:38:15 UTC (rev 23592)
+++ trunk/lang/p5-List-MoreUtils/pkg-plist	2018-07-01 16:38:36 UTC (rev 23593)
@@ -1,6 +1,6 @@
-%%SITE_PERL%%/%%PERL_ARCH%%/List/MoreUtils.pm
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/List/MoreUtils/MoreUtils.bs
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/List/MoreUtils/MoreUtils.so
- at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/List/MoreUtils
- at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/List
- at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/List
+%%SITE_PERL%%/List/MoreUtils.pm
+%%SITE_PERL%%/List/MoreUtils/Contributing.pod
+%%SITE_PERL%%/List/MoreUtils/PP.pm
+%%PERL5_MAN3%%/List::MoreUtils.3.gz
+%%PERL5_MAN3%%/List::MoreUtils::Contributing.3.gz
+%%PERL5_MAN3%%/List::MoreUtils::PP.3.gz

Added: trunk/lang/p5-List-MoreUtils-XS/Makefile
===================================================================
--- trunk/lang/p5-List-MoreUtils-XS/Makefile	                        (rev 0)
+++ trunk/lang/p5-List-MoreUtils-XS/Makefile	2018-07-01 16:38:36 UTC (rev 23593)
@@ -0,0 +1,31 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD: head/lang/p5-List-MoreUtils-XS/Makefile 456809 2017-12-20 14:37:42Z sunpoet $
+# $MidnightBSD$
+
+PORTNAME=	List-MoreUtils-XS
+PORTVERSION=	0.428
+CATEGORIES=	lang perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Provide compiled List::MoreUtils functions
+
+LICENSE=	apache2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+PERL_CONFIGURE=	yes
+USE_PERL5=	configure
+USES=		perl5
+
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 502401
+BUILD_DEPENDS+=	p5-XSLoader>=0.22:devel/p5-XSLoader
+RUN_DEPENDS+=	p5-XSLoader>=0.22:devel/p5-XSLoader
+.endif
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/List/MoreUtils/XS/XS.so
+
+.include <bsd.port.post.mk>


Property changes on: trunk/lang/p5-List-MoreUtils-XS/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/lang/p5-List-MoreUtils-XS/distinfo
===================================================================
--- trunk/lang/p5-List-MoreUtils-XS/distinfo	                        (rev 0)
+++ trunk/lang/p5-List-MoreUtils-XS/distinfo	2018-07-01 16:38:36 UTC (rev 23593)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1513769222
+SHA256 (List-MoreUtils-XS-0.428.tar.gz) = 9d9fe621429dfe7cf2eb1299c192699ddebf060953e5ebdc1b4e293c6d6dd62d
+SIZE (List-MoreUtils-XS-0.428.tar.gz) = 159642


Property changes on: trunk/lang/p5-List-MoreUtils-XS/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/lang/p5-List-MoreUtils-XS/pkg-descr
===================================================================
--- trunk/lang/p5-List-MoreUtils-XS/pkg-descr	                        (rev 0)
+++ trunk/lang/p5-List-MoreUtils-XS/pkg-descr	2018-07-01 16:38:36 UTC (rev 23593)
@@ -0,0 +1,3 @@
+List::MoreUtils::XS provides compiled List::MoreUtils functions.
+
+WWW: http://search.cpan.org/dist/List-MoreUtils-XS/


Property changes on: trunk/lang/p5-List-MoreUtils-XS/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/lang/p5-List-MoreUtils-XS/pkg-plist
===================================================================
--- trunk/lang/p5-List-MoreUtils-XS/pkg-plist	                        (rev 0)
+++ trunk/lang/p5-List-MoreUtils-XS/pkg-plist	2018-07-01 16:38:36 UTC (rev 23593)
@@ -0,0 +1,3 @@
+%%SITE_ARCH%%/List/MoreUtils/XS.pm
+%%SITE_ARCH%%/auto/List/MoreUtils/XS/XS.so
+%%PERL5_MAN3%%/List::MoreUtils::XS.3.gz


Property changes on: trunk/lang/p5-List-MoreUtils-XS/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list