From owner-svn-ports-head@FreeBSD.ORG Sun Sep 23 08:26:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7703106566B; Sun, 23 Sep 2012 08:26:04 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A1A148FC12; Sun, 23 Sep 2012 08:26:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8N8Q4FF054500; Sun, 23 Sep 2012 08:26:04 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8N8Q4hP054494; Sun, 23 Sep 2012 08:26:04 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201209230826.q8N8Q4hP054494@svn.freebsd.org> From: Frederic Culot Date: Sun, 23 Sep 2012 08:26:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304731 - in head/sysutils: . p5-MogileFS-Network X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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, 23 Sep 2012 08:26:04 -0000 Author: culot Date: Sun Sep 23 08:26:03 2012 New Revision: 304731 URL: http://svn.freebsd.org/changeset/ports/304731 Log: MogileFS::Network is a collection of modules adding multiple network awareness to the MogileFS server. It provides two replication policies, 'MultipleNetworks' and 'HostsPerNetwork', and also provides a plugin 'ZoneLocal' that causes get_paths queries to be returned in a prioritized order based on locality of storage. WWW: http://search.cpan.org/dist/MogileFS-Network/ PR: ports/171822 Submitted by: Mikolaj Golub Added: head/sysutils/p5-MogileFS-Network/ head/sysutils/p5-MogileFS-Network/Makefile (contents, props changed) head/sysutils/p5-MogileFS-Network/distinfo (contents, props changed) head/sysutils/p5-MogileFS-Network/pkg-descr (contents, props changed) head/sysutils/p5-MogileFS-Network/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Sep 23 08:02:06 2012 (r304730) +++ head/sysutils/Makefile Sun Sep 23 08:26:03 2012 (r304731) @@ -606,6 +606,7 @@ SUBDIR += p5-Iterator-File SUBDIR += p5-Lchown SUBDIR += p5-MogileFS-Client + SUBDIR += p5-MogileFS-Network SUBDIR += p5-MogileFS-Server SUBDIR += p5-MogileFS-Utils SUBDIR += p5-Monitor-Simple Added: head/sysutils/p5-MogileFS-Network/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-MogileFS-Network/Makefile Sun Sep 23 08:26:03 2012 (r304731) @@ -0,0 +1,33 @@ +# Created by: Mikolaj Golub +# $FreeBSD$ + +PORTNAME= MogileFS-Network +PORTVERSION= 0.06 +CATEGORIES= sysutils net perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:HACHI +PKGNAMEPREFIX= p5- + +MAINTAINER= trociny@FreeBSD.org +COMMENT= Network awareness and extensions for p5-MogileFS-Server + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Net-Netmask>=0:${PORTSDIR}/net-mgmt/p5-Net-Netmask \ + p5-Net-Patricia>=0:${PORTSDIR}/net/p5-Net-Patricia \ + p5-MogileFS-Server>=2.50:${PORTSDIR}/sysutils/p5-MogileFS-Server +RUN_DEPENDS:= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= MogileFS::Network.3 \ + MogileFS::ReplicationPolicy::MultipleNetworks.3 + +.include + +post-patch: + @${REINPLACE_CMD} -e '/NAME/ s|MogileFS-Network|MogileFS::Network|' \ + ${WRKSRC}/Makefile.PL + +.include Added: head/sysutils/p5-MogileFS-Network/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-MogileFS-Network/distinfo Sun Sep 23 08:26:03 2012 (r304731) @@ -0,0 +1,2 @@ +SHA256 (MogileFS-Network-0.06.tar.gz) = 4adb668b89166a11371b747af7d9f1a46958f7039efb0566aa6bf79994c8fffa +SIZE (MogileFS-Network-0.06.tar.gz) = 9981 Added: head/sysutils/p5-MogileFS-Network/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-MogileFS-Network/pkg-descr Sun Sep 23 08:26:03 2012 (r304731) @@ -0,0 +1,7 @@ +This collection of modules adds multiple network awareness to the MogileFS +server. It provides two replication policies, 'MultipleNetworks' and +'HostsPerNetwork', and also provides a plugin 'ZoneLocal' that causes +get_paths queries to be returned in a prioritized order based on locality of +storage. + +WWW: http://search.cpan.org/dist/MogileFS-Network/ Added: head/sysutils/p5-MogileFS-Network/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-MogileFS-Network/pkg-plist Sun Sep 23 08:26:03 2012 (r304731) @@ -0,0 +1,10 @@ +%%SITE_PERL%%/MogileFS/Network.pm +%%SITE_PERL%%/MogileFS/Plugin/ZoneLocal.pm +%%SITE_PERL%%/MogileFS/ReplicationPolicy/HostsPerNetwork.pm +%%SITE_PERL%%/MogileFS/ReplicationPolicy/MultipleNetworks.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/MogileFS/Network/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MogileFS/Network +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MogileFS +@dirrmtry %%SITE_PERL%%/MogileFS/Plugin +@dirrmtry %%SITE_PERL%%/MogileFS/ReplicationPolicy +@dirrmtry %%SITE_PERL%%/MogileFS