Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-08-17 09:04:58 +0000
committerAlexander Kurtakov2017-08-17 09:04:58 +0000
commiteaf7d60cc88c5f410ad52af908754b47ac4878f0 (patch)
treebf775262e0e5086c885f91ec5719b3fb67896b9c /eclipse.platform.releng.tychoeclipsebuilder
parent1b38f491d52f844605400eff09791d6a01e03f23 (diff)
downloadeclipse.platform.releng.aggregator-eaf7d60cc88c5f410ad52af908754b47ac4878f0.tar.gz
eclipse.platform.releng.aggregator-eaf7d60cc88c5f410ad52af908754b47ac4878f0.tar.xz
eclipse.platform.releng.aggregator-eaf7d60cc88c5f410ad52af908754b47ac4878f0.zip
Bug 442770 - Produce a source tarball for use by distro integrators
Generate tar.xz file instead of bz2 now that there is new assembly plugin providing support for it. Change-Id: Ic92cc821445739cbeb4ac7f2c13b2938b517aff6 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder')
-rwxr-xr-xeclipse.platform.releng.tychoeclipsebuilder/eclipse/extras/produceChecksum.sh14
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml2
2 files changed, 8 insertions, 8 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/extras/produceChecksum.sh b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/extras/produceChecksum.sh
index a58c4a86e..9bb1f96c7 100755
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/extras/produceChecksum.sh
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/extras/produceChecksum.sh
@@ -97,15 +97,15 @@ do
sha512sum -b ${gzipfile} | tee checksum/${gzipfile}.sha512 >>${allCheckSumsSHA512}
done
-#array of tar.bz2 files
-bzipfiles=`ls *.bz2`
+#array of tar.xz files
+xzfiles=`ls *.tar.xz`
-for bzipfile in ${bzipfiles}
+for xzfile in ${xzfiles}
do
- echo [sha256] ${bzipfile}
- sha256sum -b ${bzipfile} | tee checksum/${bzipfile}.sha256 >>${allCheckSumsSHA256}
- echo [sha512] ${bzipfile}
- sha512sum -b ${bzipfile} | tee checksum/${bzipfile}.sha512 >>${allCheckSumsSHA512}
+ echo [sha256] ${xzfile}
+ sha256sum -b ${xzfile} | tee checksum/${xzfile}.sha256 >>${allCheckSumsSHA256}
+ echo [sha512] ${xzfile}
+ sha512sum -b ${xzfile} | tee checksum/${xzfile}.sha512 >>${allCheckSumsSHA512}
done
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
index 8407ebd4b..544a0bd3d 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/testManifest.xml
@@ -33,7 +33,7 @@
<platform
id="SST"
name="Source Tarball"
- fileName="eclipse-platform-sources-${BUILD_ID}.tar.bz2"></platform>
+ fileName="eclipse-platform-sources-${BUILD_ID}.tar.xz"></platform>
<!--
<platform id="SAA2" name='Source Build (Source in .zip) (&lt;a href="srcIncludedBuildInstructions.html">instructions&lt;/a>)'

Back to the top