svn commit: r365215 - in head/devel: . p5-Config-Versioned

Kurt Jaeger pi at FreeBSD.org
Sun Aug 17 18:04:57 UTC 2014


Author: pi
Date: Sun Aug 17 18:04:55 2014
New Revision: 365215
URL: http://svnweb.freebsd.org/changeset/ports/365215
QAT: https://qat.redports.org/buildarchive/r365215/

Log:
  New port: devel/p5-Config-Versioned
  
  Config::Versioned allows an application to access configuration
  parameters not only by parameter name, but also by version number.
  This allows for the configuration subsystem to store previous
  versions of the configuration parameters. When requesting the value
  for a specific attribute, the programmer specifies whether to fetch
  the most recent value or a previous value.
  
  WWW: http://search.cpan.org/dist/Config-Versioned/
  
  PR:		192725
  Submitted by:	Sergei Vyshenski <svysh.fbsd at gmail.com>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Aug 17 17:48:26 2014	(r365214)
+++ head/devel/Makefile	Sun Aug 17 18:04:55 2014	(r365215)
@@ -1698,6 +1698,7 @@
     SUBDIR += p5-Config-Simple
     SUBDIR += p5-Config-Std
     SUBDIR += p5-Config-Tiny
+    SUBDIR += p5-Config-Versioned
     SUBDIR += p5-Config-Wrest
     SUBDIR += p5-Config-YAML
     SUBDIR += p5-ConfigReader

Added: head/devel/p5-Config-Versioned/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Config-Versioned/Makefile	Sun Aug 17 18:04:55 2014	(r365215)
@@ -0,0 +1,24 @@
+# Created by: Sergei Vyshenski <svysh.fbsd at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	Config-Versioned
+PORTVERSION=	1.01
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	svysh.fbsd at gmail.com
+COMMENT=	Simple, versioned access to configuration data
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+RUN_DEPENDS=	p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \
+		p5-Config-Std>=0:${PORTSDIR}/devel/p5-Config-Std \
+		p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
+		p5-Git-PurePerl>=0:${PORTSDIR}/devel/p5-Git-PurePerl
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/devel/p5-Config-Versioned/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Config-Versioned/distinfo	Sun Aug 17 18:04:55 2014	(r365215)
@@ -0,0 +1,2 @@
+SHA256 (Config-Versioned-1.01.tar.gz) = bc9a4ae3738bd89f86a07bca673627ca3c92ba969737cd6dbc7ab7ad17cd2348
+SIZE (Config-Versioned-1.01.tar.gz) = 44894

Added: head/devel/p5-Config-Versioned/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Config-Versioned/pkg-descr	Sun Aug 17 18:04:55 2014	(r365215)
@@ -0,0 +1,7 @@
+Config::Versioned allows an application to access configuration parameters
+not only by parameter name, but also by version number. This allows for
+the configuration subsystem to store previous versions of the configuration
+parameters. When requesting the value for a specific attribute, the programmer
+specifies whether to fetch the most recent value or a previous value.
+
+WWW: http://search.cpan.org/dist/Config-Versioned/

Added: head/devel/p5-Config-Versioned/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Config-Versioned/pkg-plist	Sun Aug 17 18:04:55 2014	(r365215)
@@ -0,0 +1,5 @@
+bin/cfgver
+%%PERL5_MAN3%%/Config::Versioned.3.gz
+%%SITE_PERL%%/Config/Versioned.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Config/Versioned/.packlist
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Config/Versioned


More information about the svn-ports-all mailing list