node: bump to 14.18.2 17297/head
authorHirokazu MORIKAWA <morikw2@gmail.com>
Thu, 9 Dec 2021 23:57:11 +0000 (08:57 +0900)
committerHirokazu MORIKAWA <morikw2@gmail.com>
Thu, 9 Dec 2021 23:57:11 +0000 (08:57 +0900)
Update to v14.18.2
Remove unneeded c-ares patches

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
lang/node/Makefile
lang/node/patches/999-fix_building_with_system_c-ares_on_Linux.patch [deleted file]

index 726fceccd1fe9ecfa70a1385d2f88e63bd8e54ec..1dd6c7b1970be50a30ccd12bca0e4a02ee7ce203 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=node
-PKG_VERSION:=v14.18.1
+PKG_VERSION:=v14.18.2
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=https://nodejs.org/dist/$(PKG_VERSION)
-PKG_HASH:=3fa1d71adddfab2f5e3e41874b4eddbdf92b65cade4a43922fb1e437afcf89ed
+PKG_HASH:=3e8a9ce10f8bcd3628eb6dd049f7f03c84ba9219be6f9743e2221154b9cc680b
 
 PKG_MAINTAINER:=Hirokazu MORIKAWA <morikw2@gmail.com>, Adrian Panella <ianchi74@outlook.com>
 PKG_LICENSE:=MIT
diff --git a/lang/node/patches/999-fix_building_with_system_c-ares_on_Linux.patch b/lang/node/patches/999-fix_building_with_system_c-ares_on_Linux.patch
deleted file mode 100644 (file)
index 53f5ab6..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-From 8699aa501c4d4e1567ebe8901e5ec80cadaa9323 Mon Sep 17 00:00:00 2001
-From: Felix Yan <felixonmars@archlinux.org>
-Date: Thu, 12 Aug 2021 02:44:43 +0800
-Subject: [PATCH] deps: fix building with system c-ares on Linux
-
-The change in #39724 breaks building with system c-ares
-(`--shared-cares`):
-```
-In file included from ../src/cares_wrap.cc:25:
-../src/cares_wrap.h:25:11: fatal error: ares_nameser.h: No such file or
-directory
-   25 | # include <ares_nameser.h>
-      |           ^~~~~~~~~~~~~~~~
-```
-
-Since `ares_nameser.h` isn't available with a default system c-ares
-installation, let's add back the include check and use the old
-`arpa/nameser.h` routine instead.
-
-Tested to build fine on Arch Linux with shared c-ares.
----
- src/cares_wrap.h | 8 ++++++++
- 1 file changed, 8 insertions(+)
-
---- a/src/cares_wrap.h
-+++ b/src/cares_wrap.h
-@@ -22,7 +22,15 @@
- # include <netdb.h>
- #endif  // __POSIX__
-+#if defined(__ANDROID__) || \
-+    defined(__MINGW32__) || \
-+    defined(__OpenBSD__) || \
-+    defined(_MSC_VER)
-+
- # include <ares_nameser.h>
-+#else
-+# include <arpa/nameser.h>
-+#endif
- namespace node {
- namespace cares_wrap {