eclipse/get-eclipse.sh

31 lines
958 B
Bash
Raw Normal View History

2012-07-26 10:25:54 +00:00
#!/bin/bash
2013-03-15 08:27:43 +00:00
set -e
2013-05-02 12:02:12 +00:00
AGGREGATOR_PATH=git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git
2017-10-19 08:22:06 +00:00
TAG=R4_7_1a
2012-09-19 11:20:23 +00:00
2013-05-02 12:02:12 +00:00
rm -rf R4_platform-aggregator-$TAG
rm -rf R4_platform-aggregator-$TAG.tar.xz
2012-07-26 10:25:54 +00:00
git clone --recursive -j2 --branch $TAG $AGGREGATOR_PATH R4_platform-aggregator-$TAG
2014-03-14 17:26:14 +00:00
2013-05-02 12:02:12 +00:00
pushd R4_platform-aggregator-$TAG
rm -rf production
2013-05-02 12:02:12 +00:00
2014-06-03 17:02:32 +00:00
# Comment this line to get a shallow clone.
find . -type d -name ".git" | xargs rm -rf
2013-05-02 12:02:12 +00:00
2015-07-30 10:19:32 +00:00
# Delete pre-built binary artifacts except some test data that cannot be generated
2017-10-19 08:22:06 +00:00
find . ! -path "*/JCL/*" ! -name "rtstubs*.jar" ! -name "java9api.jar" \
2015-07-30 10:19:32 +00:00
-type f -name *.jar -delete
2014-06-03 17:02:32 +00:00
find . -type f -name *.class -delete
find . -type f -name *.so -delete
find . -type f -name *.dll -delete
find . -type f -name *.jnilib -delete
# Remove pre-compiled native launchers
rm -rf rt.equinox.binaries/org.eclipse.equinox.executable/{bin,contributed}/
2013-05-02 12:02:12 +00:00
2012-09-19 11:20:23 +00:00
popd
2013-05-02 12:02:12 +00:00
2014-03-14 17:26:14 +00:00
tar cJf R4_platform-aggregator-$TAG.tar.xz R4_platform-aggregator-$TAG