Date: Sun, 14 Oct 2012 03:33:56 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305859 - in head/devel: . binpack Message-ID: <201210140333.q9E3XusW076373@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210140333.q9E3XusW076373>