commit 2a9ecacd9ef578a6f6db2f141d9f08711df25d02201810267cb02c53618d377b Author: Илья Индиго Date: Sat Mar 1 20:57:13 2025 +0000 - Updated to 0.13. * https://github.com/openresty/lua-resty-websocket/compare/v0.12...v0.13 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-resty-websocket?expand=0&rev=5 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/lua-resty-websocket-0.11.tar.gz b/lua-resty-websocket-0.11.tar.gz new file mode 100644 index 0000000..913c8ef --- /dev/null +++ b/lua-resty-websocket-0.11.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dcd917e5018cd075ea550adad11d2557c2fad2738dd4606b8db42b0e08ab971 +size 28471 diff --git a/lua-resty-websocket-0.12.tar.gz b/lua-resty-websocket-0.12.tar.gz new file mode 100644 index 0000000..9846043 --- /dev/null +++ b/lua-resty-websocket-0.12.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd213039fe300b5a063995fcc4ed546ae564bc80cad7f0271898fb2d9f39fea3 +size 30905 diff --git a/lua-resty-websocket-0.13.tar.gz b/lua-resty-websocket-0.13.tar.gz new file mode 100644 index 0000000..7e2a24c --- /dev/null +++ b/lua-resty-websocket-0.13.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceba20d08b99cf10bb5c7fc5eb1df706edbc27e6ab0e192e87da0ee8b97df19 +size 30911 diff --git a/lua-resty-websocket.changes b/lua-resty-websocket.changes new file mode 100644 index 0000000..fcf99a7 --- /dev/null +++ b/lua-resty-websocket.changes @@ -0,0 +1,16 @@ +------------------------------------------------------------------- +Sat Mar 1 20:53:03 UTC 2025 - Илья Индиго + +- Updated to 0.13. + * https://github.com/openresty/lua-resty-websocket/compare/v0.12...v0.13 + +------------------------------------------------------------------- +Wed Aug 28 06:11:35 UTC 2024 - Илья Индиго + +- Updated to 0.12. + * Upstream doesn't provide a ChangeLog. + +------------------------------------------------------------------- +Wed May 1 02:12:15 UTC 2024 - Илья Индиго + +- Initialized 0.11. diff --git a/lua-resty-websocket.spec b/lua-resty-websocket.spec new file mode 100644 index 0000000..c3244c6 --- /dev/null +++ b/lua-resty-websocket.spec @@ -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