Blame SOURCES/fetch-jython.sh

d54696
#!/bin/sh
d54696
d54696
# Generate a source drop for jython
d54696
# Usage: sh fetch-jython.sh <TAG>
d54696
d54696
TAG=$1
d54696
d54696
rm -rf jython-$TAG
d54696
rm -rf jython-$TAG.tar.xz
d54696
hg clone -r "$TAG" https://hg.python.org/jython jython-$TAG
d54696
d54696
find jython-$TAG -type f -a -name *.jar -delete
d54696
find jython-$TAG -type f -a -name *.class -delete
d54696
find jython-$TAG -type f -a -name *.exe -delete
d54696
find jython-$TAG -type f -a -name *.dll -delete
d54696
rm -rf jython-$TAG/.hg
d54696
d54696
tar Jcf jython-$TAG.tar.xz jython-$TAG
d54696
rm -rf jython-$TAG