[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 4b56c9a10faa8eecf80dd70f2b838e579efead90
Benjamin Drung
bdrung-guest at alioth.debian.org
Wed Feb 24 15:11:37 UTC 2010
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".
The branch, master has been updated
via 4b56c9a10faa8eecf80dd70f2b838e579efead90 (commit)
via 97be7b079f8a6bedefe379c07b5a81038d9d68b5 (commit)
via dcd87eaeb0529b2c37d4a20945854f93e7a3d6d3 (commit)
via e95ddd0696f5b2f39a0f74a0b40b8ddf995e58ba (commit)
from 7174b4829264eebd1820a03960aaf587650cdc96 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4b56c9a10faa8eecf80dd70f2b838e579efead90
Merge: dcd87eaeb0529b2c37d4a20945854f93e7a3d6d3 97be7b079f8a6bedefe379c07b5a81038d9d68b5
Author: Benjamin Drung <bdrung at ubuntu.com>
Date: Wed Feb 24 16:11:19 2010 +0100
Merge branch 'upstream'
commit dcd87eaeb0529b2c37d4a20945854f93e7a3d6d3
Author: Benjamin Drung <bdrung at ubuntu.com>
Date: Wed Feb 24 16:08:18 2010 +0100
Refresh repack-eclipse script.
commit e95ddd0696f5b2f39a0f74a0b40b8ddf995e58ba
Author: Benjamin Drung <bdrung at ubuntu.com>
Date: Wed Feb 24 15:50:47 2010 +0100
Remove unused source-jars.patch.
-----------------------------------------------------------------------
Summary of changes:
debian/extra/repack-eclipse | 25 ++-
debian/patches/source-jars.patch | 226 ---------------
.../com.ibm.icu.base.source_4.0.1.v20090822.jar | Bin 114619 -> 490 bytes
.../plugins/com.ibm.icu.source_4.0.1.v20090822.jar | Bin 1584040 -> 483 bytes
...com.jcraft.jsch.source_0.1.41.v200903070017.jar | Bin 224697 -> 486 bytes
...avax.servlet.jsp.source_2.0.0.v200806031607.jar | Bin 108130 -> 485 bytes
.../javax.servlet.source_2.5.0.v200806031605.jar | Bin 159053 -> 481 bytes
.../org.apache.ant.source_1.7.1.v20090120-1145.jar | Bin 2157789 -> 635 bytes
...e.commons.codec.source_1.3.0.v20080530-1600.jar | Bin 67441 -> 493 bytes
...pache.commons.el.source_1.0.0.v200806031608.jar | Bin 153929 -> 490 bytes
...mons.httpclient.source_3.1.0.v20080605-1935.jar | Bin 428499 -> 497 bytes
....commons.logging.source_1.0.4.v200904062259.jar | Bin 53906 -> 494 bytes
...g.apache.jasper.source_5.5.17.v200903231320.jar | Bin 396709 -> 486 bytes
...lucene.analysis.source_1.9.1.v20080530-1600.jar | Bin 366787 -> 495 bytes
.../org.eclipse.core.resources/natives/ref.c | 287 --------------------
....hamcrest.core.source_1.1.0.v20090501071000.jar | Bin 23078 -> 502 bytes
.../org.junit.source_3.8.2.v20090203-1005.jar | Bin 74344 -> 492 bytes
...ay.jetty.server.source_6.1.15.v200905151201.jar | Bin 394601 -> 492 bytes
...tbay.jetty.util.source_6.1.15.v200905182336.jar | Bin 135725 -> 493 bytes
...rg.objectweb.asm.source_3.1.0.v200803061910.jar | Bin 621060 -> 486 bytes
20 files changed, 21 insertions(+), 517 deletions(-)
diff --git a/debian/extra/repack-eclipse b/debian/extra/repack-eclipse
index 0dac78e..d36b49f 100755
--- a/debian/extra/repack-eclipse
+++ b/debian/extra/repack-eclipse
@@ -1,12 +1,15 @@
#!/bin/sh
set -e
-cd "$(dirname $0)../../eclipse"
+if test ! -d plugins; then
+ echo "E: You have to run this script in the eclipse source directory!" > /dev/stderr
+ exit 1
+fi
# Remove unused files
rm -f plugins/org.eclipse.core.resources/natives/ref.c
-# Remove unused .jar files
+# Remove unused jar files
rm -f plugins/org.apache.ant_*/lib/ant-jai.jar
rm -f plugins/org.apache.ant_*/lib/ant-jmf.jar
rm -f plugins/org.apache.ant_*/lib/ant-netrexx.jar
@@ -16,9 +19,23 @@ rm -f plugins/org.apache.ant_*/lib/ant-weblogic.jar
rm -f plugins/org.apache.ws.commons.util_*.jar
rm -f plugins/org.apache.ws.jaxme_*.jar
rm -f plugins/org.apache.xmlrpc_*.jar
+rm -f plugins/org.eclipse.jdt.ui.examples.projects/archive/junit/junit381src.jar
+rm -f plugins/org.eclipse.osgi/osgi/ee.foundation.jar
+rm -f plugins/org.eclipse.osgi/osgi/ee.minimum-1.2.0.jar
+rm -f plugins/org.eclipse.osgi/osgi/ee.minimum.jar
+rm -f plugins/org.eclipse.osgi/osgi/exceptions.jar
+rm -f plugins/org.eclipse.osgi/osgi/osgi.cmpn.jar
+rm -f plugins/org.eclipse.osgi/osgi/osgi.core.jar
+rm -f plugins/org.eclipse.pde.core/ant_tasks/pde-ant.jar
+rm -f plugins/org.eclipse.swt/extra_jars/exceptions.jar
+rm -f plugins/org.eclipse.ecf*.jar
+rm -f plugins/org.mortbay.jetty_5*.jar
+
+# Remove empty directories
+find -depth -type d -empty -delete
# Store a list of removed files
-find plugins -name '*.jar' | grep -v '.source_' >> removed-jars
+find plugins -name '*.jar' | grep -v '.source_' >> removed-jars || true
# Remove .jar files
for jar_file in $(cat removed-jars); do
@@ -29,4 +46,4 @@ for jar_file in $(cat removed-jars); do
done
# Replace source .jar files
-../debian/extra/unjar-jar plugins/*.source_*.jar
+$(dirname $0)/unjar-jar plugins/*.source_*.jar
diff --git a/debian/patches/source-jars.patch b/debian/patches/source-jars.patch
deleted file mode 100644
index a368f5b..0000000
--- a/debian/patches/source-jars.patch
+++ /dev/null
@@ -1,226 +0,0 @@
-Description: Creates and runs a script to empty all the 3rd party ".source_"-jars.
-Author: Niels Thykier <niels at thykier.net>
-
-Index: debian.git/build.xml
-===================================================================
---- debian.git.orig/build.xml 2010-02-18 22:40:23.059667028 +0100
-+++ debian.git/build.xml 2010-02-18 22:41:09.908418214 +0100
-@@ -286,6 +286,11 @@
- <arg line="-c" />
- <arg line="${buildDirectory}" />
- </exec>
-+ <chmod perm="+x" file="unjar-jar" />
-+ <exec executable="./unjar-jar" failonerror="true">
-+ <arg line="-c" />
-+ <arg line="${buildDirectory}/plugins" />
-+ </exec>
- <echo file="symlink-stamp" />
- </target>
-
-Index: debian.git/replacements
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ debian.git/replacements 2010-02-18 22:41:09.908418214 +0100
-@@ -0,0 +1,17 @@
-+com.ibm.icu.base.source_*.jar
-+com.ibm.icu.source_*.jar
-+com.jcraft.jsch.source_*.jar
-+javax.servlet.jsp.source_*.jar
-+javax.servlet.source_*.jar
-+org.apache.ant.source_*.jar
-+org.apache.commons.codec.source_*.jar
-+org.apache.commons.el.source_*.jar
-+org.apache.commons.httpclient.source_*.jar
-+org.apache.commons.logging.source_*.jar
-+org.apache.jasper.source_*.jar
-+org.apache.lucene.analysis.source_*.jar
-+org.hamcrest.core.source_*.jar
-+org.junit.source_*.jar
-+org.mortbay.jetty.server.source_*.jar
-+org.mortbay.jetty.util.source_*.jar
-+org.objectweb.asm.source_*.jar
-Index: debian.git/unjar-jar
-===================================================================
---- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ debian.git/unjar-jar 2010-02-18 22:41:09.908418214 +0100
-@@ -0,0 +1,180 @@
-+#!/usr/bin/perl
-+
-+use strict;
-+use warnings;
-+
-+my $tmp = undef;
-+my $linkdir = ".";
-+my $prefix = "link-";
-+my @jarpath = (".", "/usr/share/java");
-+my $wdir;
-+my $rfile = `pwd`;
-+my $linkonly = 0;
-+my $embed = 0;
-+my $ignore = 0;
-+chomp($rfile);
-+$rfile.="/replacements";
-+
-+while(defined(my $arg = shift(@ARGV))){
-+ my $param;
-+ if($arg eq '-c'){
-+ $param = shift(@ARGV);
-+ choke("Missing argument for $arg") if(!defined($param));
-+ chdir($param) or choke("E: Could not cd to $param: $!");
-+ } elsif($arg eq '-d'){
-+ $linkdir = shift(@ARGV);
-+ choke("Missing argument for $arg") if(!defined($linkdir));
-+ } elsif($arg eq "-p"){
-+ $prefix = shift(@ARGV);
-+ } elsif($arg eq "-I"){
-+ $param = shift(@ARGV);
-+ push(@jarpath, $param);
-+ } elsif($arg eq '-l'){
-+ $linkonly = 1;
-+ $embed = 0;
-+ } elsif($arg eq '-e'){
-+ $embed = 1;
-+ $linkonly = 0;
-+ } elsif($arg eq '-i'){
-+ $ignore = 1;
-+ } else {
-+ choke("Unknown argument $arg");
-+ }
-+}
-+
-+-d $linkdir or system("mkdir -p \"$linkdir\"") == 0 or choke("Could not create $linkdir");
-+
-+$SIG{'INT'} = \&cleanup;
-+$SIG{'TERM'} = \&cleanup;
-+$tmp = `mktemp -d`;
-+$wdir = `pwd`;
-+chomp($wdir);
-+chomp($tmp);
-+
-+replace($rfile);
-+cleanup();
-+exit 0;
-+
-+sub base{
-+ my $name = shift;
-+ $name =~ s@[^/]*+/@@go;
-+ return $name;
-+}
-+
-+sub dolink {
-+ my @jars = @_;
-+ foreach my $jar (@jars){
-+ my $base = base($jar);
-+ info("Linking $jar -> $linkdir/$prefix$base");
-+ system("ln -sf \"$jar\" \"$linkdir/$prefix$base\"") == 0 or choke("Could not create link $jar -> $linkdir/$prefix$base");
-+ }
-+}
-+
-+sub embed {
-+ my $file = shift;
-+ my @cp = @_;
-+ choke("$file does not exist") if( ! -e $file);
-+ choke("$file has no classpath") if(scalar(@cp) < 1);
-+
-+ system("mkdir -p \"$tmp/old\" \"$tmp/new\" && cd \"$tmp/old\" && jar xf \"$wdir/$file\"" .
-+ " && mv -f \"$tmp/old/META-INF/MANIFEST.MF\" \"$tmp/manifest\"") == 0 or choke("Could not unjar $file");
-+ unlink($file) or choke("Unlinking $file: $!");
-+ foreach my $jar (@cp){
-+ system("unzip \"$jar\" -d \"$tmp/new\" && rm -fr \"$tmp/new/META-INF/\"") == 0 or choke("Could not unzip $jar");
-+ }
-+ system("rm -fr \"$tmp/new/META-INF\" && cd \"$tmp/new\" && zip -r \"$wdir/$file\" *");
-+ system("jar umf \"$tmp/manifest\" $wdir/$file && rm -fr \"$tmp/\"*") == 0 or choke("Could not create replacement jar.");
-+ info("Embedded $file");
-+ return 1;
-+}
-+
-+sub repack {
-+ my $file = shift;
-+ my @cp = map { $_ = "$linkdir/$prefix" . base($_); } @_;
-+ choke("$file does not exist") if( ! -e $file);
-+
-+ system("cd \"$tmp\" && jar xf \"$wdir/$file\"") == 0 or choke("Could not unjar $file");
-+
-+ unlink($file) or choke("Unlinking $file: $!");
-+
-+ open(MANIFEST_ORIG, "<", "$tmp/META-INF/MANIFEST.MF") or choke("Opening $tmp/META-INF/MANIFEST.MF");
-+ open(MANIFEST, ">", "$tmp/manifest") or choke("Opening $tmp/manifest: $!");
-+ while( my $line = <MANIFEST_ORIG> ) {
-+ chomp($line);
-+ last if($line =~ m/^\s*$/o);
-+ print MANIFEST "$line\n";
-+ }
-+ close(MANIFEST) or choke("Writing $tmp/manifest: $!");
-+ close(MANIFEST_ORIG);
-+# system("rm -fr \"$tmp/META-INF/\" && find \"$tmp\" -name '*.class' -o -name '*.java' -delete") == 0 or choke("Could not clean $file");
-+# system("cd \"$tmp\" && zip -r \"$wdir/$file\" * && jar umf \"$tmp/manifest\" \"$wdir/$file\" && rm -fr \"$tmp/\"*") == 0 or choke("Could not create replacement jar.");
-+ system("cd \"$tmp\" && jar cmf \"$tmp/manifest\" \"$wdir/$file\" && rm -fr \"$tmp/\"*") == 0 or choke("Could not create replacement jar.");
-+ info("Replaced $file");
-+ return 1;
-+}
-+
-+sub findJars{
-+ my @result = ();
-+ foreach my $jar (@_) {
-+ my $jarfname = undef;
-+ next if($jar eq "");
-+ foreach my $path (@jarpath) {
-+ if( -e "$path/$jar" ) {
-+ $jarfname = "$path/$jar";
-+ last;
-+ }
-+ }
-+ choke("Cannot find $jar in " . join(" ", @jarpath)) unless(defined($jarfname));
-+ push(@result, $jarfname),
-+ }
-+ return @result;
-+}
-+
-+sub replace {
-+ my $fname = shift;
-+ open(REPLACEMENTS, "<", $fname) or choke("$fname: $!");
-+ while( my $line = <REPLACEMENTS> ){
-+ my $toReplace;
-+ my $rest;
-+ my @jars;
-+ chomp($line);
-+ next if($line =~ m/^#/o);
-+ ($toReplace, $rest) = split(/\s*;\s*/o, $line);
-+ @jars = findJars(split(/\s*,\s*/o, $rest//''));
-+ # Make the shell expand wildcards
-+ $toReplace = `echo $toReplace`;
-+ chomp($toReplace);
-+ next if( ! -e $toReplace && $ignore);
-+ if($embed) {
-+ embed($toReplace, @jars);
-+ next;
-+ }
-+ if( -e $toReplace) {
-+ dolink(@jars);
-+ repack($toReplace, @jars) unless($linkonly);
-+ } elsif(!$linkonly){
-+ choke("Cannot find $toReplace");
-+ }
-+ }
-+ close(REPLACEMENTS);
-+}
-+
-+sub choke{
-+ my $msg = shift;
-+ print STDERR "E: $msg\n";
-+ cleanup();
-+ exit 1;
-+}
-+
-+sub info{
-+ my $msg = shift;
-+ print "I: $msg\n";
-+}
-+
-+sub cleanup{
-+ if(defined($tmp) && -d $tmp){
-+ info("Removing $tmp");
-+ system("rm -fr \"$tmp\"");
-+ }
-+}
-+
diff --git a/eclipse/plugins/com.ibm.icu.base.source_4.0.1.v20090822.jar b/eclipse/plugins/com.ibm.icu.base.source_4.0.1.v20090822.jar
index 8630a9f..2805d4e 100644
Binary files a/eclipse/plugins/com.ibm.icu.base.source_4.0.1.v20090822.jar and b/eclipse/plugins/com.ibm.icu.base.source_4.0.1.v20090822.jar differ
diff --git a/eclipse/plugins/com.ibm.icu.source_4.0.1.v20090822.jar b/eclipse/plugins/com.ibm.icu.source_4.0.1.v20090822.jar
index dea12e5..469e939 100644
Binary files a/eclipse/plugins/com.ibm.icu.source_4.0.1.v20090822.jar and b/eclipse/plugins/com.ibm.icu.source_4.0.1.v20090822.jar differ
diff --git a/eclipse/plugins/com.jcraft.jsch.source_0.1.41.v200903070017.jar b/eclipse/plugins/com.jcraft.jsch.source_0.1.41.v200903070017.jar
index 7af53c3..31d9127 100644
Binary files a/eclipse/plugins/com.jcraft.jsch.source_0.1.41.v200903070017.jar and b/eclipse/plugins/com.jcraft.jsch.source_0.1.41.v200903070017.jar differ
diff --git a/eclipse/plugins/javax.servlet.jsp.source_2.0.0.v200806031607.jar b/eclipse/plugins/javax.servlet.jsp.source_2.0.0.v200806031607.jar
index 51f9f01..3d1033d 100644
Binary files a/eclipse/plugins/javax.servlet.jsp.source_2.0.0.v200806031607.jar and b/eclipse/plugins/javax.servlet.jsp.source_2.0.0.v200806031607.jar differ
diff --git a/eclipse/plugins/javax.servlet.source_2.5.0.v200806031605.jar b/eclipse/plugins/javax.servlet.source_2.5.0.v200806031605.jar
index 3a132a8..597d8f2 100644
Binary files a/eclipse/plugins/javax.servlet.source_2.5.0.v200806031605.jar and b/eclipse/plugins/javax.servlet.source_2.5.0.v200806031605.jar differ
diff --git a/eclipse/plugins/org.apache.ant.source_1.7.1.v20090120-1145.jar b/eclipse/plugins/org.apache.ant.source_1.7.1.v20090120-1145.jar
index 0fdca66..95ab00a 100644
Binary files a/eclipse/plugins/org.apache.ant.source_1.7.1.v20090120-1145.jar and b/eclipse/plugins/org.apache.ant.source_1.7.1.v20090120-1145.jar differ
diff --git a/eclipse/plugins/org.apache.commons.codec.source_1.3.0.v20080530-1600.jar b/eclipse/plugins/org.apache.commons.codec.source_1.3.0.v20080530-1600.jar
index b1387f8..18e736a 100644
Binary files a/eclipse/plugins/org.apache.commons.codec.source_1.3.0.v20080530-1600.jar and b/eclipse/plugins/org.apache.commons.codec.source_1.3.0.v20080530-1600.jar differ
diff --git a/eclipse/plugins/org.apache.commons.el.source_1.0.0.v200806031608.jar b/eclipse/plugins/org.apache.commons.el.source_1.0.0.v200806031608.jar
index 72925ba..c308b22 100644
Binary files a/eclipse/plugins/org.apache.commons.el.source_1.0.0.v200806031608.jar and b/eclipse/plugins/org.apache.commons.el.source_1.0.0.v200806031608.jar differ
diff --git a/eclipse/plugins/org.apache.commons.httpclient.source_3.1.0.v20080605-1935.jar b/eclipse/plugins/org.apache.commons.httpclient.source_3.1.0.v20080605-1935.jar
index b5065f4..8896958 100644
Binary files a/eclipse/plugins/org.apache.commons.httpclient.source_3.1.0.v20080605-1935.jar and b/eclipse/plugins/org.apache.commons.httpclient.source_3.1.0.v20080605-1935.jar differ
diff --git a/eclipse/plugins/org.apache.commons.logging.source_1.0.4.v200904062259.jar b/eclipse/plugins/org.apache.commons.logging.source_1.0.4.v200904062259.jar
index 3f1e2ad..5834a1c 100644
Binary files a/eclipse/plugins/org.apache.commons.logging.source_1.0.4.v200904062259.jar and b/eclipse/plugins/org.apache.commons.logging.source_1.0.4.v200904062259.jar differ
diff --git a/eclipse/plugins/org.apache.jasper.source_5.5.17.v200903231320.jar b/eclipse/plugins/org.apache.jasper.source_5.5.17.v200903231320.jar
index 933c5c6..1cf3966 100644
Binary files a/eclipse/plugins/org.apache.jasper.source_5.5.17.v200903231320.jar and b/eclipse/plugins/org.apache.jasper.source_5.5.17.v200903231320.jar differ
diff --git a/eclipse/plugins/org.apache.lucene.analysis.source_1.9.1.v20080530-1600.jar b/eclipse/plugins/org.apache.lucene.analysis.source_1.9.1.v20080530-1600.jar
index 3405843..04a7403 100644
Binary files a/eclipse/plugins/org.apache.lucene.analysis.source_1.9.1.v20080530-1600.jar and b/eclipse/plugins/org.apache.lucene.analysis.source_1.9.1.v20080530-1600.jar differ
diff --git a/eclipse/plugins/org.eclipse.core.resources/natives/ref.c b/eclipse/plugins/org.eclipse.core.resources/natives/ref.c
deleted file mode 100644
index 0c3a48b..0000000
--- a/eclipse/plugins/org.eclipse.core.resources/natives/ref.c
+++ /dev/null
@@ -1,287 +0,0 @@
-#include <windows.h>
-#include "ref.h"
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FindFirstChangeNotificationW
- * Signature: (Ljava/lang/String;ZI)J
- */
-JNIEXPORT jlong JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FindFirstChangeNotificationW
-(JNIEnv * env, jclass this, jstring lpPathName, jboolean bWatchSubtree, jint dwNotifyFilter) {
- jlong result;
- jsize numberOfChars;
- jchar *path;
- const jchar *temp;
-
- // create a new byte array to hold the prefixed and null terminated path
- numberOfChars= (*env)->GetStringLength(env, lpPathName);
- path= malloc((numberOfChars + 5) * sizeof(jchar));
- //path= malloc((numberOfChars + 4) * sizeof(jchar));
-
- // get the path characters from the vm, copy them, and release them
- temp= (*env)->GetStringChars(env, lpPathName, JNI_FALSE);
- memcpy(path + 4, temp, numberOfChars * sizeof(jchar));
- (*env)->ReleaseStringChars(env, lpPathName, temp);
-
- // prefix the path to enable long filenames, and null terminate it
- path[0] = L'\\';
- path[1] = L'\\';
- path[2] = L'?';
- path[3] = L'\\';
- path[(numberOfChars + 4)] = L'\0';
-
- // make the request and free the memory
- //printf("%S\n", path);
- result = (jlong) FindFirstChangeNotificationW(path, bWatchSubtree, dwNotifyFilter);
- free(path);
-
- return result;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FindFirstChangeNotificationA
- * Signature: ([BZI)J
- */
-JNIEXPORT jlong JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FindFirstChangeNotificationA
-(JNIEnv * env, jclass this, jbyteArray lpPathName, jboolean bWatchSubtree, jint dwNotifyFilter) {
- jlong result;
- jsize numberOfChars;
- jbyte *path, *temp;
-
- // create a new byte array to hold the null terminated path
- numberOfChars = (*env)->GetArrayLength(env, lpPathName);
- path = malloc((numberOfChars + 1) * sizeof(jbyte));
-
- // get the path bytes from the vm, copy them, and release them
- temp = (*env)->GetByteArrayElements(env, lpPathName, 0);
- memcpy(path, temp, numberOfChars * sizeof(jbyte));
- (*env)->ReleaseByteArrayElements(env, lpPathName, temp, 0);
-
- // null terminate the path, make the request, and release the path memory
- path[numberOfChars] = '\0';
- result = (jlong) FindFirstChangeNotificationA(path, bWatchSubtree, dwNotifyFilter);
- free(path);
-
- return result;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FindCloseChangeNotification
- * Signature: (J)Z
- */
-JNIEXPORT jboolean JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FindCloseChangeNotification
-(JNIEnv *env, jclass this, jlong hChangeHandle){
- return (jboolean) FindCloseChangeNotification((HANDLE) hChangeHandle);
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FindNextChangeNotification
- * Signature: (J)Z
- */
-JNIEXPORT jboolean JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FindNextChangeNotification
-(JNIEnv *env, jclass this, jlong hChangeHandle){
- return (jboolean) FindNextChangeNotification((HANDLE) hChangeHandle);
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: WaitForMultipleObjects
- * Signature: (I[JZI)I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_WaitForMultipleObjects
-(JNIEnv *env, jclass this, jint nCount, jlongArray lpHandles, jboolean bWaitAll, jint dwMilliseconds) {
- int i;
- jint result;
- HANDLE handles[MAXIMUM_WAIT_OBJECTS];
- jlong *handlePointers = (*env)->GetLongArrayElements(env, lpHandles, 0);
-
- for (i = 0; i < nCount; i++) {
- handles[i] = (HANDLE) handlePointers[i];
- }
-
- result = WaitForMultipleObjects(nCount, handles, bWaitAll, dwMilliseconds);
- (*env)->ReleaseLongArrayElements(env, lpHandles, handlePointers, 0);
-
- return result;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: IsUnicode
- * Signature: ()Z
- */
-JNIEXPORT jboolean JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_IsUnicode
- (JNIEnv *env, jclass this) {
- OSVERSIONINFO osvi;
- memset(&osvi, 0, sizeof(OSVERSIONINFO));
- osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
- if (! GetVersionEx (&osvi) )
- return JNI_FALSE;
- if (osvi.dwMajorVersion >= 5)
- return JNI_TRUE;
- return JNI_FALSE;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: GetLastError
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_GetLastError
-(JNIEnv *env, jclass this){
- return GetLastError();
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FILE_NOTIFY_CHANGE_LAST_WRITE
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FILE_1NOTIFY_1CHANGE_1LAST_1WRITE
-(JNIEnv *env, jclass this) {
- return FILE_NOTIFY_CHANGE_LAST_WRITE;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FILE_NOTIFY_CHANGE_DIR_NAME
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FILE_1NOTIFY_1CHANGE_1DIR_1NAME
-(JNIEnv *env, jclass this) {
- return FILE_NOTIFY_CHANGE_DIR_NAME;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FILE_NOTIFY_CHANGE_ATTRIBUTES
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FILE_1NOTIFY_1CHANGE_1ATTRIBUTES
-(JNIEnv *env, jclass this) {
- return FILE_NOTIFY_CHANGE_ATTRIBUTES;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FILE_NOTIFY_CHANGE_SIZE
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FILE_1NOTIFY_1CHANGE_1SIZE
-(JNIEnv *env, jclass this) {
- return FILE_NOTIFY_CHANGE_SIZE;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FILE_NOTIFY_CHANGE_FILE_NAME
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FILE_1NOTIFY_1CHANGE_1FILE_1NAME
-(JNIEnv *env, jclass this) {
- return FILE_NOTIFY_CHANGE_FILE_NAME;
-}
-
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: FILE_NOTIFY_CHANGE_SECURITY
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_FILE_1NOTIFY_1CHANGE_1SECURITY
-(JNIEnv *env, jclass this) {
- return FILE_NOTIFY_CHANGE_SECURITY;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: MAXIMUM_WAIT_OBJECTS
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_MAXIMUM_1WAIT_1OBJECTS
-(JNIEnv *env, jclass this) {
- return MAXIMUM_WAIT_OBJECTS;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: MAX_PATH
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_MAX_1PATH
-(JNIEnv *env, jclass this) {
- return MAX_PATH;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: INFINITE
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_INFINITE
-(JNIEnv *env, jclass this) {
- return INFINITE;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: WAIT_OBJECT_0
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_WAIT_1OBJECT_10
-(JNIEnv *env, jclass this) {
- return WAIT_OBJECT_0;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: WAIT_FAILED
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_WAIT_1FAILED
-(JNIEnv *env, jclass this) {
- return WAIT_FAILED;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: WAIT_TIMEOUT
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_WAIT_1TIMEOUT
-(JNIEnv *env, jclass this) {
- return WAIT_TIMEOUT;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: ERROR_INVALID_HANDLE
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_ERROR_1INVALID_1HANDLE
-(JNIEnv *env, jclass this) {
- return ERROR_INVALID_HANDLE;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: ERROR_SUCCESS
- * Signature: ()I
- */
-JNIEXPORT jint JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_ERROR_1SUCCESS
-(JNIEnv *env, jclass this) {
- return ERROR_SUCCESS;
-}
-
-/*
- * Class: org_eclipse_core_internal_resources_refresh_win32_Win32Natives
- * Method: INVALID_HANDLE_VALUE
- * Signature: ()J
- */
-JNIEXPORT jlong JNICALL Java_org_eclipse_core_internal_resources_refresh_win32_Win32Natives_INVALID_1HANDLE_1VALUE
-(JNIEnv * env, jclass this) {
- return (jlong)INVALID_HANDLE_VALUE;
-}
diff --git a/eclipse/plugins/org.hamcrest.core.source_1.1.0.v20090501071000.jar b/eclipse/plugins/org.hamcrest.core.source_1.1.0.v20090501071000.jar
index cd7feb6..787526a 100644
Binary files a/eclipse/plugins/org.hamcrest.core.source_1.1.0.v20090501071000.jar and b/eclipse/plugins/org.hamcrest.core.source_1.1.0.v20090501071000.jar differ
diff --git a/eclipse/plugins/org.junit.source_3.8.2.v20090203-1005.jar b/eclipse/plugins/org.junit.source_3.8.2.v20090203-1005.jar
index 5d18463..68e05ac 100644
Binary files a/eclipse/plugins/org.junit.source_3.8.2.v20090203-1005.jar and b/eclipse/plugins/org.junit.source_3.8.2.v20090203-1005.jar differ
diff --git a/eclipse/plugins/org.mortbay.jetty.server.source_6.1.15.v200905151201.jar b/eclipse/plugins/org.mortbay.jetty.server.source_6.1.15.v200905151201.jar
index ad63e86..f5c04c0 100644
Binary files a/eclipse/plugins/org.mortbay.jetty.server.source_6.1.15.v200905151201.jar and b/eclipse/plugins/org.mortbay.jetty.server.source_6.1.15.v200905151201.jar differ
diff --git a/eclipse/plugins/org.mortbay.jetty.util.source_6.1.15.v200905182336.jar b/eclipse/plugins/org.mortbay.jetty.util.source_6.1.15.v200905182336.jar
index e88d43e..28940fc 100644
Binary files a/eclipse/plugins/org.mortbay.jetty.util.source_6.1.15.v200905182336.jar and b/eclipse/plugins/org.mortbay.jetty.util.source_6.1.15.v200905182336.jar differ
diff --git a/eclipse/plugins/org.objectweb.asm.source_3.1.0.v200803061910.jar b/eclipse/plugins/org.objectweb.asm.source_3.1.0.v200803061910.jar
index 4be6215..ce16d96 100644
Binary files a/eclipse/plugins/org.objectweb.asm.source_3.1.0.v200803061910.jar and b/eclipse/plugins/org.objectweb.asm.source_3.1.0.v200803061910.jar differ
hooks/post-receive
--
eclipse - Powerful IDE written in java - Debian package.
More information about the pkg-java-commits
mailing list