Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-10-05 03:34:14 +0000
committerDavid Williams2013-10-05 03:34:14 +0000
commitc94ac645a27dc1e5f9d9632cba56000c0f7121d4 (patch)
tree688924de4454d8b4dad0c1ccb1ee28a368886856 /production
parentf9748d3c155b0b341053a94f9a6b0e9c51b0b5c1 (diff)
downloadeclipse.platform.releng.aggregator-c94ac645a27dc1e5f9d9632cba56000c0f7121d4.tar.gz
eclipse.platform.releng.aggregator-c94ac645a27dc1e5f9d9632cba56000c0f7121d4.tar.xz
eclipse.platform.releng.aggregator-c94ac645a27dc1e5f9d9632cba56000c0f7121d4.zip
Bug 405911 - 3 p2 bundles don't produce (or, package) their .source
test patch
Diffstat (limited to 'production')
-rw-r--r--production/master-build.sh2
-rw-r--r--production/tempPatches/p2SourceFix.patch40
2 files changed, 41 insertions, 1 deletions
diff --git a/production/master-build.sh b/production/master-build.sh
index b89ea670d..1e3f67ea0 100644
--- a/production/master-build.sh
+++ b/production/master-build.sh
@@ -179,7 +179,7 @@ else
# temp patches for bugs
# apply the pre-created patch from tempPatches
# patches created, typically, by navigating to repoToPath, then
- # git diff --no-prefix > ../eclipse.platform.releng.aggregator/production/tempPatches/
+ # git diff --no-prefix > ../eclipse.platform.releng.aggregator/production/tempPatches/<patchFileName>
# (then commit and push aggregator)
repoToPatch=eclipse.jdt.core
diff --git a/production/tempPatches/p2SourceFix.patch b/production/tempPatches/p2SourceFix.patch
new file mode 100644
index 000000000..375942ca0
--- /dev/null
+++ b/production/tempPatches/p2SourceFix.patch
@@ -0,0 +1,40 @@
+diff --git features/org.eclipse.equinox.p2.sdk/feature.xml features/org.eclipse.equinox.p2.sdk/feature.xml
+index a0d4b8b..b5bf2dd 100644
+--- features/org.eclipse.equinox.p2.sdk/feature.xml
++++ features/org.eclipse.equinox.p2.sdk/feature.xml
+@@ -20,7 +20,7 @@
+ </license>
+
+ <includes
+- id="org.eclipse.equinox.p2.discovery.feature.source"
++ id="org.eclipse.equinox.p2.discovery.feature"
+ version="0.0.0"/>
+
+ <plugin
+@@ -690,5 +690,26 @@
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
++
++ <plugin
++ id="org.eclipse.equinox.p2.discovery.source"
++ download-size="0"
++ install-size="0"
++ version="0.0.0"
++ unpack="false"/>
++
++ <plugin
++ id="org.eclipse.equinox.p2.discovery.compatibility.source"
++ download-size="0"
++ install-size="0"
++ version="0.0.0"
++ unpack="false"/>
++
++ <plugin
++ id="org.eclipse.equinox.p2.ui.discovery.source"
++ download-size="0"
++ install-size="0"
++ version="0.0.0"
++ unpack="false"/>
+
+ </feature>

Back to the top