[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream, updated. b56eae9f637ea669f158a62268fb37c9f0c5ff2a

Benjamin Drung bdrung-guest at alioth.debian.org
Tue Mar 2 20:00:52 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, upstream has been updated
       via  b56eae9f637ea669f158a62268fb37c9f0c5ff2a (commit)
       via  6e262448c712fb6ee719e1ec5d9a9c1a3c3422d9 (commit)
       via  963049d2da5f76cdd71d7ffa3e5a4acf4cd17e69 (commit)
      from  0f4e31bf0c77c1ee364c78b134b331110a5327ea (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 -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                          |   12 ++++++++++++
 .../eclipsebuild/SymlinkInstalledOSGiJars.java     |    2 +-
 .../linuxtools/eclipsebuild/SymlinkOSGiJars.java   |    2 +-
 3 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ab822ef..1dd911c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
 2010-03-02  Andrew Overholt  <overholt at redhat.com>
 
+	* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
+	(importantManifestEntries): Only compare Bundle-SymbolicName when
+	symlinking at install time since we know it will be correct based on
+	build time symlinks.
+
+2010-03-02  Andrew Overholt  <overholt at redhat.com>
+
+	* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
+	(execute): Correct symlink location.
+
+2010-03-02  Andrew Overholt  <overholt at redhat.com>
+ 
 	* dependencies.properties: Fix up Debian jasper JAR location.
 
 2010-03-02  Andrew Overholt  <overholt at redhat.com>
diff --git a/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java b/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
index b2e9c39..b297245 100644
--- a/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
+++ b/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
@@ -29,7 +29,7 @@ import org.apache.tools.ant.taskdefs.optional.unix.Symlink;
 
 public class SymlinkInstalledOSGiJars extends Task {
 
-	private String[] importantManifestEntries = { "Bundle-SymbolicName", "Bundle-Version", "Export-Package" };
+	private String[] importantManifestEntries = { "Bundle-SymbolicName" };
 
 	private Properties dependencies;
 	private String topLevelDir;
diff --git a/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java b/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
index 56a7cff..e05699e 100644
--- a/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
+++ b/task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
@@ -98,7 +98,7 @@ public class SymlinkOSGiJars extends Task {
 			// Then make the actual symlink
 			Symlink s = new Symlink();
 			s.init();
-			s.setLink(topLevelDir + "/" + matchedJarBundleNameVersion + ".jar");
+			s.setLink(topLevelDir + "/" + origLocation);
 			s.setResource(matchedJar.getAbsolutePath());
 			s.execute();
 		}


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.



More information about the pkg-java-commits mailing list