This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository statcvs.
commit 81c2f5ec4c2a3463149d15906fc0e67fc4d33523 Author: Christian Bayle <[email protected]> Date: Sun Jul 20 22:51:49 2003 +0000 new release --- debian/changelog | 9 ++++++ debian/control | 10 +++--- debian/rules | 4 ++- debian/statcvs.dirs | 1 + statcvs | 10 ++++++ statcvs.1 | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 119 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index e219f79..b2f15a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +statcvs (20030713-2) unstable; urgency=low + + * Corrected dependancies (Closes: bug#201502) + * Made more accurate description, a wrapper, a man and + changed section to contrib/devel (Closes: bug#201503) + * Added support for Kaffe + + -- Christian Bayle <[email protected]> Sat, 19 Jul 2003 02:35:24 +0200 + statcvs (20030713-1) unstable; urgency=low * Patch that made fail statcvs on some big CVS archive diff --git a/debian/control b/debian/control index 24d69e2..63b841d 100644 --- a/debian/control +++ b/debian/control @@ -1,14 +1,14 @@ Source: statcvs -Section: contrib/libs +Section: contrib/devel Priority: optional Maintainer: Christian Bayle <[email protected]> -Build-Depends-Indep: debhelper (>> 4.0.0), j2sdk1.4, gjdoc, ant -Standards-Version: 3.5.8 +Build-Depends-Indep: debhelper (>> 4.0.0), j2sdk1.4, ant +Standards-Version: 3.6.0 Package: statcvs -Section: contrib/libs +Section: contrib/devel Architecture: all -Depends: gij-3.2 | j2re1.4 | java1-runtime | java2-runtime +Depends: classpath, kaffe | j2re1.4 | java2-runtime Description: CVS Repository statistic analysis tool, written in Java StatCvs retrieves information from a CVS repository and generates various tables and charts describing the project development, diff --git a/debian/rules b/debian/rules index 65caabc..e5325b5 100755 --- a/debian/rules +++ b/debian/rules @@ -69,6 +69,8 @@ install: build javadoc # install -m 644 $(SRCDIR)/dist/$(LIBRARY).jar \ debian/tmp/usr/share/java/ + install -m 755 statcvs \ + debian/tmp/usr/bin # Build architecture-independent files here. binary-indep: build install @@ -82,7 +84,7 @@ binary-indep: build install # dh_installpam # dh_installinit # dh_installcron -# dh_installman + dh_installman statcvs.1 # dh_installinfo # dh_undocumented dh_installchangelogs diff --git a/debian/statcvs.dirs b/debian/statcvs.dirs index b67bc01..bbd7e93 100644 --- a/debian/statcvs.dirs +++ b/debian/statcvs.dirs @@ -1 +1,2 @@ /usr/share/java +/usr/bin diff --git a/statcvs b/statcvs new file mode 100755 index 0000000..196ef7a --- /dev/null +++ b/statcvs @@ -0,0 +1,10 @@ +#! /bin/sh +if [ -f /usr/lib/j2se/1.4/bin/java ] +then + /usr/lib/j2se/1.4/bin/java -jar /usr/share/java/statcvs.jar $@ +else + if [ -f /usr/bin/kaffe ] + then + /usr/bin/kaffe -classpath /usr/share/kaffe/Klasses.jar:/usr/share/classpath/glibj.zip -jar /usr/share/java/statcvs.jar $@ + fi +fi diff --git a/statcvs.1 b/statcvs.1 new file mode 100644 index 0000000..193ccda --- /dev/null +++ b/statcvs.1 @@ -0,0 +1,91 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH STATCVS 1 "juillet 20, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +statcvs \- CVS Repository statistic analysis tool, written in Java +.SH SYNOPSIS +.B statcvs +.RI [ options ] +.RI <logfile> +.RI <directory> +.br +.SH DESCRIPTION +This manual page documents briefly the +.B statcvs +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +Instead, it has documentation in the GNU Info format; see below. +.PP +.\" TeX users may be more comfortable with the \fB<whatever>\fP and +.\" \fI<whatever>\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBstatcvs\fP is a program that retrieves information from +a CVS repository and generates +various tables and charts describing +the project development, +e.g. timeline for the lines of code, +contribution of each developer +etc. +.br +The current version of StatCvs generates a static suite of +HTML documents containing tables and chart images. +StatCvs is opens source software, +released under the terms oft the LGPL. +.br +StatCvs uses JFreeChart to generate charts. +.TP +.B <logfile> +path to the cvs logfile of the module +.TP +.B <directory> +path to the directory of the checked out module + +.SH OPTIONS +These programs follow the usual command line syntax, with long +options starting with one dashe ("\-"). +A list of options is included below. +For a complete description, run the program without parameters +.TP +.B \-version +print the version information and exit +.TP +.B \-output\-dir <dir> +directory where HTML suite will be saved +.TP +.B \-include <pattern> +include only files matching pattern, e.g. **/*.c;**/*.h +.TP +.B \-exclude <pattern> +exclude matching files, e.g. tests/**;docs/** +.TP +.B \-title <title> +Project title to be used in reports +.TP +.B \-viewcvs <url> +integrate with ViewCVS installation at <url> +.TP +.B \-output\-dir <dir> +directory where HTML suite will be saved +.TP +.B \-verbose +print extra progress information +.SH SEE ALSO +.br +.SH AUTHOR +This manual page was written by Christian Bayle <[email protected]>, +for the Debian project (but may be used by others). -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/statcvs.git _______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

