223269300f
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/rubygem-rspec-mocks#985e3b5a3519a9146f619f8493fd84c6bcde3fd1
28 lines
350 B
Bash
28 lines
350 B
Bash
#!/bin/bash
|
|
|
|
if [ $# -lt 2 ]
|
|
then
|
|
echo "$0 <name> <version>"
|
|
exit 1
|
|
fi
|
|
|
|
set -x
|
|
set -e
|
|
|
|
CURRDIR=$(pwd)
|
|
|
|
TMPDIRPATH=$(mktemp -d /var/tmp/rspec-tar-XXXXXX)
|
|
pushd $TMPDIRPATH
|
|
|
|
git clone https://github.com/rspec/$1.git
|
|
pushd $1
|
|
git reset --hard v$2
|
|
popd
|
|
|
|
ln -sf $1 $1-$2
|
|
tar czf ${CURRDIR}/rubygem-$1-$2-full.tar.gz $1-$2/./
|
|
|
|
popd
|
|
|
|
rm -rf $TMPDIRPATH
|