From d08885ce6a7d27dd056118ad3da4440b752e50a275fe07dcc4d82ed5261432a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Thu, 22 Nov 2018 22:44:02 +0000 Subject: [PATCH] Accepting request 651055 from home:pluskalm:branches:devel:libraries:c_c++ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update to version 1.24.0: * unix: do not require PATH_MAX to be defined (Brad King) * win,doc: path encoding in uv_fs_XX is UTF-8 (hitesh) * unix: add missing link dependency on kFreeBSD (Svante Signell) * unix: add support for GNU/Hurd (Samuel Thibault) * test: avoid memory leak for test_output (Carlo Marcelo Arenas Belón) * doc: add vtjnash to maintainers (Jameson Nash) * unix: restore skipping of phys_addr copy (cjihrig) * unix,win: make uv_interface_addresses() consistent (cjihrig) * unix: remove unnecessary linebreaks (cjihrig) * unix,win: handle zero-sized allocations uniformly (Ben Noordhuis) * unix: remove unused uv__dup() function (Ben Noordhuis) * core,bsd: refactor process_title functions (Santiago Gimeno) * test: make sure that reading a directory fails (Sakthipriyan Vairamani) * win, tty: remove zero-size read callbacks (Bartosz Sosnowski) * test: fix test runner getenv async-signal-safety (Ben Noordhuis) * test: fix test runner execvp async-signal-safety (Ben Noordhuis) * test,unix: fix race in test runner (Ben Noordhuis) * unix,win: support IDNA 2008 in uv_getaddrinfo() (Ben Noordhuis) OBS-URL: https://build.opensuse.org/request/show/651055 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=27 --- fix_tests.patch | 14 +++++++------- libuv-1.23.2.tar.gz | 3 --- libuv-1.24.0.tar.gz | 3 +++ libuv.changes | 23 +++++++++++++++++++++++ libuv.spec | 6 +++--- 5 files changed, 36 insertions(+), 13 deletions(-) delete mode 100644 libuv-1.23.2.tar.gz create mode 100644 libuv-1.24.0.tar.gz diff --git a/fix_tests.patch b/fix_tests.patch index 3995203..b9319e6 100644 --- a/fix_tests.patch +++ b/fix_tests.patch @@ -1,7 +1,7 @@ -Index: libuv-1.23.2/test/test-getnameinfo.c +Index: libuv-1.24.0/test/test-getnameinfo.c =================================================================== ---- libuv-1.23.2.orig/test/test-getnameinfo.c -+++ libuv-1.23.2/test/test-getnameinfo.c +--- libuv-1.24.0.orig/test/test-getnameinfo.c ++++ libuv-1.24.0/test/test-getnameinfo.c @@ -39,6 +39,8 @@ static void getnameinfo_req(uv_getnamein const char* hostname, const char* service) { @@ -11,11 +11,11 @@ Index: libuv-1.23.2/test/test-getnameinfo.c ASSERT(status == 0); ASSERT(hostname != NULL); ASSERT(service != NULL); -Index: libuv-1.23.2/test/test-list.h +Index: libuv-1.24.0/test/test-list.h =================================================================== ---- libuv-1.23.2.orig/test/test-list.h -+++ libuv-1.23.2/test/test-list.h -@@ -746,7 +746,7 @@ TASK_LIST_START +--- libuv-1.24.0.orig/test/test-list.h ++++ libuv-1.24.0/test/test-list.h +@@ -750,7 +750,7 @@ TASK_LIST_START TEST_ENTRY (getnameinfo_basic_ip4) TEST_ENTRY (getnameinfo_basic_ip4_sync) diff --git a/libuv-1.23.2.tar.gz b/libuv-1.23.2.tar.gz deleted file mode 100644 index e414322..0000000 --- a/libuv-1.23.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30af979c4f4b8d1b895ae6d115f7400c751542ccb9e656350fc89fda08d4eabd -size 1192529 diff --git a/libuv-1.24.0.tar.gz b/libuv-1.24.0.tar.gz new file mode 100644 index 0000000..2f19c67 --- /dev/null +++ b/libuv-1.24.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55587c525196a7a550fa7e5eb61794c377ec23b44adb435fdded86e8f7f31a16 +size 1201665 diff --git a/libuv.changes b/libuv.changes index df7637c..33cbc03 100644 --- a/libuv.changes +++ b/libuv.changes @@ -1,3 +1,26 @@ +------------------------------------------------------------------- +Thu Nov 22 10:10:36 UTC 2018 - Martin Pluskal + +- Update to version 1.24.0: + * unix: do not require PATH_MAX to be defined (Brad King) + * win,doc: path encoding in uv_fs_XX is UTF-8 (hitesh) + * unix: add missing link dependency on kFreeBSD (Svante Signell) + * unix: add support for GNU/Hurd (Samuel Thibault) + * test: avoid memory leak for test_output (Carlo Marcelo Arenas Belón) + * doc: add vtjnash to maintainers (Jameson Nash) + * unix: restore skipping of phys_addr copy (cjihrig) + * unix,win: make uv_interface_addresses() consistent (cjihrig) + * unix: remove unnecessary linebreaks (cjihrig) + * unix,win: handle zero-sized allocations uniformly (Ben Noordhuis) + * unix: remove unused uv__dup() function (Ben Noordhuis) + * core,bsd: refactor process_title functions (Santiago Gimeno) + * test: make sure that reading a directory fails (Sakthipriyan Vairamani) + * win, tty: remove zero-size read callbacks (Bartosz Sosnowski) + * test: fix test runner getenv async-signal-safety (Ben Noordhuis) + * test: fix test runner execvp async-signal-safety (Ben Noordhuis) + * test,unix: fix race in test runner (Ben Noordhuis) + * unix,win: support IDNA 2008 in uv_getaddrinfo() (Ben Noordhuis) + ------------------------------------------------------------------- Thu Oct 11 14:05:40 UTC 2018 - adam.majer@suse.de diff --git a/libuv.spec b/libuv.spec index 43c9e85..4eada26 100644 --- a/libuv.spec +++ b/libuv.spec @@ -12,18 +12,18 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define somajor 1 Name: libuv -Version: 1.23.2 +Version: 1.24.0 Release: 0 Summary: Asychronous I/O support library License: MIT Group: Development/Libraries/C and C++ -Url: http://libuv.org +URL: http://libuv.org # Using URL from upstream project fails due to ipv6 redirect # Source0: http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz # Source1: http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz.sign