From owner-svn-ports-head@FreeBSD.ORG Sun Aug 17 18:04:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03045E36; Sun, 17 Aug 2014 18:04:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E25C0255B; Sun, 17 Aug 2014 18:04:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7HI4uNj040020; Sun, 17 Aug 2014 18:04:56 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7HI4t60040011; Sun, 17 Aug 2014 18:04:55 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201408171804.s7HI4t60040011@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 17 Aug 2014 18:04:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365215 - in head/devel: . p5-Config-Versioned X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2014 18:04:57 -0000 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 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 +# $FreeBSD$ + +PORTNAME= Config-Versioned +PORTVERSION= 1.01 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= svysh.fbsd@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 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 +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Config/Versioned