1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#! /bin/sh -e
##
## DP: Debian specific patch, converted from eclipse-cvs-ssh-jsch.patch
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
if [ $# -ne 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
case "$1" in
-patch)
patch $patch_opts -p0 < $0;;
-unpatch)
patch $patch_opts -p0 -R < $0;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1;;
esac
exit 0
@DPATCH@
--- source-tree/plugins/org.eclipse.team.cvs.ssh2/build.xml.orig 2005-06-08 06:51:37.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/build.xml 2005-06-08 06:52:01.000000000 +0000
@@ -177,8 +177,8 @@
<pathelement path="${build.result.folder}/../org.eclipse.ui.workbench.compatibility/@dot"/>
<pathelement path="${build.result.folder}/../org.eclipse.core.expressions/@dot"/>
<pathelement path="${build.result.folder}/../org.eclipse.team.cvs.ssh/@dot"/>
- <pathelement path="jsch-0.1.18.jar"/>
- <pathelement path="${build.result.folder}/../org.eclipse.team.cvs.ssh2/jsch-0.1.18.jar"/>
+ <pathelement path="jsch-0.1.28.jar"/>
+ <pathelement path="${build.result.folder}/../org.eclipse.team.cvs.ssh2/jsch-0.1.28.jar"/>
</classpath>
<src path="src/" />
</javac>
diff -Naur source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/about.html source-tree/plugins/org.eclipse.team.cvs.ssh2/about.html
--- source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/about.html 2005-06-27 18:55:12.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/about.html 2005-07-08 13:12:31.000000000 +0000
@@ -22,12 +22,12 @@
<p>The Content includes items that have been sourced from third parties as follows:</p>
-<h4>JSch 0.1.18</h4>
+<h4>JSch 0.1.28</h4>
<p>The plug-in is based on software developed by Atsuhiko Yamanaka, JCraft, Inc., and others and
made available at <a href="http://www.jcraft.com/">http://www.jcraft.com/</a>.
-<p>The file jsch-0.1.18.jar and all its contents shall be defined as the "JSch".</p>
+<p>The file jsch-0.1.28.jar and all its contents shall be defined as the "JSch".</p>
<p>Use of JSch is governed by the terms and conditions of the following license:</p>
diff -Naur source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/build.properties source-tree/plugins/org.eclipse.team.cvs.ssh2/build.properties
--- source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/build.properties 2005-06-27 18:54:11.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/build.properties 2005-07-08 13:12:26.000000000 +0000
@@ -16,4 +16,4 @@
META-INF/
src.includes = about.html
source.cvsssh2.jar = src/
-extra.cvsssh2.jar=jsch-0.1.18.jar
+extra.cvsssh2.jar=jsch-0.1.28.jar
diff -Naur source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/.classpath source-tree/plugins/org.eclipse.team.cvs.ssh2/.classpath
--- source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/.classpath 2005-06-27 18:54:10.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/.classpath 2005-07-08 13:12:12.000000000 +0000
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
- <classpathentry kind="lib" path="jsch-0.1.18.jar"/>
+ <classpathentry kind="lib" path="jsch-0.1.28.jar"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
diff -Naur source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/META-INF/MANIFEST.MF source-tree/plugins/org.eclipse.team.cvs.ssh2/META-INF/MANIFEST.MF
--- source-tree/plugins/org.eclipse.team.cvs.ssh2.orig/META-INF/MANIFEST.MF 2005-06-27 18:54:10.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/META-INF/MANIFEST.MF 2005-07-08 13:12:23.000000000 +0000
@@ -4,7 +4,7 @@
Bundle-SymbolicName: org.eclipse.team.cvs.ssh2; singleton:=true
Bundle-Version: 3.1.0
Bundle-ClassPath: cvsssh2.jar,
- jsch-0.1.18.jar
+ jsch-0.1.28.jar
Bundle-Activator: org.eclipse.team.internal.ccvs.ssh2.CVSSSH2Plugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
|