Add p5-PatchReader, a set of utilities for reading in, transforming, and doing

various other things with a patch.  It basically allows you to create a chain of
readers that can read a patch, remove files from a patch, add CVS context, fix
up the patch root according to CVS, and output the patch as raw unified or
through a template processor (used in some places to output a patch as HTML).

Author: John Keiser <john@johnkeiser.com>

WWW: http://search.cpan.org/dist/PatchReader/

PR:		ports/62673
Submitted by:	Toni Viemero <toni.viemero@iki.fi>
This commit is contained in:
Pav Lucistnik 2004-02-28 14:52:57 +00:00
parent 2a17cbd29a
commit 44227911e2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102411
5 changed files with 56 additions and 0 deletions

View File

@ -808,6 +808,7 @@
SUBDIR += p5-Parse-PerlConfig
SUBDIR += p5-Parse-RecDescent
SUBDIR += p5-Parse-Yapp
SUBDIR += p5-PatchReader
SUBDIR += p5-Penguin
SUBDIR += p5-Penguin-Easy
SUBDIR += p5-PerlMenu

View File

@ -0,0 +1,29 @@
# New ports collection makefile for: p5-PatchReader
# Date created: 2004-02-11
# Whom: Toni Viemerö <toni.viemero@iki.fi>
#
# $FreeBSD$
#
PORTNAME= PatchReader
PORTVERSION= 0.9.2
CATEGORIES= devel perl5
MASTER_SITES=${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= ../by-authors/id/J/JK/JKEISER
PKGNAMEPREFIX= p5-
MAINTAINER= ports@FreeBSD.org
COMMENT= Perl module with utilities to read and manipulate patches and CVS
PERL_CONFIGURE= yes
MAN3= PatchReader.3
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
BUILD_DEPENDS= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp
RUN_DEPENDS= ${BUILD_DEPENDS}
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
MD5 (PatchReader-0.9.2.tar.gz) = c0d48aa7025426ac4da04edcccccd8b0
SIZE (PatchReader-0.9.2.tar.gz) = 8586

View File

@ -0,0 +1,9 @@
PatchReader is a set of utilities for reading in, transforming, and doing
various other things with a patch. It basically allows you to create a chain of
readers that can read a patch, remove files from a patch, add CVS context, fix
up the patch root according to CVS, and output the patch as raw unified or
through a template processor (used in some places to output a patch as HTML).
Author: John Keiser <john@johnkeiser.com>
WWW: http://search.cpan.org/dist/PatchReader/

View File

@ -0,0 +1,15 @@
%%SITE_PERL%%/PatchReader.pm
%%SITE_PERL%%/PatchReader/NarrowPatch.pm
%%SITE_PERL%%/PatchReader/FilterPatch.pm
%%SITE_PERL%%/PatchReader/AddCVSContext.pm
%%SITE_PERL%%/PatchReader/Base.pm
%%SITE_PERL%%/PatchReader/Raw.pm
%%SITE_PERL%%/PatchReader/FixPatchRoot.pm
%%SITE_PERL%%/PatchReader/CVSClient.pm
%%SITE_PERL%%/PatchReader/PatchInfoGrabber.pm
%%SITE_PERL%%/PatchReader/DiffPrinter/template.pm
%%SITE_PERL%%/PatchReader/DiffPrinter/raw.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/PatchReader/.packlist
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/PatchReader 2>/dev/null || true
@dirrm %%SITE_PERL%%/PatchReader/DiffPrinter
@unexec rmdir %D/%%SITE_PERL%%/PatchReader 2>/dev/null || true