diff options
author | Remi Collet <fedora@famillecollet.com> | 2017-02-10 18:21:22 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2017-02-10 18:21:22 +0100 |
commit | 5f982d7fd761b61b46cc967d412b1ab27b57a3e0 (patch) | |
tree | a3f1ad23bc33a79cbe220a2540a208fafee2ef6b /makesrc.sh | |
parent | 29fabb5c9b3e89f456b6db466bb1d31ce4e5bd34 (diff) |
php-smbclient: 0.9.0 (stable)
Diffstat (limited to 'makesrc.sh')
-rwxr-xr-x | makesrc.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/makesrc.sh b/makesrc.sh deleted file mode 100755 index 24fbf81..0000000 --- a/makesrc.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/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) -COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) -SHORT=${COMMIT:0:7} - -echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" - -echo "Cloning..." -rm -rf $PROJECT-$COMMIT -git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT - -echo "Getting commit..." -pushd $PROJECT-$COMMIT -git checkout $COMMIT -popd - -echo "Archiving..." -tar czf $NAME-$VERSION-$SHORT.tgz --exclude .git $PROJECT-$COMMIT - -echo "Cleaning..." -rm -rf $PROJECT-$COMMIT - -echo "Done." |