diff options
| -rwxr-xr-x | makesrc.sh | 20 | ||||
| -rw-r--r-- | redis-json.spec | 5 |
2 files changed, 24 insertions, 1 deletions
diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..3054ed1 --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_vend/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_proj/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" + +echo "Cloning..." +rm -rf $PROJECT-$VERSION +git clone --branch v$VERSION --recursive https://github.com/$OWNER/$PROJECT.git $PROJECT-$VERSION + +echo "Archiving..." +tar czf $NAME-$VERSION.tgz --exclude-vcs $PROJECT-$VERSION + +echo "Cleaning..." +rm -rf $PROJECT-$VERSION + +echo "Done." diff --git a/redis-json.spec b/redis-json.spec index 2bc7299..af2e42a 100644 --- a/redis-json.spec +++ b/redis-json.spec @@ -19,7 +19,7 @@ %global archivename %{gh_proj}-%{version} Name: redis-json -Version: 8.6.3 +Version: 8.6.4 %forgemeta Release: 1%{?dist} Summary: JSON as native data type @@ -136,6 +136,9 @@ install -Dpm640 %{cfgname} %{buildroot}%{redis_modules_cfg}/%{cfgname %changelog +* Mon May 25 2026 Remi Collet <remi@remirepo.net> - 8.6.4-1 +- update to 8.6.4 + * Tue Apr 28 2026 Remi Collet <remi@remirepo.net> - 8.6.3-1 - update to 8.6.3 |
