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
|
#! /bin/sh -e
##
## DP: Debian specific patch, converted from eclipse-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.core/build.xml.orig 2006-08-02 16:35:47.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.core/build.xml 2006-08-02 16:36:24.000000000 +0000
@@ -116,7 +116,7 @@
<pathelement path="../org.eclipse.core.filesystem.win32.x86/@dot"/>
<pathelement path="${build.result.folder}/../org.eclipse.core.filesystem.win32.x86/@dot"/>
<pathelement path="${build.result.folder}/../org.eclipse.team.core/@dot"/>
- <pathelement path="../../baseLocation/plugins/com.jcraft.jsch_0.1.28.jar"/>
+ <pathelement path="/usr/share/java/jsch.jar"/>
</path>
<!-- compile the source code -->
<javac destdir="${temp.folder}/@dot.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bundleBootClasspath}" source="${bundleJavacSource}" target="${bundleJavacTarget}" >
--- source-tree/plugins/org.eclipse.team.cvs.ssh2/build.xml.orig 2006-08-02 17:10:53.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/build.xml 2006-08-02 17:12:48.000000000 +0000
@@ -118,7 +118,7 @@
<pathelement path="${build.result.folder}/../org.eclipse.team.cvs.core/@dot"/>
<pathelement path="../../baseLocation/plugins/com.ibm.icu.base_3.4.4.1.jar"/>
<pathelement path="${build.result.folder}/../org.eclipse.team.core/@dot"/>
- <pathelement path="../../baseLocation/plugins/com.jcraft.jsch_0.1.28.jar"/>
+ <pathelement path="/usr/share/java/jsch.jar"/>
<pathelement path="../org.eclipse.swt/@dot"/>
<pathelement path="${build.result.folder}/../org.eclipse.swt/@dot"/>
<pathelement path="../org.eclipse.swt.gtk.linux.x86_64/@dot"/>
--- source-tree/plugins/org.eclipse.team.cvs.core/META-INF/MANIFEST.MF.orig 2006-10-04 14:57:52.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.core/META-INF/MANIFEST.MF 2006-10-04 14:58:03.000000000 +0000
@@ -20,7 +20,7 @@
org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
org.eclipse.team.core;bundle-version="[3.2.0,4.0.0)",
org.eclipse.core.filesystem;bundle-version="[1.0.0,2.0.0)",
- com.jcraft.jsch;bundle-version="[0.1.27,2.0.0)"
+ com.jcraft.jsch;bundle-version="[0.1.28,2.0.0)"
Eclipse-LazyStart: true
Import-Package: com.ibm.icu.text,
com.ibm.icu.util
--- source-tree/plugins/org.eclipse.team.cvs.ssh2/META-INF/MANIFEST.MF.orig 2006-10-04 12:31:47.000000000 +0000
+++ source-tree/plugins/org.eclipse.team.cvs.ssh2/META-INF/MANIFEST.MF 2006-10-04 12:32:04.000000000 +0000
@@ -15,6 +15,6 @@
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
org.eclipse.team.cvs.ssh;bundle-version="[3.2.0,4.0.0)",
org.eclipse.team.ui;bundle-version="[3.2.0,4.0.0)",
- com.jcraft.jsch;bundle-version="[0.1.18,2.0.0)"
+ com.jcraft.jsch;bundle-version="[0.1.28,2.0.0)"
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|