forked from pool/lua-resty-redis
Compare commits
1 Commits
b99ba43a49
...
main
Author | SHA256 | Date | |
---|---|---|---|
a80ada4e24 |
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
BIN
lua-resty-redis-0.33.tar.gz
(Stored with Git LFS)
Normal file
BIN
lua-resty-redis-0.33.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
22
lua-resty-redis.changes
Normal file
22
lua-resty-redis.changes
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 9 19:47:55 UTC 2025 - Илья Индиго <ilya@ilya.top>
|
||||||
|
|
||||||
|
- Updated to 0.33.
|
||||||
|
* https://github.com/openresty/lua-resty-redis/compare/v0.32...v0.33
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 1 20:52:17 UTC 2025 - Илья Индиго <ilya@ilya.top>
|
||||||
|
|
||||||
|
- Updated to 0.32.
|
||||||
|
* https://github.com/openresty/lua-resty-redis/compare/v0.31...v0.32
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 28 06:15:06 UTC 2024 - Илья Индиго <ilya@ilya.top>
|
||||||
|
|
||||||
|
- Updated to 0.31.
|
||||||
|
* Upstream doesn't provide a ChangeLog.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 1 02:11:25 UTC 2024 - Илья Индиго <ilya@ilya.top>
|
||||||
|
|
||||||
|
- Initialized 0.29.
|
47
lua-resty-redis.spec
Normal file
47
lua-resty-redis.spec
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
#
|
||||||
|
# spec file for package lua-resty-redis
|
||||||
|
#
|
||||||
|
# Copyright (c) 2025 SUSE LLC
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define lua_version 5.1
|
||||||
|
Name: lua-resty-redis
|
||||||
|
Version: 0.33
|
||||||
|
Release: 0
|
||||||
|
Summary: Lua redis client driver for the ngx_lua based on the cosocket API
|
||||||
|
License: BSD-2-Clause
|
||||||
|
URL: https://github.com/openresty/lua-resty-redis
|
||||||
|
Source0: https://github.com/openresty/%{name}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
|
BuildRequires: lua-macros
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description
|
||||||
|
This Lua library is a Redis client driver for the ngx_lua nginx module.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%make_install LUA_LIB_DIR=%{lua_noarchdir}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(0644,root,root,-)
|
||||||
|
%doc README.markdown
|
||||||
|
%dir %{lua_noarchdir}
|
||||||
|
%{lua_noarchdir}/resty
|
||||||
|
|
||||||
|
%changelog
|
Reference in New Issue
Block a user