summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2021-05-13 10:23:10 +0000
committernia <nia@pkgsrc.org>2021-05-13 10:23:10 +0000
commite248963b06c02cdc138cb9d9c78796b1cf705ecb (patch)
tree03b659c1ebef5bb9667fc0d3940ef125f603a03a
parente76fbaf000ff95d62260588139c42f44aebdc647 (diff)
downloadpkgsrc-e248963b06c02cdc138cb9d9c78796b1cf705ecb.tar.gz
lua-luv: update to 1.41.0
Changes: Updated Libuv to 1.41.0 Fix/add support for Lua 5.4 CMake: Only require finding Lua libs via find_package on Windows fs_{read,write}: make offset argument optional and default it to -1 Add udp_set_source_membership binding + improve udp_set_membership Add pipe_chmod binding Add process_get_pid binding Add handle_get_type and req_get_type Add method form of uv.cancel: req:cancel() Add loop_configure binding Fix garbage collection-related memory bug with threads fix install path for make install with Luajit 2.1 Fix args potentially being garbage collected before use in luv_spawn fix bug in luv_check_fs Add uv.loop_mode function Add BUILD_STATIC_LIBS to Makefile fix a memry bug in thread pool work callback Fix possible memory leak in lhandle.c fix memleaks in luv_cpu_info fs: Print destination paths in error messages for the relevant functions Make symlink/copyfile bindings more user-friendly Fix shared library build failure on macOS
-rw-r--r--devel/lua-luv/Makefile4
-rw-r--r--devel/lua-luv/distinfo10
-rw-r--r--devel/lua-luv/patches/patch-src_luv.c15
-rw-r--r--devel/lua-luv/patches/patch-src_private.h15
4 files changed, 7 insertions, 37 deletions
diff --git a/devel/lua-luv/Makefile b/devel/lua-luv/Makefile
index 6f413443189..d376d49e2b6 100644
--- a/devel/lua-luv/Makefile
+++ b/devel/lua-luv/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2020/07/02 20:48:09 nia Exp $
+# $NetBSD: Makefile,v 1.2 2021/05/13 10:23:10 nia Exp $
-DISTNAME= luv-1.36.0-0
+DISTNAME= luv-1.41.0-0
PKGNAME= ${LUA_PKGPREFIX}-${DISTNAME:S/-0//1}
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=luvit/}
diff --git a/devel/lua-luv/distinfo b/devel/lua-luv/distinfo
index ccdf6d087a3..2ab54fccdb9 100644
--- a/devel/lua-luv/distinfo
+++ b/devel/lua-luv/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.1 2020/07/02 20:48:09 nia Exp $
+$NetBSD: distinfo,v 1.2 2021/05/13 10:23:10 nia Exp $
-SHA1 (luv-1.36.0-0.tar.gz) = f070256fe5567c1d475d2c6337c01d7e87d3a4aa
-RMD160 (luv-1.36.0-0.tar.gz) = 950a7289b11105be4d438fa6a022e1225c6ec141
-SHA512 (luv-1.36.0-0.tar.gz) = 9972d82bacdcf528d95047f3f2cfbceb523f6d6f5782e577b24cdd25f1292df745d3fb116b6fbd376d797df47c378ad25d5b673044d9ab5678af6e5fef5eca49
-Size (luv-1.36.0-0.tar.gz) = 1387184 bytes
+SHA1 (luv-1.41.0-0.tar.gz) = 3926b105a1d5294b7f46ce0aaceaebb6bac69178
+RMD160 (luv-1.41.0-0.tar.gz) = da2d8d2bb0451663af816bf91800f5b71af6164f
+SHA512 (luv-1.41.0-0.tar.gz) = ae6a74619988c972df3bf8f00330da981d70e64713d7ad68528e93e5ac118a28523b4de2a559cb537893f7df93bba0b0bb67559a538cf0e55eaced76f11ba26e
+Size (luv-1.41.0-0.tar.gz) = 1430613 bytes
SHA1 (patch-src_luv.c) = 52ec94671dfdc86e421119ddca13646ee7c6e2e2
SHA1 (patch-src_private.h) = f086e40c912851a319626986840fe75eeb0e52f5
diff --git a/devel/lua-luv/patches/patch-src_luv.c b/devel/lua-luv/patches/patch-src_luv.c
deleted file mode 100644
index 9a0f977ba95..00000000000
--- a/devel/lua-luv/patches/patch-src_luv.c
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-src_luv.c,v 1.1 2020/07/02 20:48:09 nia Exp $
-
-Support Lua 5.4
-
---- src/luv.c.orig 2020-04-19 08:44:19.000000000 +0000
-+++ src/luv.c
-@@ -16,7 +16,7 @@
- */
-
- #include <lua.h>
--#if (LUA_VERSION_NUM != 503)
-+#if (LUA_VERSION_NUM < 503)
- #include "compat-5.3.h"
- #endif
- #include "luv.h"
diff --git a/devel/lua-luv/patches/patch-src_private.h b/devel/lua-luv/patches/patch-src_private.h
deleted file mode 100644
index a13760e1207..00000000000
--- a/devel/lua-luv/patches/patch-src_private.h
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-src_private.h,v 1.1 2020/07/02 20:48:09 nia Exp $
-
-Support Lua 5.4
-
---- src/private.h.orig 2020-04-19 08:44:19.000000000 +0000
-+++ src/private.h
-@@ -2,7 +2,7 @@
- #define LUV_PRIVATE_H
-
- #include <lua.h>
--#if (LUA_VERSION_NUM != 503)
-+#if (LUA_VERSION_NUM < 503)
- #include "compat-5.3.h"
- #endif
-