1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Add csvdiff 1.3, compare/diff two (comma) seperated files with each

other.

PR:		ports/100097
Submitted by:	chinsan <chinsan.tw at gmail.com>
This commit is contained in:
Rong-En Fan 2006-07-12 05:53:15 +00:00
parent 07ac479bee
commit 1531284261
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167569
4 changed files with 49 additions and 0 deletions

View File

@ -60,6 +60,7 @@
SUBDIR += csb-aspell SUBDIR += csb-aspell
SUBDIR += csv2latex SUBDIR += csv2latex
SUBDIR += csv2xml SUBDIR += csv2xml
SUBDIR += csvdiff
SUBDIR += ctpp SUBDIR += ctpp
SUBDIR += cwtext SUBDIR += cwtext
SUBDIR += cy-aspell SUBDIR += cy-aspell

36
textproc/csvdiff/Makefile Normal file
View File

@ -0,0 +1,36 @@
# New ports collection makefile for: csvdiff
# Date created: 2006/07/12
# Whom: chinsan <chinsan.tw@gmail.com>
#
# $FreeBSD$
#
PORTNAME= csvdiff
PORTVERSION= 1.3
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}_${PORTVERSION:S,.,-,g}
MAINTAINER= chinsan.tw@gmail.com
COMMENT= Compare/diff two (comma) seperated files with each other
NO_BUILD= yes
USE_PERL5= yes
PLIST_FILES= bin/csvdiff
WRKSRC= ${WRKDIR}
.if !defined(NOPORTDOCS)
PORTDOCS= CHANGES README TODO
.endif
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl \
${PREFIX}/bin/${PORTNAME}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (csvdiff_1-3.tar.gz) = ffcafdf67c0526fe56fe1c2aa96475c8
SHA256 (csvdiff_1-3.tar.gz) = 60b2680c748763ea19f5b0ab710d86cb44a33433be5fe0b117c3a15a0962ac91
SIZE (csvdiff_1-3.tar.gz) = 14739

View File

@ -0,0 +1,9 @@
csvdiff is a Perl script to diff/compare two csv files with the possibility
to select the separator.
Differences will be shown like:
"Column XYZ in record 999" is different.
After this, the actual and the expected result for this
column will be shown.
WWW: http://csvdiff.sourceforge.net/