This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository statcvs.
commit c40d40e499c127c40f60d0efa98c811f3019fccf Author: Vincent Fourmond <[email protected]> Date: Thu Apr 10 21:31:48 2008 +0000 [statcvs] Ready for main ! --- cvslognewformat.patch | 33 --------------------------------- debian/changelog | 9 ++++++--- debian/control | 4 ++-- debian/manpages/statcvs.1 | 3 --- debian/wrappers/statcvs | 4 ++-- 5 files changed, 10 insertions(+), 43 deletions(-) diff --git a/cvslognewformat.patch b/cvslognewformat.patch deleted file mode 100644 index 5d6cd87..0000000 --- a/cvslognewformat.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- statcvs-20030713/src/net/sf/statcvs/util/DateUtils.java 2003-04-13 17:04:49.000000000 -0600 -+++ statcvs-20030713/src/net/sf/statcvs/util/DateUtils.java 2004-08-16 13:16:33.000000000 -0600 -@@ -38,10 +38,14 @@ - public class DateUtils { - private static final String LOG_TIMESTAMP_FORMAT = - "yyyy/MM/dd HH:mm:ss zzz"; -+ private static final String LOG_TIMESTAMP_FORMAT_NEW = -+ "yyyy-MM-dd HH:mm:ss Z zzz"; - private static final Locale LOG_TIMESTAMP_LOCALE = Locale.US; - - private static SimpleDateFormat logTimeFormat = - new SimpleDateFormat(LOG_TIMESTAMP_FORMAT, LOG_TIMESTAMP_LOCALE); -+ private static SimpleDateFormat logTimeFormatNew = -+ new SimpleDateFormat(LOG_TIMESTAMP_FORMAT_NEW, LOG_TIMESTAMP_LOCALE); - private static SimpleDateFormat outputDateFormat = - new SimpleDateFormat(Messages.getString("DATE_FORMAT")); - private static SimpleDateFormat outputDateTimeFormat = -@@ -81,10 +85,13 @@ - */ - public static Date convertFromLogTime(String modTime) { - try { -+ if (modTime.indexOf('-') > 0) -+ return logTimeFormatNew.parse(modTime); -+ - return logTimeFormat.parse(modTime); - } catch (ParseException e) { - // fallback is to return null - return null; - } - } --} -\ No newline at end of file -+} diff --git a/debian/changelog b/debian/changelog index 2fa0718..881c8ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,12 @@ -statcvs (1:0.3.dfsg-3) UNRELEASED; urgency=low +statcvs (1:0.3.dfsg-3) unstable; urgency=low - * NOT RELEASED YET * Fix manual page: statcvs does not have info documentation ! + * Fix another glitch in manual page + * statcvs can now move to main (Closes: #463520) + * Remove last remaining file not in the debian/ subdir, + so lintian is happy - -- Vincent Fourmond <[email protected]> Tue, 04 Mar 2008 23:44:31 +0100 + -- Vincent Fourmond <[email protected]> Thu, 10 Apr 2008 23:25:02 +0200 statcvs (1:0.3.dfsg-2) unstable; urgency=low diff --git a/debian/control b/debian/control index 2d2cadd..2bde22b 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Source: statcvs -Section: contrib/devel +Section: devel Priority: optional Maintainer: Debian Java Maintainers <[email protected]> Uploaders: Vincent Fourmond <[email protected]>, Christian Bayle <[email protected]> @@ -14,7 +14,7 @@ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/statcvs Package: statcvs Architecture: all -Depends: sun-java5-jre | sun-java6-jre | j2re1.6 | j2re1.5, libjcommon-java, +Depends: java-gcj-compat | java-runtime, libjcommon-java, libjfreechart-java, java-wrappers (>= 0.1.3) Recommends: cvs Description: CVS Repository statistic analysis tool, written in Java diff --git a/debian/manpages/statcvs.1 b/debian/manpages/statcvs.1 index ca06f82..5b70cd1 100644 --- a/debian/manpages/statcvs.1 +++ b/debian/manpages/statcvs.1 @@ -78,9 +78,6 @@ Project title to be used in reports .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 diff --git a/debian/wrappers/statcvs b/debian/wrappers/statcvs index 7a97b22..c52a554 100755 --- a/debian/wrappers/statcvs +++ b/debian/wrappers/statcvs @@ -3,8 +3,8 @@ # Include the wrappers utility script . /usr/lib/java-wrappers/java-wrappers.sh -# We unfortunately need sun's runtime -find_java_runtime sun || echo "[WARNING] statcvs currently still needs Sun's java, it probably won't work properly if at all" >&2 +# We first look for sun's runtime, and then for all the rest +find_java_runtime sun || find_java_runtime find_jars jfreechart jcommon statcvs run_java net.sf.statcvs.Main "$@" -- 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

