diff options
| author | Remi Collet <remi@remirepo.net> | 2026-07-07 05:45:49 +0200 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-07-07 05:45:49 +0200 |
| commit | fa8a8ac3fef4303282341ae4f4786cefde7a205b (patch) | |
| tree | ab6814738e17d72c53cadf09529d95f0ea4ac827 /makesrc.sh | |
| parent | 3a00352d49126f73803c72840bc6f4c73ae9366e (diff) | |
Diffstat (limited to 'makesrc.sh')
| -rwxr-xr-x | makesrc.sh | 30 |
1 files changed, 10 insertions, 20 deletions
@@ -1,37 +1,27 @@ #!/bin/bash NAME=$(basename $PWD) -DATE=$(sed -n '/^%global gh_date/{s/.* //;p}' $NAME.spec) OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) -VERSION=$(sed -n '/^%global upstream_version/{s/.* //;p}' $NAME.spec) -MAJOR=$(sed -n '/^%global ver_major/{s/.* //;p}' $NAME.spec) -MINOR=$(sed -n '/^%global ver_minor/{s/.* //;p}' $NAME.spec) -COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) -SHORT=${COMMIT:0:7} +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) -DATE=$(date -d "$DATE -1 week" +%Y-%m-%d) - -if [ -f $NAME-$VERSION-$SHORT.tgz ]; then - echo "$NAME-$VERSION-$SHORT.tgz already there" +if [ -f $NAME-$VERSION.tgz ]; then + echo "$NAME-$VERSION.tgz already there" else - echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION, Date=$DATE\n" + echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION \n" echo "Cloning..." - rm -rf $PROJECT-$COMMIT - git clone --branch $MAJOR.$MINOR --shallow-since=$DATE https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT || exit 1 + rm -rf $PROJECT-$VERSION + git clone https://github.com/$OWNER/$PROJECT.git --depth 1 --branch $VERSION $PROJECT-$VERSION || exit 1 - echo "Getting commit..." - pushd $PROJECT-$COMMIT - git checkout $COMMIT || exit 1 - cp composer.json ../composer.json - popd + echo "Getting composer..." + cp $PROJECT-$VERSION/composer.json composer.json echo "Archiving..." - tar czf $NAME-$VERSION-$SHORT.tgz --exclude-vcs --exclude tools $PROJECT-$COMMIT + tar czf $NAME-$VERSION.tgz --exclude-vcs --exclude tools $PROJECT-$VERSION echo "Cleaning..." - rm -rf $PROJECT-$COMMIT + rm -rf $PROJECT-$VERSION echo "Done." fi |
