From owner-svn-ports-head@FreeBSD.ORG Tue Jul 29 05:22:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7E4A97B; Tue, 29 Jul 2014 05:22:47 +0000 (UTC) Received: from mail-oi0-x236.google.com (mail-oi0-x236.google.com [IPv6:2607:f8b0:4003:c06::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7D79A265F; Tue, 29 Jul 2014 05:22:47 +0000 (UTC) Received: by mail-oi0-f54.google.com with SMTP id i138so6931409oig.41 for ; Mon, 28 Jul 2014 22:22:46 -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:message-id:subject :from:to:cc:content-type; bh=7YQ0bdmwALNStzNIt+exzum9mZPvipgHiCOVcIxzAoE=; b=0J4fqQ280giJ+1Y3tcL6v1ki9tFZzw8qddMcFsKSaEGIi9dWBdXWHaVaYQFLGJE3EK h6yegYm1gNEZSY5OIdRIvWWsjQDeHMUVABqJfOWRJx/cQ9umopSuspXxxeTRGKkx1Fc9 b9SQlkrCpZUoTCH1XjANYVhjvJ50gkTppYeZJUyFxsxBTl79MkzTHDDTlZuItitx7oBF mySSCw3VqEMuMJrCDnSb4TZF5/URtGsWZ98xU7uH+R4DxWYSZcoHqZ3jkksK0uYY51uB Ifxfs5DEHRcu7hOpeOSjlvGFiw/IoFiI6qh0hcTjGJD5KlPRa5bqytgLbNlPhz4SGhh9 uGbw== MIME-Version: 1.0 X-Received: by 10.60.57.36 with SMTP id f4mr56314021oeq.10.1406611366157; Mon, 28 Jul 2014 22:22:46 -0700 (PDT) Sender: andrej.zverev@gmail.com Received: by 10.182.109.196 with HTTP; Mon, 28 Jul 2014 22:22:46 -0700 (PDT) In-Reply-To: <201407290323.s6T3Nmrt098445@svn.freebsd.org> References: <201407290323.s6T3Nmrt098445@svn.freebsd.org> Date: Tue, 29 Jul 2014 09:22:46 +0400 X-Google-Sender-Auth: PuO291zrNiTH9iGdjr_-zu9lI6U Message-ID: Subject: Re: svn commit: r363288 - in head/mail: . p5-Email-Simple-FromHandle From: Andrej Zverev To: Ashish SHUKLA Content-Type: text/plain; charset=UTF-8 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.18 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: Tue, 29 Jul 2014 05:22:47 -0000 You can't put MANx into Makefile anymore. See example how-to fix MANx for p5- port. (https://wiki.freebsd.org/ports/StageDir) On Tue, Jul 29, 2014 at 7:23 AM, Ashish SHUKLA wrote: > Author: ashish > Date: Tue Jul 29 03:23:48 2014 > New Revision: 363288 > URL: http://svnweb.freebsd.org/changeset/ports/363288 > QAT: https://qat.redports.org/buildarchive/r363288/ > > Log: > Email::Simple::FromHandle provides an Email::Simple object which uses a > filehandle as its source, so it does not need to hold the entire body in memory > until needed. > > WWW: https://github.com/rjbs/Email-Simple-FromHandle > > Added: > head/mail/p5-Email-Simple-FromHandle/ > head/mail/p5-Email-Simple-FromHandle/Makefile (contents, props changed) > head/mail/p5-Email-Simple-FromHandle/distinfo (contents, props changed) > head/mail/p5-Email-Simple-FromHandle/pkg-descr (contents, props changed) > head/mail/p5-Email-Simple-FromHandle/pkg-plist (contents, props changed) > Modified: > head/mail/Makefile > > Modified: head/mail/Makefile > ============================================================================== > --- head/mail/Makefile Tue Jul 29 03:16:34 2014 (r363287) > +++ head/mail/Makefile Tue Jul 29 03:23:48 2014 (r363288) > @@ -341,6 +341,7 @@ > SUBDIR += p5-Email-Sender-Transport-SMTP-TLS > SUBDIR += p5-Email-Sender-Transport-SQLite > SUBDIR += p5-Email-Simple > + SUBDIR += p5-Email-Simple-FromHandle > SUBDIR += p5-Email-Stuff > SUBDIR += p5-Email-Valid > SUBDIR += p5-Email-Valid-Loose > > Added: head/mail/p5-Email-Simple-FromHandle/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/mail/p5-Email-Simple-FromHandle/Makefile Tue Jul 29 03:23:48 2014 (r363288) > @@ -0,0 +1,26 @@ > +# Created by: > +# $FreeBSD$ > + > +PORTNAME= Email-Simple-FromHandle > +PORTVERSION= 0.054 > +CATEGORIES= mail perl5 > +MASTER_SITES= CPAN > +PKGNAMEPREFIX= p5- > + > +MAINTAINER= ashish@FreeBSD.org > +COMMENT= Perl library for making email objects from a filehandle > + > +LICENSE= ART10 GPLv1 > +LICENSE_COMB= dual > + > +BUILD_DEPENDS= p5-Email-Simple>=0:${PORTSDIR}/mail/p5-Email-Simple \ > + p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String > + > +RUN_DEPENDS:= ${BUILD_DEPENDS} > + > +USES= perl5 > +USE_PERL5= configure > + > +MAN3= Email::Simple::FromHandle.3 > + > +.include > > Added: head/mail/p5-Email-Simple-FromHandle/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/mail/p5-Email-Simple-FromHandle/distinfo Tue Jul 29 03:23:48 2014 (r363288) > @@ -0,0 +1,2 @@ > +SHA256 (Email-Simple-FromHandle-0.054.tar.gz) = b750e7599016f7825b5398f662d86c935802ba1fcef6ff75e175c401e3fd1b6a > +SIZE (Email-Simple-FromHandle-0.054.tar.gz) = 23595 > > Added: head/mail/p5-Email-Simple-FromHandle/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/mail/p5-Email-Simple-FromHandle/pkg-descr Tue Jul 29 03:23:48 2014 (r363288) > @@ -0,0 +1,7 @@ > +- Add new port for Email::Simple::FromHandle Perl module > + > +Email::Simple::FromHandle provides an Email::Simple object which uses a > +filehandle as its source, so it does not need to hold the entire body in memory > +until needed. > + > +WWW: https://github.com/rjbs/Email-Simple-FromHandle > > Added: head/mail/p5-Email-Simple-FromHandle/pkg-plist > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/mail/p5-Email-Simple-FromHandle/pkg-plist Tue Jul 29 03:23:48 2014 (r363288) > @@ -0,0 +1,4 @@ > +%%SITE_PERL%%/mach/auto/Email/Simple/FromHandle/.packlist > +%%SITE_PERL%%/Email/Simple/FromHandle.pm > +@dirrmtry %%SITE_PERL%%/Email/Simple > +@dirrmtry %%SITE_PERL%%/mach/auto/Email/Simple/FromHandle >