google-guice/create-tarball.sh

17 lines
493 B
Bash
Raw Normal View History

2012-11-16 12:57:37 +00:00
#!/bin/sh
set -e -x
test $# -eq 1
2015-05-14 12:30:28 +00:00
test ! -d guice
git clone git://github.com/google/guice.git
cd ./guice
git checkout ${1}
git branch unbundled-${1}
git checkout unbundled-${1}
rm -rf $(ls . | grep -E -v 'core|extensions|pom|bom|jdk8-tests|COPYING|common.xml')
find . -name "*.jar" -delete
find . -name "*.class" -delete
2012-11-16 12:57:37 +00:00
git commit -a -m "Remove unneeded stuff"
git tag unbundled-${1}
git archive --format=tar --prefix=google-guice-${1}/ unbundled-${1} \
| xz >../google-guice-${1}.tar.xz