Sophie

Sophie

distrib > Mageia > 9 > armv7hl > by-pkgid > 2bdc4b5992851df8204ce934940554d2 > files > 1

google-guice-4.2.3-6.mga9.src.rpm

#!/bin/sh
set -e -x
test $# -eq 1
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
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