From 7c6dffe34d2f0eccf6805eba452e219778a3109c Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Tue, 5 Jul 2011 09:23:20 -0400 Subject: [PATCH] Adds tarball generation script This just makes it easier to generate tarballs of master and tarballs of releases. --- maketarball.sh | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100755 maketarball.sh diff --git a/maketarball.sh b/maketarball.sh new file mode 100755 index 00000000..ef34da5b --- /dev/null +++ b/maketarball.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +# usage: maketarball +# maketarball +# +# With no arguments, this creates a source tarball from git master with a +# filename based on today's date. +# +# With a argument, this creates a tarball of the tag. +# +# Examples: +# +# ./maketarball +# ./maketarball v0.0.2 + +NOWDATE=`date "+%Y-%m-%d"` + +if [ -z "$1" ] +then + REVISH=master + PREFIX="$NOWDATE-$REVISH" +else + REVISH=$1 + PREFIX="$REVISH" +fi + +# convert PREFIX to all lowercase. +# nix the v from tag names. +PREFIX=`echo "$PREFIX" | tr '[A-Z]' '[a-z]' | sed s/v//` + +echo "== REVISH $REVISH" +echo "== PREFIX $PREFIX" + +echo "" + +echo "generating archive...." +git archive \ + --format=tar \ + --prefix=mediagoblin-$PREFIX/ \ + $REVISH > mediagoblin-$PREFIX.tar + +echo "compressing...." +gzip mediagoblin-$PREFIX.tar + +echo "archive at mediagoblin-$PREFIX.tar.gz" + +echo "done." \ No newline at end of file -- 2.25.1