10
0

- Updated to 0.15.

* Upstream doesn't provide a ChangeLog.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-resty-lrucache?expand=0&rev=5
This commit is contained in:
Илья Индиго
2024-11-07 08:23:46 +00:00
committed by Git OBS Bridge
commit 7ab314c432
7 changed files with 96 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@@ -0,0 +1 @@
.osc

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:573184006b98ccee2594b0d134fa4d05e5d2afd5141cbad315051ccf7e9b6403
size 17429

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5a9f2e3a292dc9745f267082fc4d5b9bed5ab55f27ea5495986eb2965918e803
size 17848

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8cf1a22e0d5b8f35cb0b2e14c58fcb3aa505a8fb6e956817f0cdb1f06593f072
size 17834

View File

@@ -0,0 +1,16 @@
-------------------------------------------------------------------
Thu Nov 7 08:22:22 UTC 2024 - Илья Индиго <ilya@ilya.top>
- Updated to 0.15.
* Upstream doesn't provide a ChangeLog.
-------------------------------------------------------------------
Wed Aug 28 06:07:02 UTC 2024 - Илья Индиго <ilya@ilya.top>
- Updated to 0.14.
* Upstream doesn't provide a ChangeLog.
-------------------------------------------------------------------
Wed May 1 02:10:20 UTC 2024 - Илья Индиго <ilya@ilya.top>
- Initialized 0.13.

47
lua-resty-lrucache.spec Normal file
View File

@@ -0,0 +1,47 @@
#
# spec file for package lua-resty-lrucache
#
# Copyright (c) 2024 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-lrucache
Version: 0.15
Release: 0
Summary: Lua-land LRU cache based on the LuaJIT FFI
License: BSD-2-Clause
URL: https://github.com/openresty/lua-resty-lrucache
Source0: https://github.com/openresty/%{name}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: lua-macros
BuildArch: noarch
%description
This library implements a simple LRU cache for OpenResty and the ngx_lua 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