debian/0000755000000000000000000000000012157164630007173 5ustar debian/watch0000644000000000000000000000016510774745421010234 0ustar version=3 opts=dversionmangle=s/\.dfsg// \ http://sf.net/statsvn/statsvn-(.*)-source.zip debian debian/new-upstream debian/rules0000755000000000000000000000137512156437524010265 0ustar #!/usr/bin/make -f # debian/rules for statsvn, based on the one from Batik (uses CDBS) include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/javahelper.mk include /usr/share/cdbs/1/class/ant.mk VERSION=$(subst .dfsg,,$(DEB_UPSTREAM_VERSION)) JAVA_HOME_DIRS := /usr/lib/jvm/default-java ANT_HOME := /usr/share/ant DEB_JARS := $(ANT_HOME)/lib/ant-launcher.jar \ junit jcommon jfreechart svnkit statcvs DEB_ANT_COMPILER := modern DEB_BUILDDIR := . DEB_ANT_BUILDFILE := build.xml DEB_ANT_CLEAN_TARGET := clean DEB_ANT_BUILD_TARGET := dist print-version: echo $(VERSION) echo $(DEB_UPSTREAM_VERSION) JH_INSTALLLIBS_ARGS = --upstream-version=$(VERSION) get-orig-source: uscan --force-download debian/control0000644000000000000000000000235512156437524010607 0ustar Source: statsvn Section: vcs Priority: optional Maintainer: Debian Java Maintainers Uploaders: Vincent Fourmond Build-Depends: cdbs, debhelper (>= 5), ant, libjcommon-java, libjfreechart-java, statcvs (>= 1:0.5.0), default-jdk, libsvnkit-java, libjdom1-java, javahelper (>= 0.36) Standards-Version: 3.9.4 Homepage: http://www.statsvn.org/ Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/statsvn Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/statsvn Package: statsvn Architecture: all Depends: java-gcj-compat | java-runtime, ${java:Depends}, statcvs (>= 1:0.7.0.dfsg-4~), subversion, java-wrappers (>= 0.1.22), ${misc:Depends} Description: SVN repository statistics StatSVN retrieves information from a Subversion repository and generates various tables and charts describing the project evolution, e.g. the lines of code over time, contribution of each developer, the evolution of modules, directories, files, the time and days when most checkins happen, etc. It also shows the commit logs and integrates out of the box with ViewVc, BugZilla, Chora and others. . StatSVN generates a static suite of HTML or XDoc documents containing tables and chart images. debian/README.source0000644000000000000000000000101312156437524011351 0ustar Note about the source package of statsvn The upstream source was repackaged to remove: * binary only jar files shipped in lib/ * contents of the bin/ directory * tests-src/, without 'sources' and copyrights for most * site/ also without 'sources' and copyrights * src/.../jtreemap-*.jar, binary library without sources The debian/new-upstream script from the source package was used to repackage the upstream zip file after download. -- Vincent Fourmond , Mon, 22 Jun 2009 20:20:55 +0200 debian/manpages/0000755000000000000000000000000012157164630010766 5ustar debian/manpages/statsvn.10000644000000000000000000002325712156437524012567 0ustar .\" 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 STATSVN 1 "03-04-2008" .\" 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 insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME statsvn \- SVN repository statistic analysis tool .SH SYNOPSIS .B svn log --xml -v .I path/to/repos .B > .I svn-logfile.xml .B statsvn .I [options] svn-logfile path/to/repos .SH DESCRIPTION This manual page documents the .B statsvn command. This manual page was written for the Debian distribution because the original program does not have a manual page. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. .B statsvn is a program that retrieves information from a SVN 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 .B statsvn generates a static suite of HTML documents containing tables and chart images. .B statsvn is opens source software, released under the terms oft the LGPL. .B statsvn is based on .BR statcvs (1) (hence the striking similarity between their interfaces and manual pages) and uses JFreeChart to generate charts. .TP .I svn-log-file path to the output of .B svn log --xml -v for the given repository. .B IMPORTANT NOTE: do not forget the .B -v option, else .B statsvn will crash !!! .TP .I path/to/repos path to a checkout of the repository. .SH OPTIONS These programs follow the usual command line syntax, with long options starting with one dash ("\-"). A list of common options is included below. For more up-to-date information, see .BR statsvn 's website. .SS General Options .TP .BI -output-dir \ Specify an output directory. The reports will be generated in this directory. The directory will be created if it doesn't exist. .TP .BI -include \ .TP .BI -exclude \ Specify filters to exclude files from the analysis. A file will be ignored if it doesn't match any of the patterns in .I include-pattern-list\fR, or if it matches any pattern in .IR exclude-pattern-list . The patterns are lists of Apache Ant-style wildcard patterns, separated by colons or semicolons. The wildcards are: * '?' matches a single character * '*' matches zero or more characters * '**' matches zero or more directories For example, src/**/*.java matches all java files in the src directory or its subdirectories. Note that *.java only matches java files in the root directory, because '*' does not match subdirectories. One more example: .I -include "**/*.c:**/*.h" -exclude "legacy/**" This matches all .c and .h files anywhere in the directory tree except those in the legacy directory and its subdirectories. For more information on Ant's wildcard syntax, see the Patternset section of the Ant manual. If not specified, all files will be included and no files will be excluded. .B Note\fR: Unix users must put the patterns in quotes, or the shell will interfere with the wildcards. .TP .BI -cache-dir \ Specify a cache directory for information retrieved from the Subversion server (e.g. line counts). The data will be saved in this directory. The directory will be created if it doesn't exist. By default, the current user directory is used. .TP .BI -username \ Specify a username to use when connecting to the Subversion server. .TP .BI -password \ Specify a password to use when connecting to the Subversion server. .TP .BI -tags \ Includes information about Subverison tags into the reports. Only tags matching the regular expression are included. To include all tags, add \-tags '.*' to the command line. .B Note: \fR Unix users must put the expression in quotes, or the shell will interfere with the wildcards. .B Note: \fR Tags are determined by looking at your repository's /tags directory. To be able to use this feature, you must generate the log file from the root of your repository, so that the log contains information from both the /tags and the /trunk. The checked out version does not have to contain the tags directory. .TP .BI -tags-dir \ Specifies the root directory from which the tags regular expression is evaluated. The default \-tags-dir is /tags/ .TP .BI -no-developer \ Excludes a Subversion account name from all developer reports. This is useful to reduce noise from administrative and other non-developer accounts. Multiple accounts can be excluded by adding the option to the command line once for each account. .SS Report Options .TP .BI -xdoc Generate Maven XDoc instead of HTML. This allows Maven and Maven 2 to integrate the reports when it generates the projects Maven site. Reports could be placed, for example, into src/site/statsvn. .TP .BI -xml Generate XML instead of HTML. .TP .BI -css \ Optional (default varies for html or xdoc). Specify a Cascading Style Sheet for the report. This can be a HTTP URL or a local file. A URL will simply be linked in every page of the report. A local file will be copied into the report directory. .TP .BI -notes \ The contents of the specified file will be included at the top of the report's index page. The file should contain a valid block-level HTML fragment, for example:

