Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2011-03-30 01:14:24 +0000
committerStephan Herrmann2011-03-30 01:14:24 +0000
commita53f6d34959b198511899b7ba1e6ec860f0803ae (patch)
tree694b5fca8bcbb1d6ce738299a092851ff7846bc6 /releng/build-scripts/bin/extractVersions
parentb7f41a3d9cf71be6751891481fcfd6b07a8db118 (diff)
downloadorg.eclipse.objectteams-a53f6d34959b198511899b7ba1e6ec860f0803ae.tar.gz
org.eclipse.objectteams-a53f6d34959b198511899b7ba1e6ec860f0803ae.tar.xz
org.eclipse.objectteams-a53f6d34959b198511899b7ba1e6ec860f0803ae.zip
accumulated changes:
- more robust parsing of jdt version number - run pack200 from Java5 - add one more script to svn
Diffstat (limited to 'releng/build-scripts/bin/extractVersions')
-rwxr-xr-xreleng/build-scripts/bin/extractVersions9
1 files changed, 9 insertions, 0 deletions
diff --git a/releng/build-scripts/bin/extractVersions b/releng/build-scripts/bin/extractVersions
new file mode 100755
index 000000000..d348abbea
--- /dev/null
+++ b/releng/build-scripts/bin/extractVersions
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+PDEBUILD=eclipse/plugins/org.eclipse.pde.build_.*/about.html
+LAUNCHER=eclipse/plugins/org.eclipse.equinox.launcher_
+JDTFEATURE=eclipse/features/org.eclipse.jdt_.*/feature.xml
+JDTCORE=eclipse/plugins/org.eclipse.jdt.core_
+
+tar tzvf $1 | egrep "${PDEBUILD}|${LAUNCHER}|${JDTCORE}|${JDTFEATURE}"
+

Back to the top