From owner-svn-ports-head@FreeBSD.ORG Sun Oct 14 06:21:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C3DB36A; Sun, 14 Oct 2012 06:21:27 +0000 (UTC) (envelope-from andrej.zverev@gmail.com) Received: from mail-ia0-f182.google.com (mail-ia0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id B63B58FC08; Sun, 14 Oct 2012 06:21:26 +0000 (UTC) Received: by mail-ia0-f182.google.com with SMTP id k10so3920426iag.13 for ; Sat, 13 Oct 2012 23:21:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=ladRq4eyomOzCk5yNmf32ahghDBTrQWSNcITfqcuzWc=; b=IFYb0k/KGMhYLtxA87JwiPqx5iKbwK1ItFFUBSgL48gDF2bwL6Ds7ZaIWEujwJ6aGh zvIguDuw8nynqeHM3oCJYJWC0QUHCD02UkIx/8sk+ht1kAD8/XMZbUAvXYF0jBfGxRrW myYbxfzVpdiAT5YFmHdiCPIUgmc5ZeUyptILCGTHMvJc0B6l9f4hMzrRu9NGFkbBdpbS NBpk47rSIglw6E4C/A3dYu8TXilD5Bm8VykX+Yx/FttCLBfJOFBxcqAdvqeLLY3us815 ZdaIjmA2HzzB8mFrImGCnE7rG5mGiziQCk4GiqsIspQgCpb89VgiSJzsatCUOGEOnXn7 8WHQ== MIME-Version: 1.0 Received: by 10.50.140.38 with SMTP id rd6mr6047564igb.0.1350195685805; Sat, 13 Oct 2012 23:21:25 -0700 (PDT) Sender: andrej.zverev@gmail.com Received: by 10.64.89.42 with HTTP; Sat, 13 Oct 2012 23:21:25 -0700 (PDT) In-Reply-To: <201210140333.q9E3XusW076373@svn.freebsd.org> References: <201210140333.q9E3XusW076373@svn.freebsd.org> Date: Sun, 14 Oct 2012 10:21:25 +0400 X-Google-Sender-Auth: M5_n7EVvuV0YSFSi_03MGNxq3wE Message-ID: Subject: Re: svn commit: r305859 - in head/devel: . binpack From: Andrej Zverev To: Eitan Adler Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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, 14 Oct 2012 06:21:27 -0000 On Sun, Oct 14, 2012 at 7:33 AM, Eitan Adler wrote: > 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 > > Hello, we have a tradition concerning the naming of modules related to Perl. Please, rename it to devel/p5-Algorithm-BinPack.