/usr/bin/jh_repack is in javahelper 0.45ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | #!/bin/bash --
set -e
. /usr/share/javahelper/jh_lib.sh
syntax()
{
echo -e "Usage: jh_repack --upstream-version <version> <orig.tar.gz>"
echo -e "Options:"
echo -e "\t-h --help: show this text"
echo -e "\t-V --version: show the version"
echo -e "\t-v --verbose: show more information while running"
echo -e "\t-n --no-act: don't actually do anything, just print the results"
exit 1
}
ARGS="upstream-version v verbose n no-act" parseargs "$@"
VERBOSE="`getarg v verbose`"
if [ "$ARGC" != "2" ] ; then
syntax
exit 1
fi
VERSION=${ARGV[0]}
TARBALL="`readlink -f "${ARGV[1]}"`"
TMPDIR=`mktemp -d`
cd "$TMPDIR"
if [ -n "$VERBOSE" ]; then
echo "Repacking tarball $TARBALL"
fi
if [ -n "`getarg n no-act`" ]; then
echo "Would repack $TARBALL"
exit 0
fi
if grep tar.gz$ <<< $TARBALL &>/dev/null; then
TYPE=gzip
tar zxf "$TARBALL"
elif grep tar.bz2$ <<< $TARBALL &>/dev/null; then
TYPE=bzip2
tar jxf "$TARBALL"
elif grep zip$ <<< $TARBALL &>/dev/null; then
TYPE=zip
unzip -qq "$TARBALL"
else
echo "Do not know how to unpack $TARBALL (expecting tar.gz, tar.bz2 or zip)"
fi
SUBDIR=
if [ "`ls -1 | wc -l`" = "1" ]; then
cd *
SUBDIR=true
fi
find . -name '*.class' -a -type f -print0 | xargs -0 rm -f
find . -name '*.jar' -a -type f -print0 | xargs -0 rm -f
IFS='
'
for doctree in `find . -name allclasses-frame.html`; do
TREE="`dirname $doctree`"
rm -rf "$TREE"/*
done
find * -depth -type d -print0 | xargs -0 rmdir --ignore-fail-on-non-empty
if [ -n "$SUBDIR" ]; then
cd ..
fi
rm -f "$TARBALL"
case "$TYPE" in
gzip)
tar zcf "$TARBALL" *
;;
bzip2)
tar jcf "$TARBALL" *
;;
zip)
tar zcf "${TARBALL%.zip}.tar.gz" *
;;
esac
cd /
rm -rf "$TMPDIR"
if [ -n "$VERBOSE" ]; then
echo "done"
fi
|