pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/patchutils initial import of patchutils-0.2.30



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a6e5ceac2c7f
branches:  trunk
changeset: 478466:a6e5ceac2c7f
user:      recht <recht%pkgsrc.org@localhost>
date:      Sat Jul 24 08:45:26 2004 +0000

description:
initial import of patchutils-0.2.30

Patchutils is a small collection of programs that operate on patch files.
Interdiff generates an incremental patch from two patches against a common
source. For example, if you have applied a pre-patch to a source tree, and
wish to apply another pre-patch (which is against the same original source
tree), you can use interdiff to generate the patch that you need to apply.
You can also use this to review changes between two pre-patches.
Combinediff generates a single patch from two incremental patches, allowing
you to merge patches together. The resulting patch file only alters each file
once.
Filterdiff will select the portions of a patch file that apply to files
matching (or, alternatively, not matching) a shell wildcard.
Fixcvsdiff is for correcting the output of 'cvs diff'.
Rediff corrects hand-edited patches, by comparing the original patch with the
modified one and adjusting the offsets and counts.
Lsdiff displays a short listing of affected files in a patch file, along with
(optionally) the line numbers of the start of each patch.
Splitdiff separates out patches from a patch file so that each new patch file
only alters any given file once. In this way, a file containing several
incremental patches can be split into individual incremental patches.
Grepdiff displays a list of the files modified by a patch where the patch
contains a given regular expression.
Recountdiff fixes up counts and offsets in a unified diff.
Unwrapdiff fixes word-wrapped unified diffs.

diffstat:

 devel/patchutils/DESCR    |  23 +++++++++++++++++++++++
 devel/patchutils/Makefile |  21 +++++++++++++++++++++
 devel/patchutils/PLIST    |  29 +++++++++++++++++++++++++++++
 devel/patchutils/distinfo |   4 ++++
 4 files changed, 77 insertions(+), 0 deletions(-)

diffs (93 lines):

diff -r efd17ba4230b -r a6e5ceac2c7f devel/patchutils/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/patchutils/DESCR    Sat Jul 24 08:45:26 2004 +0000
@@ -0,0 +1,23 @@
+Patchutils is a small collection of programs that operate on patch files.
+Interdiff generates an incremental patch from two patches against a common
+source. For example, if you have applied a pre-patch to a source tree, and
+wish to apply another pre-patch (which is against the same original source
+tree), you can use interdiff to generate the patch that you need to apply.
+You can also use this to review changes between two pre-patches.
+Combinediff generates a single patch from two incremental patches, allowing
+you to merge patches together. The resulting patch file only alters each file
+once.
+Filterdiff will select the portions of a patch file that apply to files
+matching (or, alternatively, not matching) a shell wildcard.
+Fixcvsdiff is for correcting the output of 'cvs diff'.
+Rediff corrects hand-edited patches, by comparing the original patch with the
+modified one and adjusting the offsets and counts.
+Lsdiff displays a short listing of affected files in a patch file, along with
+(optionally) the line numbers of the start of each patch.
+Splitdiff separates out patches from a patch file so that each new patch file
+only alters any given file once. In this way, a file containing several
+incremental patches can be split into individual incremental patches.
+Grepdiff displays a list of the files modified by a patch where the patch
+contains a given regular expression.
+Recountdiff fixes up counts and offsets in a unified diff.
+Unwrapdiff fixes word-wrapped unified diffs.
diff -r efd17ba4230b -r a6e5ceac2c7f devel/patchutils/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/patchutils/Makefile Sat Jul 24 08:45:26 2004 +0000
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/07/24 08:45:26 recht Exp $
+#
+
+DISTNAME=              patchutils-0.2.30
+CATEGORIES=            devel
+MASTER_SITES=          http://cyberelk.net/tim/data/patchutils/stable/
+EXTRACT_SUFX=          .tar.bz2
+
+MAINTAINER=            recht%NetBSD.org@localhost
+HOMEPAGE=              http://cyberelk.net/tim/patchutils/index.html
+COMMENT=               Some programs for manipulating patch files
+
+DEPENDS+=               patch-[0-9]*:../../devel/patch
+
+USE_BUILDLINK3=                yes
+USE_PKGLOCALEDIR=      yes
+USE_PERL5=             yes
+GNU_CONFIGURE=         yes
+CONFIGURE_ARGS=                --with-patch=${PREFIX}/bin/${GNU_PROGRAM_PREFIX}patch
+
+.include "../../mk/bsd.pkg.mk"
diff -r efd17ba4230b -r a6e5ceac2c7f devel/patchutils/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/patchutils/PLIST    Sat Jul 24 08:45:26 2004 +0000
@@ -0,0 +1,29 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/07/24 08:45:27 recht Exp $
+bin/combinediff
+bin/dehtmldiff
+bin/editdiff
+bin/espdiff
+bin/filterdiff
+bin/fixcvsdiff
+bin/flipdiff
+bin/grepdiff
+bin/interdiff
+bin/lsdiff
+bin/recountdiff
+bin/rediff
+bin/splitdiff
+bin/unwrapdiff
+man/man1/combinediff.1
+man/man1/dehtmldiff.1
+man/man1/editdiff.1
+man/man1/espdiff.1
+man/man1/filterdiff.1
+man/man1/fixcvsdiff.1
+man/man1/flipdiff.1
+man/man1/grepdiff.1
+man/man1/interdiff.1
+man/man1/lsdiff.1
+man/man1/recountdiff.1
+man/man1/rediff.1
+man/man1/splitdiff.1
+man/man1/unwrapdiff.1
diff -r efd17ba4230b -r a6e5ceac2c7f devel/patchutils/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/patchutils/distinfo Sat Jul 24 08:45:26 2004 +0000
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/07/24 08:45:27 recht Exp $
+
+SHA1 (patchutils-0.2.30.tar.bz2) = 9330c7c94c7a3f36c8f0c4323fb39a16df038f02
+Size (patchutils-0.2.30.tar.bz2) = 147722 bytes



Home | Main Index | Thread Index | Old Index