From 38681161daef1623b7baab393665e21b1616057a Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 19 Dec 2019 07:14:05 +0000 Subject: [PATCH 1/4] 3.2.1 --- .gitignore | 1 + libwebsockets.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1c20df8..13d100c 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /libwebsockets-3.0.1.tar.gz /libwebsockets-3.1.0.tar.gz /libwebsockets-3.2.0.tar.gz +/libwebsockets-3.2.1.tar.gz diff --git a/libwebsockets.spec b/libwebsockets.spec index 9a4aad8..b03b106 100644 --- a/libwebsockets.spec +++ b/libwebsockets.spec @@ -1,5 +1,5 @@ Name: libwebsockets -Version: 3.2.0 +Version: 3.2.1 Release: 1%{?dist} Summary: A lightweight C library for Websockets @@ -100,6 +100,9 @@ find %{buildroot} -name '*_static.pc' -delete %{_libdir}/pkgconfig/%{name}.pc %changelog +* Thu Dec 19 2019 Peter Robinson 3.2.1-1 +- Update to 3.2.1 + * Mon Sep 2 2019 Peter Robinson 3.2.0-1 - Update to 3.2.0 diff --git a/sources b/sources index b664667..3ca3af6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libwebsockets-3.2.0.tar.gz) = afc1c9e259d6d48000b09da111af4129680d50474cdfedbad197ee22260d57a837b67cc6a3f8e6b1aa7ce7dc5d3fd900569783631540501709868125c6d1e4da +SHA512 (libwebsockets-3.2.1.tar.gz) = a2d30a7a0416a26484743efdaa8635542480a74b0ef0f6e172dab5de4688486efb13457fc8a884d9916f76322cab0cbc9ab675f496558edd1dd9b833d087207d From e3b6c309a3b448ca9e8b74e069d0c1274dbc4e1c Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 19 Dec 2019 07:29:00 +0000 Subject: [PATCH 2/4] drop upstreamed patch --- libwebsockets.spec | 1 - sock-fix-build.patch | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 100644 sock-fix-build.patch diff --git a/libwebsockets.spec b/libwebsockets.spec index b03b106..46bdd83 100644 --- a/libwebsockets.spec +++ b/libwebsockets.spec @@ -10,7 +10,6 @@ Summary: A lightweight C library for Websockets License: LGPLv2 and Public Domain and BSD and MIT and zlib URL: http://libwebsockets.org Source0: https://github.com/warmcat/libwebsockets/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz -Patch0: sock-fix-build.patch BuildRequires: cmake BuildRequires: gcc diff --git a/sock-fix-build.patch b/sock-fix-build.patch deleted file mode 100644 index 2583db9..0000000 --- a/sock-fix-build.patch +++ /dev/null @@ -1,20 +0,0 @@ -Author: Sviatoslav Grebenchucov -Date: Sun Aug 25 20:52:20 2019 +0200 - -socks: Fix compilation error - - -diff --git a/lib/roles/http/client/client.c b/lib/roles/http/client/client.c -index 65b7c54..b1e795d 100644 ---- a/lib/roles/http/client/client.c -+++ b/lib/roles/http/client/client.c -@@ -214,7 +214,7 @@ lws_client_socket_service(struct lws *wsi, struct lws_pollfd *pollfd, - lwsl_client("SOCKS password OK, sending connect\n"); - if (socks_generate_msg(wsi, SOCKS_MSG_CONNECT, &len)) { - socks_send_msg_fail: -- *cce = "socks gen msg fail"; -+ cce = "socks gen msg fail"; - goto bail3; - } - conn_mode = LRS_WAITING_SOCKS_CONNECT_REPLY; - From 13ab23d0c712d82fce5e612abff3a59356c1181b Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Tue, 10 Sep 2019 15:15:52 -0500 Subject: [PATCH 3/4] "Adding package.cfg file" --- package.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 package.cfg diff --git a/package.cfg b/package.cfg new file mode 100644 index 0000000..66ea79d --- /dev/null +++ b/package.cfg @@ -0,0 +1,2 @@ +[koji] +targets = epel8 epel8-playground \ No newline at end of file From 48405da5c1f247d7653b6e459d2d1b5abf0cea7b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 18 Jan 2020 22:37:38 +0100 Subject: [PATCH 4/4] * Sat Jan 18 2020 Fabian Affolter - 3.2.2-1 - Update to latest upstream release 3.2.2 (rhbz#1792585) --- .gitignore | 1 + libwebsockets.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 13d100c..28dc856 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /libwebsockets-3.1.0.tar.gz /libwebsockets-3.2.0.tar.gz /libwebsockets-3.2.1.tar.gz +/libwebsockets-3.2.2.tar.gz diff --git a/libwebsockets.spec b/libwebsockets.spec index 46bdd83..199ed86 100644 --- a/libwebsockets.spec +++ b/libwebsockets.spec @@ -1,5 +1,5 @@ Name: libwebsockets -Version: 3.2.1 +Version: 3.2.2 Release: 1%{?dist} Summary: A lightweight C library for Websockets @@ -99,6 +99,9 @@ find %{buildroot} -name '*_static.pc' -delete %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Jan 18 2020 Fabian Affolter - 3.2.2-1 +- Update to latest upstream release 3.2.2 (rhbz#1792585) + * Thu Dec 19 2019 Peter Robinson 3.2.1-1 - Update to 3.2.1 diff --git a/sources b/sources index 3ca3af6..83faba3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libwebsockets-3.2.1.tar.gz) = a2d30a7a0416a26484743efdaa8635542480a74b0ef0f6e172dab5de4688486efb13457fc8a884d9916f76322cab0cbc9ab675f496558edd1dd9b833d087207d +SHA512 (libwebsockets-3.2.2.tar.gz) = be6cd57ae1d15de059c277ce56e9ccc87f7918811b40a427c96978397f2b1d446e1b5ed6ae62a6aa82c6d775871d6a15885d283d74d7887e98205ab61d206fc0