#!/bin/bash NAME=$(basename $PWD) OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) SHORT=${COMMIT:0:7} if [ -f $NAME-$VERSION.tgz ]; then echo Skip $NAME-$VERSION.tgz else echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" echo "Cloning..." rm -rf $PROJECT-$COMMIT git clone --recursive --branch v$VERSION https://github.com/$OWNER/$PROJECT.git $PROJECT-$VERSION echo "Archiving..." tar czf $NAME-$VERSION.tgz --exclude .git $PROJECT-$VERSION echo "Cleaning..." rm -rf $PROJECT-$VERSION echo "Done." fi spectool -g -S *spec