[eclipse-birt/f14/master] Add fetch script

Andrew Overholt overholt at fedoraproject.org
Wed Aug 4 13:27:25 UTC 2010


commit 21e304cde24f5b919883e8ffb8a2666dce70a5ac
Author: Andrew Overholt <overholt at redhat.com>
Date:   Mon Aug 2 12:49:05 2010 -0400

    Add fetch script

 fetch-birt.sh |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)
---
diff --git a/fetch-birt.sh b/fetch-birt.sh
new file mode 100755
index 0000000..9505700
--- /dev/null
+++ b/fetch-birt.sh
@@ -0,0 +1,38 @@
+#!/bin/sh
+
+CVSTAG=BIRT_2_6_0_Release_201006171315 
+RHINOTAG=v20090608
+VERSION=2.6.0
+
+rm -fr eclipse-birt-${VERSION}
+
+mkdir -p eclipse-birt-${VERSION}
+pushd eclipse-birt-${VERSION}
+
+for f in \
+features/org.eclipse.birt.chart.feature \
+org.eclipse.birt.chart \
+org.eclipse.birt.chart.device.extension \
+org.eclipse.birt.chart.device.pdf \
+org.eclipse.birt.chart.device.svg \
+org.eclipse.birt.chart.device.swt \
+org.eclipse.birt.chart.engine \
+org.eclipse.birt.chart.engine.extension \
+org.eclipse.birt.chart.examples.core \
+org.eclipse.birt.chart.ui \
+org.eclipse.birt.chart.ui.extension \
+org.eclipse.birt.core \
+org.eclipse.birt.core.ui \
+; do
+cvs -d :pserver:anonymous at dev.eclipse.org:/cvsroot/birt \
+export -r ${CVSTAG} source/$f;
+done
+
+cvs -d :pserver:anonymous at dev.eclipse.org:/cvsroot/birt \
+export -r ${RHINOTAG} source/org.mozilla.rhino
+
+mv source/* .
+rmdir source
+popd
+
+tar cjf eclipse-birt-${VERSION}-fetched-src.tar.bz2 eclipse-birt-${VERSION}


More information about the scm-commits mailing list