These are development statistics for the StatSVN project, created by StatSVN itself.

Note: This report was generated by an unreleased development version of StatSVN. It might contain features not yet found in the official release.

.TP .BI -title \ Specifies a display title to be used in the reports. The name of the Subversion module will be used as default if no title is specified. .TP .BI -config-file \ <path-to-properties-file> Allows one to replace the source control username with more information such as real name, website, email and avatar icon. See this file for an example. .TP .BI -charset \ <charSet> Specifies the charset to use in HTML or XDOC output. ISO-8859-1 will be used as default if no charset is specified. .TP .BI -disable-twitter-button if present, exclude the Twitter "Tweet This" buttons from the output. .SS Options for Integration with External Tools .TP .BI -bugzilla Specify the URL of a root of a Bugzilla installation. Will replace 'Bug ###' in commit logs with a link to the appropriate bug. (New in StatSVN) .TP .BI -chora \ <chora-url> Specify the URL of a Chora installation for the module. This must be the URL of the page for the module's root directory. StatSVN will create links to Chora for directories, files and revisions. .TP .BI -viewvc \ <viewvc-url> Specify the URL of a ViewVC installation for the module. This must be the URL of the page for the module's root directory. StatSVN will create links to ViewVC for directories, files and revisions. .TP .BI -mantis \ <mantis-url> Specify the root URL of a Mantis bug tracker installation. In commit messages, this will turn “Bug ####” into a link to the appropriate bug. .TP .BI -trac \ <trac-url> Specify the root URL of a Trac installation. In commit messages, this will turn “Bug ####” into a link to the appropriate bug. .SS Miscellaneous Options .TP .BI -debug Output lots of additional progress information. .TP .BI -verbose Output additional progress information. .TP .BI -version Output the version of StatSVN. .TP .BI -dump Will output the repository content on console and stop .TP .BI -concurrency-threshold \ <millisec> Switch to concurrent svn diff if the first call takes more than the threshold (in milliseconds) (default: 4000) .TP .BI -threads \ <int> How many threads for svn diff (default: 25) .TP .BI -anonymize Anonymizes committer names. .SH IMPORTANT NOTES Unlike its cousin .BR statcvs (1), .B statsvn can work on distant repositories. Please note however, that .B statsvn needs to download many diffs from the repository, so it is often more network-efficient to simply .BR rsync (1) the repository to a local host and run it on the local copy. To compensate for that, however, diffs are cached in the .I $HOME/.statsvn directory. .B Do not forget the -v option to svn diff ! Finally, note that the default value for the number of concurrent .BR svn (1) processes might be too much for the target host. If you get weird error messages about unreachable hosts and similar problems, try taking down the .I \-threads parameter. .SH JAVA-WRAPPERS NOTE This program is a shell script wrapper based on .BR java-wrappers (7). You therefore benefit from several features; please see the .BR java-wrappers (7) manual page for more information about them. .SH SEE ALSO .BR svn (1), .BR statcvs (1) and .BR java-wrappers (7) .BR statsvn 's website at .IR http://www.statsvn.org , and most particularly the user manual at .IR http://svn.statsvn.org/statsvnwiki/index.php/User_Manual . .SH AUTHOR This manual page was adapted by Vincent Fourmond <fourmond@debian.org> from the one for .BR statcvs (1) written by Christian Bayle <bayle@debian.org>. It was written for the Debian project, but may be used by others. �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/statsvn.manpages�����������������������������������������������������������������������������0000644�0000000�0000000�00000000031�10763351507�012406� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/manpages/statsvn.1�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/�������������������������������������������������������������������������������������0000755�0000000�0000000�00000000000�12157164630�010622� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/20-disable-jtreemap.diff�������������������������������������������������������������0000755�0000000�0000000�00000001601�11345264537�015111� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#! /bin/sh /usr/share/dpatch/dpatch-run ## 20-disable-jtreemap.dpatch by <fourmond@debian.org> ## ## DP: Disable the jtreemap-based report @DPATCH@ diff -urNad statsvn-0.3.1.dfsg~/src/net/sf/statsvn/Main.java statsvn-0.3.1.dfsg/src/net/sf/statsvn/Main.java --- statsvn-0.3.1.dfsg~/src/net/sf/statsvn/Main.java 2007-03-10 12:09:58.000000000 +0100 +++ statsvn-0.3.1.dfsg/src/net/sf/statsvn/Main.java 2008-03-04 21:10:31.000000000 +0100 @@ -291,7 +291,9 @@ } else { // add new reports List extraReports = new ArrayList(); - extraReports.add(new RepoMapPageMaker(config).toFile()); + // Disabling RepoMapPageMaker as jtreemap is not + // available for Debian + // extraReports.add(new RepoMapPageMaker(config).toFile()); extraReports.add(new ChurnPageMaker(config).toFile()); new ReportSuiteMaker(config, ConfigurationOptions.getNotes(), extraReports).toFile().write(); �������������������������������������������������������������������������������������������������������������������������������debian/patches/20-remove-backport-util-concurrent.diff����������������������������������������������0000644�0000000�0000000�00000001316�12156437524�020133� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Description: Replace the classes from backport-util-concurrent with their equivalent in the JDK Author: Emmanuel Bourg <ebourg@apache.org> --- a/src/net/sf/statsvn/input/SvnLogfileParser.java +++ b/src/net/sf/statsvn/input/SvnLogfileParser.java @@ -51,9 +51,9 @@ import org.xml.sax.SAXException; -import edu.emory.mathcs.backport.java.util.concurrent.ExecutorService; -import edu.emory.mathcs.backport.java.util.concurrent.Executors; -import edu.emory.mathcs.backport.java.util.concurrent.TimeUnit; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.TimeUnit; /** * Parses a Subversion logfile and does post-parse processing. A {@link Builder} ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/10-build-xml-classpath.diff����������������������������������������������������������0000755�0000000�0000000�00000001530�11345264537�015556� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#! /bin/sh /usr/share/dpatch/dpatch-run ## 10-build-xml-jarpaths.dpatch by <fourmond@debian.org> ## ## DP: Fix classpath to debian-specific values @DPATCH@ Index: statsvn-0.7.0.dfsg/build.xml =================================================================== --- statsvn-0.7.0.dfsg.orig/build.xml 2009-08-17 16:01:36.000000000 +0200 +++ statsvn-0.7.0.dfsg/build.xml 2010-03-08 20:25:39.047528376 +0100 @@ -24,9 +24,11 @@ <path id="project.class.path"> <pathelement path="${java.class.path}" /> - <fileset dir="${lib}"> - <include name="**/*.jar" /> - </fileset> + <pathelement path="/usr/share/java/statcvs.jar" /> + <pathelement path="/usr/share/java/jfreechart.jar" /> + <pathelement path="/usr/share/java/jcommon.jar" /> + <pathelement + path="/usr/share/java/backport-util-concurrent.jar" /> </path> <target name="clean"> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/series�������������������������������������������������������������������������������0000644�0000000�0000000�00000000145�12156437524�012043� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������10-build-xml-classpath.diff 15-build-xml-build-jar-only.diff 20-remove-backport-util-concurrent.diff ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/15-build-xml-build-jar-only.diff�����������������������������������������������������0000755�0000000�0000000�00000002342�11546360620�016424� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#! /bin/sh /usr/share/dpatch/dpatch-run ## 15-build-xml-build-jar-only.dpatch by <fourmond@debian.org> ## ## DP: Only build the jar file during the build @DPATCH@ Index: statsvn-0.7.0.dfsg/build.xml =================================================================== --- statsvn-0.7.0.dfsg.orig/build.xml 2011-04-04 17:02:57.269898047 +0200 +++ statsvn-0.7.0.dfsg/build.xml 2011-04-04 17:04:41.013898105 +0200 @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<project name="statsvn" default="all" basedir="."> +<project name="statsvn" default="jar" basedir="."> <property file="project.properties" /> <property name="project" value="statsvn" /> @@ -132,15 +132,6 @@ </target> <target name="dist" depends="compile,copyfiles"> - <!-- Creates an executable jar file for the project --> - <unjar src="${lib}/${statcvs.jar}" dest="${build}" /> - <!-- Expand and use the concurrent JAR --> - <unjar src="${lib}/${concurrent.jar}" dest="${build}" /> - - <!-- Now included in statcvs.jar --> - <!--<unjar src="${lib}/${jfreechart.jar}" dest="${build}" /> - <unjar src="${lib}/${jcommon.jar}" dest="${build}" />--> - <mkdir dir="${dist}" /> <jar jarfile="${dist}/${project.jar}" basedir="${build}"> <manifest> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/statsvn.classpath����������������������������������������������������������������������������0000644�0000000�0000000�00000000122�12156437524�012600� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������usr/share/java/statsvn.jar /usr/share/java/statcvs.jar /usr/share/java/svnkit.jar ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/statsvn.dirs���������������������������������������������������������������������������������0000644�0000000�0000000�00000000032�10762345652�011560� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/usr/share/java /usr/bin ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/copyright������������������������������������������������������������������������������������0000644�0000000�0000000�00000002351�12157164410�011123� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: StatSVN Source: http://www.statsvn.org Files: * Copyright: 2002, Lukasz Pekacki <lukasz@pekacki.de> 2005, ObjectLab Financial Ltd 2006, Benoit Xhenseval License: LGPL-2.1+ Files: debian/* Copyright: 2008-2011, Vincent Fourmond <fourmond@debian.org> License: LGPL-2.1+ License: LGPL-2.1+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . . On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/new-upstream���������������������������������������������������������������������������������0000755�0000000�0000000�00000001717�11345264537�011563� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/bin/sh # # new-upstream: copyright 2007 by Vincent Fourmond. # See debian/copyright file for details. # # Called by uscan; from uscan(1): # # Finally, if a third parameter (an action) is given in the watchfile # line, this is taken as the name of a command, and the command # command --upstream-version version filename # # is executed, using either the original file or the symlink name. # # Thanks to Sam Morris <sam@robots.org.uk> for giving me the idea # version=$2 filename=$3 dir=`mktemp -d` # We repackage the upstream source zip file: unzip $filename -d $dir origname=statsvn_$version.dfsg.orig.tar.bz2 # We repackage excluding the lib/ subdir -- and various other ones cd $dir tar cvj \ --exclude '*/lib/*.jar' \ --exclude 'bin' \ --exclude '*jtreemap*.jar' \ --exclude 'tests-src' \ --exclude 'site' \ --exclude 'src-temp' \ --exclude 'build' \ --exclude 'doc' \ -f $origname stat* cd - mv $dir/$origname .. rm -rf $dir�������������������������������������������������debian/changelog������������������������������������������������������������������������������������0000644�0000000�0000000�00000011253�12156437524�011053� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������statsvn (0.7.0.dfsg-7) unstable; urgency=low * Team upload. * Removed the dependency on libbackport-util-concurrent-java * debian/control: - Updated Standards-Version to 3.9.4 (no changes) - Use canonical URLs for the Vcs-* fields * Fixed syntax and spellings errors in the manpages * debian/rules: Added a get-orig-source target * debian/copyright: Updated to follow the Copyright Format 1.0 -- Emmanuel Bourg <ebourg@apache.org> Thu, 13 Jun 2013 23:33:35 +0200 statsvn (0.7.0.dfsg-6) unstable; urgency=low * Rebuild with javahelper >= 0.36 to avoid the statsvn.jar not being a symlink anymore -- Vincent Fourmond <fourmond@debian.org> Sat, 04 Jun 2011 20:49:11 +0200 statsvn (0.7.0.dfsg-5) unstable; urgency=low * Fix jar path for the call to jh_classpath * Conforms to standards 3.9.2 * Tighten up dependencies on statcvs, as old versions didn't have a proper classpath * Uploading to unstable -- Vincent Fourmond <fourmond@debian.org> Wed, 11 May 2011 00:47:35 +0200 statsvn (0.7.0.dfsg-4) experimental; urgency=low * Now using javahelper, thanks to mjj29 ! * Now specifying a real classpath * Letting java-wrappers find the classpath itself. * Now almost using upstream target for building the jar -- Vincent Fourmond <fourmond@debian.org> Mon, 04 Apr 2011 17:12:20 +0200 statsvn (0.7.0.dfsg-3) unstable; urgency=low * Add libjdom1-java to dependencies + add jdom1 in the classpath to fix class not found exception when generating XML (closes: #616412) * Tighten up dependencies on more recent versions of java-wrapper -- Vincent Fourmond <fourmond@debian.org> Wed, 23 Mar 2011 11:01:07 +0100 statsvn (0.7.0.dfsg-2) unstable; urgency=low * Pull option documentation from upstream's wiki: http://wiki.statsvn.org/Default.aspx?Page=User Manual (closes: 576664) Thanks to Mathieu Malaterre for pointing out. -- Vincent Fourmond <fourmond@debian.org> Tue, 06 Apr 2010 22:24:27 +0200 statsvn (0.7.0.dfsg-1) unstable; urgency=low * New upstream release (closes: #572613) * Switch to source format 3.0 (quilt) * Drop build-dependency on dpatch, now unneeded * Now conforms to standards 3.8.4 * Switch to a dependency on default-jdk for building * Now depends on libsvnkit-java * Manual page updates. -- Vincent Fourmond <fourmond@debian.org> Tue, 16 Mar 2010 21:32:06 +0100 statsvn (0.5.0.dfsg-1) unstable; urgency=low * New upstream release * Updated the debian/new-upstream script to remove extraneous files. * Moved to the new section vcs * Needs statcvs 0.5.0 or later. * Added ${misc:Depends} for debhelper-induced dependencies * Bumped debhelper compatibility level to 5 * Added a debian/README.source file to explain the patch system * Now conforms to standards 3.8.2 -- Vincent Fourmond <fourmond@debian.org> Mon, 22 Jun 2009 20:32:34 +0200 statsvn (0.4.0.dfsg-1) unstable; urgency=low * New upstream version (closes: #481799) * Does not work with older statcvs, tightening up dependencies * statsvn still complains about files with spaces within, but it does not seem to affect statistics anymore, so it closes: #469937,#469938 -- Vincent Fourmond <fourmond@debian.org> Sat, 28 Jun 2008 15:53:07 +0200 statsvn (0.3.1.dfsg+1-1) unstable; urgency=low [ Michael Koch ] * Updated watch file to remove ".dfsg" part from debian version before comparison. [ Vincent Fourmond ] * Now that statcvs has moved to main, statsvn also works fine within main; moving there (closes: #469820) -- Vincent Fourmond <fourmond@debian.org> Sat, 19 Apr 2008 21:13:17 +0200 statsvn (0.3.1.dfsg-3) unstable; urgency=low * The 'Whoa I never uploaded two versions that close together' release * statsvn must of course Depend on java-wrappers... (closes: #470394) -- Vincent Fourmond <fourmond@debian.org> Mon, 10 Mar 2008 23:40:29 +0100 statsvn (0.3.1.dfsg-2) unstable; urgency=low * Move subversion to Depends, as it is truly required * Document -tags in the manual page, patch courtesy of Emmanuel Fleury <fleury@labri.fr> (closes: #470252) -- Vincent Fourmond <fourmond@debian.org> Mon, 10 Mar 2008 23:08:05 +0100 statsvn (0.3.1.dfsg-1) unstable; urgency=low * Initial release (Closes: 456250) * 10-build-xml-classpath to get it to build with debian packages * 15-build-xml-build-jar-only to tweak the build system to get a jar containing only statsvn code (and not many more as upstreams'). * 20-disable-jtreemap to disable the jtreemap-based report, as jtreemap is not currently packaged for Debian * Wrote a manual page, based on the one from statcvs * Updated FSF's address in debian/copyright -- Vincent Fourmond <fourmond@debian.org> Wed, 05 Mar 2008 00:29:20 +0100 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/statsvn.jlibs��������������������������������������������������������������������������������0000644�0000000�0000000�00000000020�11546360620�011710� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������dist/statsvn.jar����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/compat���������������������������������������������������������������������������������������0000644�0000000�0000000�00000000001�11217752107�010366� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������5�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/statsvn.install������������������������������������������������������������������������������0000644�0000000�0000000�00000000037�11546360620�012263� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/wrappers/statsvn usr/bin�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/source/��������������������������������������������������������������������������������������0000755�0000000�0000000�00000000000�12157164630�010473� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/source/format��������������������������������������������������������������������������������0000644�0000000�0000000�00000000014�11345264537�011706� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������3.0 (quilt) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/wrappers/������������������������������������������������������������������������������������0000755�0000000�0000000�00000000000�12157164630�011036� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/wrappers/statsvn�����������������������������������������������������������������������������0000755�0000000�0000000�00000000403�11546360620�012461� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/bin/sh # Include the wrappers utility script . /usr/lib/java-wrappers/java-wrappers.sh # We first look for sun's runtime, and then for all the rest find_java_runtime sun || find_java_runtime find_jar_classpath statsvn run_java net.sf.statsvn.Main "$@" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/README.Debian��������������������������������������������������������������������������������0000644�0000000�0000000�00000000452�10763326756�011247� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Notes to Debian users: * the jtreemap-based report has been disabled as jtreemap is currently not packaged for Debian, and Debian cannot ship the applet without its sources (not included in statsvn's sources). -- Vincent Fourmond <fourmond@debian.org>, Tue, 4 Mar 2008 21:14:14 +0100 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������