svn commit: r451157 - in head/devel: . p5-ExportTo
Mark Felder
feld at FreeBSD.org
Tue Oct 3 16:55:22 UTC 2017
Author: feld
Date: Tue Oct 3 16:55:20 2017
New Revision: 451157
URL: https://svnweb.freebsd.org/changeset/ports/451157
Log:
This module allow you to export/override subroutine/method to one
namespace. It can be used for mix-in, for extension of modules not using
inheritance.
WWW: https://github.com/ktat/ExportTo
Added:
head/devel/p5-ExportTo/
head/devel/p5-ExportTo/Makefile (contents, props changed)
head/devel/p5-ExportTo/distinfo (contents, props changed)
head/devel/p5-ExportTo/pkg-descr (contents, props changed)
head/devel/p5-ExportTo/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Oct 3 16:46:31 2017 (r451156)
+++ head/devel/Makefile Tue Oct 3 16:55:20 2017 (r451157)
@@ -2461,6 +2461,7 @@
SUBDIR += p5-Exporter-Lite
SUBDIR += p5-Exporter-Tidy
SUBDIR += p5-Exporter-Tiny
+ SUBDIR += p5-ExportTo
SUBDIR += p5-ExtUtils-AutoInstall
SUBDIR += p5-ExtUtils-CBuilder
SUBDIR += p5-ExtUtils-CChecker
Added: head/devel/p5-ExportTo/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-ExportTo/Makefile Tue Oct 3 16:55:20 2017 (r451157)
@@ -0,0 +1,21 @@
+# Created by: Mark Felder <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= ExportTo
+PORTVERSION= 0.03
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+MASTER_SITE_SUBDIR= CPAN:KTAT
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= feld at FreeBSD.org
+COMMENT= Export any function/method to any namespace
+
+LICENSE= ARTPERL10
+
+USES= perl5
+USE_PERL5= configure
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/p5-ExportTo/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-ExportTo/distinfo Tue Oct 3 16:55:20 2017 (r451157)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1507049527
+SHA256 (ExportTo-0.03.tar.gz) = 1da77b1745824539090d2fa9146cfe7af9d54f4e7a9ca7c8f1b86aa917c73753
+SIZE (ExportTo-0.03.tar.gz) = 4597
Added: head/devel/p5-ExportTo/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-ExportTo/pkg-descr Tue Oct 3 16:55:20 2017 (r451157)
@@ -0,0 +1,5 @@
+This module allow you to export/override subroutine/method to one
+namespace. It can be used for mix-in, for extension of modules not using
+inheritance.
+
+WWW: https://github.com/ktat/ExportTo
Added: head/devel/p5-ExportTo/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-ExportTo/pkg-plist Tue Oct 3 16:55:20 2017 (r451157)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/ExportTo.pm
+%%PERL5_MAN3%%/ExportTo.3.gz
More information about the svn-ports-head
mailing list