10
0
Илья Индиго
2025-03-01 20:57:13 +00:00
committed by Git OBS Bridge
commit 2a9ecacd9e
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:1dcd917e5018cd075ea550adad11d2557c2fad2738dd4606b8db42b0e08ab971
size 28471

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ceba20d08b99cf10bb5c7fc5eb1df706edbc27e6ab0e192e87da0ee8b97df19
size 30911

View File

@@ -0,0 +1,16 @@
-------------------------------------------------------------------
Sat Mar 1 20:53:03 UTC 2025 - Илья Индиго <ilya@ilya.top>
- Updated to 0.13.
* https://github.com/openresty/lua-resty-websocket/compare/v0.12...v0.13
-------------------------------------------------------------------
Wed Aug 28 06:11:35 UTC 2024 - Илья Индиго <ilya@ilya.top>
- Updated to 0.12.
* Upstream doesn't provide a ChangeLog.
-------------------------------------------------------------------
Wed May 1 02:12:15 UTC 2024 - Илья Индиго <ilya@ilya.top>
- Initialized 0.11.

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

@@ -0,0 +1,47 @@
#
# spec file for package lua-resty-websocket
#
# 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-websocket
Version: 0.13
Release: 0
Summary: Lua WebSocket implementation for the ngx_lua module
License: BSD-2-Clause
URL: https://github.com/openresty/lua-resty-websocket
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 implements a WebSocket server and client libraries based on 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