Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Apr 2005 13:28:58 +0200 (CEST)
From:      Matthias Andree <matthias.andree@gmx.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/80279: [NEW PORT] devel/cvschk: Quick offline checker for CVS modifications
Message-ID:  <20050423112858.9AB101B205@merlin.emma.line.org>
Resent-Message-ID: <200504231130.j3NBURnw034002@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         80279
>Category:       ports
>Synopsis:       [NEW PORT] devel/cvschk: Quick offline checker for CVS modifications
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Apr 23 11:30:27 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Matthias Andree
>Release:        FreeBSD 5.4-STABLE i386
>Organization:
>Environment:
System: FreeBSD merlin.emma.line.org 5.4-STABLE FreeBSD 5.4-STABLE #26: Fri Apr  8 11:43:23 CEST
>Description:
cvschk is a Perl program which allows you to see the status of your own CVS
directories, without access to the CVS repository.  It shows which files you
changed, made locally, and which ones were deleted.

WWW: http://cvs.sslug.dk/cvs2html/

-- Matthias Andree

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- cvschk-1.12.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	cvschk
#	cvschk/distinfo
#	cvschk/Makefile
#	cvschk/pkg-descr
#	cvschk/files
#	cvschk/files/cvschk.1
#	cvschk/pkg-plist
#
echo c - cvschk
mkdir -p cvschk > /dev/null 2>&1
echo x - cvschk/distinfo
sed 's/^X//' >cvschk/distinfo << 'END-of-cvschk/distinfo'
XMD5 (cvschk) = 935437b872cab82fcd80c9aa467376ca
XSIZE (cvschk) = 17410
END-of-cvschk/distinfo
echo x - cvschk/Makefile
sed 's/^X//' >cvschk/Makefile << 'END-of-cvschk/Makefile'
X# New ports collection makefile for: 	cvschk
X# Date created:				2005-04-23
X# Whom:					Matthias Andree <matthias.andree@gmx.de>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	cvschk
XPORTVERSION=	1.12
XCATEGORIES=	devel
XMASTER_SITES=	http://cvs.sslug.dk/cvs2html/utils/
XDISTNAME=	cvschk
XEXTRACT_SUFX=
XEXTRACT_ONLY=
X
XMAINTAINER=	matthias.andree@gmx.de
XCOMMENT=	Quick offline checker for CVS modifications
X
XUSE_PERL5_RUN=	yes
XNO_BUILD=	yes
XNO_WRKSUBDIR=	yes
XMAN1=		cvschk.1
X
Xdo-configure:
X	${SED} -e "s,^#!/usr/bin/perl -w,#! ${PERL} -w," \
X	<${DISTDIR}/${DISTNAME} >${WRKSRC}/${DISTNAME}
X
Xdo-install:
X	${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin
X	${INSTALL_MAN}	  ${FILESDIR}/cvschk.1  ${PREFIX}/man/man1
X
X.include <bsd.port.mk>
END-of-cvschk/Makefile
echo x - cvschk/pkg-descr
sed 's/^X//' >cvschk/pkg-descr << 'END-of-cvschk/pkg-descr'
Xcvschk is a Perl program which allows you to see the status of your own CVS
Xdirectories, without access to the CVS repository.  It shows which files you
Xchanged, made locally, and which ones were deleted.
X
XWWW: http://cvs.sslug.dk/cvs2html/
X
X-- Matthias Andree
END-of-cvschk/pkg-descr
echo c - cvschk/files
mkdir -p cvschk/files > /dev/null 2>&1
echo x - cvschk/files/cvschk.1
sed 's/^X//' >cvschk/files/cvschk.1 << 'END-of-cvschk/files/cvschk.1'
X.Dd April 23, 2005
X.Dt CVSCHK 1
X.Os
X.Sh NAME
X.Nm cvschk
X.Nd Quick offline CVS status checker
X.Sh SYNOPSIS
X.Nm
X.Op Fl adhlrtV
X.Op Fl Ar -all
X.Op Fl Ar -debug
X.Op Fl Ar -help
X.Op Fl Ar -local
X.Op Fl Ar -restrict
X.Op Fl Ar -tabular
X.Op Fl Ar -version
X.Sh DESCRIPTION
XThe
X.Nm
Xutility is a perl program which checks the status of the CVS controlled files
Xand gives an ASCII table sorted after the status of files. It works offline,
Xwithout access to the CVS repository.
X.Pp
XThe options are:
X.Bl -tag -width Ds
X.It Fl a , -all
XShow all statistics, including the names of files that are up to date, used tags, ignored patterns and more.
X.It Fl d , -debug
XShow debug information.
X.It Fl h , -help
XPrint a short usage help.
X.It Fl l , -local
XDo not descend into sub-directories.
X.It Fl r , -restrict
XDo not show the names of unknown files (useful in directories with lots of
Xtemporary files).
X.It Fl t , -tabular
XShow one file per line, preceded with a status word, sorted by filename.
X.It Fl V , -version
XPrint the version and exit.
X.El
X
X.Sh AUTHOR
XThis manual page was written by
X.An "Matthias Andree" Aq matthias.andree@gmx.de .
X.Pp
X.Nm cvschk
Xwas written by:
X.An "Peter Toft" Aq pto@sslug.dk ,
X.An "Ole Tange" Aq ole@tange.dk
Xand
X.An "Lars G. T. Joergensen" Aq larsj@diku.dk
END-of-cvschk/files/cvschk.1
echo x - cvschk/pkg-plist
sed 's/^X//' >cvschk/pkg-plist << 'END-of-cvschk/pkg-plist'
Xbin/cvschk
END-of-cvschk/pkg-plist
exit
--- cvschk-1.12.shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050423112858.9AB101B205>