summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmakesrc.sh20
-rw-r--r--redis-json.spec5
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 0fbb67a..38b8370 100644
--- a/redis-json.spec
+++ b/redis-json.spec
@@ -19,7 +19,7 @@
%global archivename %{gh_proj}-%{version}
Name: redis-json
-Version: 8.4.4
+Version: 8.4.5
%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.4.5-1
+- update to 8.4.5
+
* Tue Apr 28 2026 Remi Collet <remi@remirepo.net> - 8.4.4-1
- update to 8.4.4