From owner-freebsd-perl@FreeBSD.ORG Thu Nov 26 08:20:04 2009 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE42E1065693 for ; Thu, 26 Nov 2009 08:20:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 93AC98FC16 for ; Thu, 26 Nov 2009 08:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAQ8K4cl009803 for ; Thu, 26 Nov 2009 08:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAQ8K43B009802; Thu, 26 Nov 2009 08:20:04 GMT (envelope-from gnats) Date: Thu, 26 Nov 2009 08:20:04 GMT Message-Id: <200911260820.nAQ8K43B009802@freefall.freebsd.org> To: perl@FreeBSD.org From: Sahil Tandon Cc: Subject: Re: ports/140889: [PATCH] textproc/p5-HTML-SuperForm: update to 1.09 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Nov 2009 08:20:04 -0000 The following reply was made to PR ports/140889; it has been noted by GNATS. From: Sahil Tandon To: bug-followup@FreeBSD.org, az@FreeBSD.org Cc: Subject: Re: ports/140889: [PATCH] textproc/p5-HTML-SuperForm: update to 1.09 Date: Thu, 26 Nov 2009 03:15:35 -0500 This is a multi-part message in MIME format. --------------060608000209000009020508 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit By az@'s suggestion on IRC, I have attached a new patch that takes the second approach discussed in my PR description. Instead of tweaking the pkg-plist, we prevent the extraneous .orig file from being installed in the first place. I have pinged the author so the problem can eventually be fixed upstream. -- Sahil Tandon --------------060608000209000009020508 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="p5-HTML-SuperForm.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="p5-HTML-SuperForm.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-HTML-SuperForm/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 20 Oct 2009 10:21:24 -0000 1.3 +++ Makefile 26 Nov 2009 08:07:44 -0000 @@ -6,7 +6,7 @@ # PORTNAME= HTML-SuperForm -PORTVERSION= 1.08 +PORTVERSION= 1.09 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= ../../authors/id/J/JA/JALLWINE @@ -27,9 +27,13 @@ HTML::SuperForm::Field::Password.3\ HTML::SuperForm::Field::Radio.3\ HTML::SuperForm::Field::RadioGroup.3\ + HTML::SuperForm::Field::Reset.3\ HTML::SuperForm::Field::Select.3\ HTML::SuperForm::Field::Submit.3\ HTML::SuperForm::Field::Text.3\ HTML::SuperForm::Field::Textarea.3 +post-extract: + @${RM} ${WRKSRC}/lib/HTML/SuperForm.pm.orig + .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/textproc/p5-HTML-SuperForm/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 20 Oct 2009 10:21:24 -0000 1.3 +++ distinfo 26 Nov 2009 08:07:44 -0000 @@ -1,3 +1,3 @@ -MD5 (HTML-SuperForm-1.08.tar.gz) = 6e1a7735eb8a4b7d47e812c82aec88fe -SHA256 (HTML-SuperForm-1.08.tar.gz) = 557a1bd31a2937305a347bc9317d4dff7d6f52d46569b459378661f2f38adf35 -SIZE (HTML-SuperForm-1.08.tar.gz) = 22977 +MD5 (HTML-SuperForm-1.09.tar.gz) = 38b2a47442ae92506ea37eb29393650e +SHA256 (HTML-SuperForm-1.09.tar.gz) = 11c4b74be704a2ef1a87040d9e50dba740b7302e34671e21e878b1d1faf6f95e +SIZE (HTML-SuperForm-1.09.tar.gz) = 23455 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/textproc/p5-HTML-SuperForm/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 14 Jul 2009 23:17:35 -0000 1.1 +++ pkg-plist 26 Nov 2009 08:07:44 -0000 @@ -7,6 +7,7 @@ %%SITE_PERL%%/HTML/SuperForm/Field/Password.pm %%SITE_PERL%%/HTML/SuperForm/Field/Radio.pm %%SITE_PERL%%/HTML/SuperForm/Field/RadioGroup.pm +%%SITE_PERL%%/HTML/SuperForm/Field/Reset.pm %%SITE_PERL%%/HTML/SuperForm/Field/Select.pm %%SITE_PERL%%/HTML/SuperForm/Field/Submit.pm %%SITE_PERL%%/HTML/SuperForm/Field/Text.pm --------------060608000209000009020508--