From owner-svn-ports-all@FreeBSD.ORG Sun Oct 14 03:33:57 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD5C2812; Sun, 14 Oct 2012 03:33:56 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BB52B8FC08; Sun, 14 Oct 2012 03:33:56 +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 q9E3Xu8f076379; Sun, 14 Oct 2012 03:33:56 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9E3XusW076373; Sun, 14 Oct 2012 03:33:56 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210140333.q9E3XusW076373@svn.freebsd.org> From: Eitan Adler Date: Sun, 14 Oct 2012 03:33:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305859 - in head/devel: . binpack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 03:33:57 -0000 Author: eadler Date: Sun Oct 14 03:33:56 2012 New Revision: 305859 URL: http://svn.freebsd.org/changeset/ports/305859 Log: Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD, while minimizing the number of discs required. PR: ports/172681 Submitted by: wblock Feature safe: yes Added: head/devel/binpack/ head/devel/binpack/Makefile (contents, props changed) head/devel/binpack/distinfo (contents, props changed) head/devel/binpack/pkg-descr (contents, props changed) head/devel/binpack/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 14 03:12:24 2012 (r305858) +++ head/devel/Makefile Sun Oct 14 03:33:56 2012 (r305859) @@ -111,6 +111,7 @@ SUBDIR += bglibs SUBDIR += bicyclerepair SUBDIR += bin86 + SUBDIR += binpack SUBDIR += binutils SUBDIR += bison SUBDIR += bisoncpp Added: head/devel/binpack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/binpack/Makefile Sun Oct 14 03:33:56 2012 (r305859) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= Algorithm-BinPack +PORTVERSION= 0.5 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= eadler@FreeBSD.org +COMMENT= Efficiently pack items into bins + +PERL_CONFIGURE= yes + +MAN3= Algorithm::BinPack.3 + +.include Added: head/devel/binpack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/binpack/distinfo Sun Oct 14 03:33:56 2012 (r305859) @@ -0,0 +1,2 @@ +SHA256 (Algorithm-BinPack-0.5.tar.gz) = ed5e4b4f5375a4ff1721fad6a11488748f70efc60afabd7682500ada7efad48a +SIZE (Algorithm-BinPack-0.5.tar.gz) = 4431 Added: head/devel/binpack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/binpack/pkg-descr Sun Oct 14 03:33:56 2012 (r305859) @@ -0,0 +1,6 @@ +Algorithm::BinPack efficiently packs items into bins. The bins are given +a maximum size, and items are packed in with as little empty space as +possible. An example use would be backing up files to CD, while +minimizing the number of discs required. + +WWW: http://search.cpan.org/dist/Algorithm-BinPack/ Added: head/devel/binpack/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/binpack/pkg-plist Sun Oct 14 03:33:56 2012 (r305859) @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/BinPack/.packlist +%%SITE_PERL%%/Algorithm/BinPack.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/BinPack +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm +@dirrmtry %%SITE_PERL%%/Algorithm