svn commit: r376150 - in head/devel: . p5-Object-Import

Kurt Jaeger pi at FreeBSD.org
Sat Jan 3 18:44:48 UTC 2015


Author: pi
Date: Sat Jan  3 18:44:45 2015
New Revision: 376150
URL: https://svnweb.freebsd.org/changeset/ports/376150
QAT: https://qat.redports.org/buildarchive/r376150/

Log:
  New port: devel/p5-Object-Import
  
  This module lets you call methods of a certain object more easily
  by exporting them as functions to a package. The exported functions
  are not called as methods and do not receive an object argument,
  but instead the object is fixed at the time you import them with
  this module.
  
  WWW: http://search.cpan.org/dist/Object-Import/

Added:
  head/devel/p5-Object-Import/
  head/devel/p5-Object-Import/Makefile   (contents, props changed)
  head/devel/p5-Object-Import/distinfo   (contents, props changed)
  head/devel/p5-Object-Import/pkg-descr   (contents, props changed)
  head/devel/p5-Object-Import/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jan  3 18:37:50 2015	(r376149)
+++ head/devel/Makefile	Sat Jan  3 18:44:45 2015	(r376150)
@@ -2538,6 +2538,7 @@
     SUBDIR += p5-Object-Destroyer
     SUBDIR += p5-Object-Enum
     SUBDIR += p5-Object-Event
+    SUBDIR += p5-Object-Import
     SUBDIR += p5-Object-InsideOut
     SUBDIR += p5-Object-MultiType
     SUBDIR += p5-Object-Pluggable

Added: head/devel/p5-Object-Import/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Object-Import/Makefile	Sat Jan  3 18:44:45 2015	(r376150)
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+PORTNAME=	Object-Import
+PORTVERSION=	1.004
+CATEGORIES=	www perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	pi at FreeBSD.org
+COMMENT=	Import methods of an object as functions to a package
+
+USES=		perl5
+USE_PERL5=	configure
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-Object-Import/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Object-Import/distinfo	Sat Jan  3 18:44:45 2015	(r376150)
@@ -0,0 +1,2 @@
+SHA256 (Object-Import-1.004.tar.gz) = 5601d802521a092d536456dd77eda6afce261a3930f5ccb841dd362ffc64f35b
+SIZE (Object-Import-1.004.tar.gz) = 33251

Added: head/devel/p5-Object-Import/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Object-Import/pkg-descr	Sat Jan  3 18:44:45 2015	(r376150)
@@ -0,0 +1,7 @@
+This module lets you call methods of a certain object more easily
+by exporting them as functions to a package. The exported functions
+are not called as methods and do not receive an object argument,
+but instead the object is fixed at the time you import them with
+this module.
+
+WWW: http://search.cpan.org/dist/Object-Import/

Added: head/devel/p5-Object-Import/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Object-Import/pkg-plist	Sat Jan  3 18:44:45 2015	(r376150)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Object/Import.pm
+%%PERL5_MAN3%%/Object::Import.3.gz


More information about the svn-ports-all mailing list