[pkg-java] r17061 - in trunk/jta: . debian debian/patches
Emmanuel Bourg
ebourg-guest at alioth.debian.org
Thu Jul 25 09:37:13 UTC 2013
Author: ebourg-guest
Date: 2013-07-25 09:37:12 +0000 (Thu, 25 Jul 2013)
New Revision: 17061
Removed:
trunk/jta/de/
trunk/jta/debian/patches/fix_build.patch
Modified:
trunk/jta/debian/changelog
trunk/jta/debian/control
trunk/jta/debian/patches/series
Log:
Removed Michael Koch from the uploaders (Closes: #654039)
Updated Standards-Version to 3.9.4 (no changes)
Use canonical URLs for the Vcs-* fields
Removed the obsolete dependency on libcrimson-java
Removed fix_build.patch since Ant is used instead of make
Modified: trunk/jta/debian/changelog
===================================================================
--- trunk/jta/debian/changelog 2013-07-24 23:15:02 UTC (rev 17060)
+++ trunk/jta/debian/changelog 2013-07-25 09:37:12 UTC (rev 17061)
@@ -1,3 +1,13 @@
+jta (2.6+dfsg-6) unstable; urgency=low
+
+ * Removed Michael Koch from the uploaders (Closes: #654039)
+ * Updated Standards-Version to 3.9.4 (no changes)
+ * Use canonical URLs for the Vcs-* fields
+ * Removed the obsolete dependency on libcrimson-java
+ * Removed fix_build.patch since Ant is used instead of make
+
+ -- Emmanuel Bourg <ebourg at apache.org> Thu, 25 Jul 2013 11:34:11 +0200
+
jta (2.6+dfsg-5) unstable; urgency=low
[ tony mancill ]
Modified: trunk/jta/debian/control
===================================================================
--- trunk/jta/debian/control 2013-07-24 23:15:02 UTC (rev 17060)
+++ trunk/jta/debian/control 2013-07-25 09:37:12 UTC (rev 17061)
@@ -2,19 +2,18 @@
Section: net
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Michael Koch <konqueror at gmx.de>
+Uploaders: Emmanuel Bourg <ebourg at apache.org>
Build-Depends: debhelper (>= 7), ant, cdbs, default-jdk
-Build-Depends-Indep: libxerces2-java, libgnu-regexp-java, libcrimson-java,
- libjdom1-java, default-jdk-doc
-Standards-Version: 3.9.2
-Homepage: http://www.javassh.org/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jta
-Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/jta/
+Build-Depends-Indep: libxerces2-java, libgnu-regexp-java, libjdom1-java, default-jdk-doc
+Standards-Version: 3.9.4
+Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/jta
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/jta/
+Homepage: http://www.javassh.org
Package: jta
Architecture: all
-Depends: libgnu-regexp-java, libcrimson-java, libjdom1-java, ${misc:Depends}
+Depends: libgnu-regexp-java, libjdom1-java, ${misc:Depends}
Suggests: jta-doc
Description: Java telnet/ssh applet
JTA is a Java implementation of Telnet and ssh.
Deleted: trunk/jta/debian/patches/fix_build.patch
===================================================================
--- trunk/jta/debian/patches/fix_build.patch 2013-07-24 23:15:02 UTC (rev 17060)
+++ trunk/jta/debian/patches/fix_build.patch 2013-07-25 09:37:12 UTC (rev 17061)
@@ -1,90 +0,0 @@
-Description: Build package with binaries located in $JAVA_HOME
-Author: Arnaud Vandyck <avdyk at debian.org>
-Forwarded: no
-Last-Update: 2011-09-27
-
---- jta-2.6+dfsg.orig/Makefile
-+++ jta-2.6+dfsg/Makefile
-@@ -1,6 +1,6 @@
--# This file is part of "JTA - Telnet/SSH for the JAVA(tm) platform".
-+# This file is part of "The Java Telnet Application".
- #
--# (c) Matthias L. Jugel, Marcus MeiÃner 1996-2005. All Rights Reserved.
-+# (c) Matthias L. Jugel, Marcus Meißner 1996-2002. All Rights Reserved.
- #
- # Please visit http://javatelnet.org/ for updates and contact.
- #
-@@ -14,18 +14,19 @@
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
--#
-+#
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- # --LICENSE NOTICE--
- #
-
--JAVA = java
--JAR = jar
--JAVAC = javac
--JAVADOC = javadoc
--JAVAH = javah
-+#JAVA_HOME=/usr/local/IBMJava2-ppc-142
-+JAVA = $(JAVA_HOME)/bin/java
-+JAR = $(JAVA_HOME)/bin/jar
-+JAVAC = $(JAVA_HOME)/bin/javac
-+JAVADOC = $(JAVA_HOME)/bin/javadoc
-+JAVAH = $(JAVA_HOME)/bin/javah
- #JAVA = /q/opt/jdk1.2.2/bin/java
- #JAR = /q/opt/jdk1.2.2/bin/jar
- #JAVAC = /q/opt/jdk1.2.2/bin/javac
-@@ -34,7 +35,7 @@ JAVAH = javah
- DEBUG = -g
- JFLAGS = -classpath $(CLASSPATH):jar/org.apache.crimson.jar:jar/jdom.jar:jar/gnu-regexp-1.0.8.jar:.
- SRCDIR = de
--PKGNAME = jta20
-+PKGNAME = jta25
- VERSION = `java -version 2>&1 | head -1 | \
- sed 's/^java version //' | sed 's/"//g'`
- DATE = `date +%Y%m%d-%H%M`
---- jta-2.6+dfsg.orig/de/mud/jta/Build.java
-+++ jta-2.6+dfsg/de/mud/jta/Build.java
-@@ -1,35 +1 @@
--/*
-- * This file is part of "JTA - Telnet/SSH for the JAVA(tm) platform".
-- *
-- * (c) Matthias L. Jugel, Marcus MeiÃner 1996-2005. All Rights Reserved.
-- *
-- * Please visit http://javatelnet.org/ for updates and contact.
-- *
-- * --LICENSE NOTICE--
-- * This program is free software; you can redistribute it and/or
-- * modify it under the terms of the GNU General Public License
-- * as published by the Free Software Foundation; either version 2
-- * of the License, or (at your option) any later version.
-- *
-- * This program 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 General Public License for more details.
-- *
-- * You should have received a copy of the GNU General Public License
-- * along with this program; if not, write to the Free Software
-- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-- * --LICENSE NOTICE--
-- *
-- */
--
--package de.mud.jta;
--
--/**
-- * The build class shows the date and time if the release
-- */
--public class Build implements Version {
-- public String getDate() {
-- return "20051219-0941";
-- }
--}
-+package de.mud.jta; public class Build implements Version { public String getDate() { return "20040522-1320"; } }
Modified: trunk/jta/debian/patches/series
===================================================================
--- trunk/jta/debian/patches/series 2013-07-24 23:15:02 UTC (rev 17060)
+++ trunk/jta/debian/patches/series 2013-07-25 09:37:12 UTC (rev 17061)
@@ -1,2 +1 @@
help-file.patch
-fix_build.patch
More information about the pkg-java-commits
mailing list