Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 1959 invoked from network); 28 Jun 2006 12:56:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Jun 2006 12:56:38 -0000 Received: (qmail 5661 invoked by uid 500); 28 Jun 2006 12:56:38 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 5643 invoked by uid 500); 28 Jun 2006 12:56:38 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@perl.apache.org List-Id: Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 5632 invoked by uid 99); 28 Jun 2006 12:56:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 05:56:38 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 05:56:37 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 80D2E1A983A; Wed, 28 Jun 2006 05:56:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r417746 - /perl/Apache-SizeLimit/trunk/Makefile.PL Date: Wed, 28 Jun 2006 12:56:17 -0000 To: modperl-cvs@perl.apache.org From: geoff@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060628125617.80D2E1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: geoff Date: Wed Jun 28 05:56:16 2006 New Revision: 417746 URL: http://svn.apache.org/viewvc?rev=417746&view=rev Log: add tag target tweak clean target - t/logs, t/conf etc will be automatically cleaned up by Apache-Test this Makefile needs a bit of work, I think. what stands out now is reliable Apache-Test integration and general cleanup (no need for TEST.PL, for example) Modified: perl/Apache-SizeLimit/trunk/Makefile.PL Modified: perl/Apache-SizeLimit/trunk/Makefile.PL URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/Makefile.PL?rev=417746&r1=417745&r2=417746&view=diff ============================================================================== --- perl/Apache-SizeLimit/trunk/Makefile.PL (original) +++ perl/Apache-SizeLimit/trunk/Makefile.PL Wed Jun 28 05:56:16 2006 @@ -32,5 +32,19 @@ NAME => "Apache::SizeLimit", PREREQ_PM => \%prereqs, ABSTRACT_FROM => 'lib/Apache/SizeLimit.pm', - clean => { FILES => 't/TEST t/logs t/htdocs t/conf' }, + clean => { FILES => 't/TEST' }, ); + +sub MY::postamble { + my $self = shift; + + my $string = $self->MM::postamble; + + $string .= <<'EOF'; +tag : + svn copy https://svn.apache.org/repos/asf/perl/Apache-SizeLimit/trunk https://svn.apache.org/repos/asf/perl/Apache-SizeLimit/tags/$(VERSION_SYM) + @echo update lib/Apache/SizeLimit.pm VERSION now +EOF + + return $string; +}