add node18

This commit is contained in:
ziggi
2022-09-23 17:59:52 +02:00
parent b42ec42378
commit 1c1ce4bd84
17 changed files with 3052 additions and 0 deletions

75
lang/node18/Makefile Normal file
View File

@@ -0,0 +1,75 @@
# $FreeBSD: head/www/node/Makefile 453790 2017-11-09 02:31:47Z jbeich $
PORTNAME= node
PORTVERSION= 18.7.0
DISTVERSIONPREFIX= v
CATEGORIES= www
MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/
MAINTAINER= bhughes@FreeBSD.org
COMMENT= V8 JavaScript for client and server
LIB_DEPENDS+= libicui18n.so:devel/libicu
LIB_DEPENDS+= libcares.so:net/libcares
LIB_DEPENDS+= libuv.so:devel/libuv
CONFLICTS_INSTALL= node[4568]-[0-9]*
ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386
USES= compiler:c++11-lib gmake python:2.7,build pkgconfig localbase shebangfix
HAS_CONFIGURE= yes
USE_LDCONFIG= yes
PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,}
REINPLACE_ARGS= -i ''
CONFIGURE_ARGS+= --prefix=${PREFIX_RELDEST}
CONFIGURE_ARGS+= --without-npm
CONFIGURE_ARGS+= --shared-cares
CONFIGURE_ARGS+= --shared-libuv
CONFIGURE_ARGS+= --shared-zlib
#CONFIGURE_ARGS+= --with-intl=system-icu
CONFIGURE_ARGS+=--openssl-no-asm
CONFIGURE_ENV+= PKG_CONFIG_PATH=/usr/libdata/pkgconfig:${LOCALBASE}/lib/pkgconfig
SHEBANG_FILES= deps/v8/tools/*.py \
deps/v8/third_party/inspector_protocol/*.py \
tools/*.py \
tools/inspector_protocol/*.py
MAKE_ENV+= CC.host=${CC} CXX.host=${CXX} LINK.host=${CXX} LINK.target=${CXX}
.include <bsd.port.pre.mk>
#.if ${ARCH} == armv6 || ${ARCH} == armv7 ||
#.endif
#.if ${COMPILER_TYPE} == gcc
## GCC does not expose std::snprintf() without this define
#CXXFLAGS+= -D_GLIBCXX_USE_C99
#.endif
#post-patch:
# ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
# ${WRKSRC}/deps/v8/gypfiles/v8.gyp
post-configure:
# Post-process Makefile and *.mk files created by node-gyp and remove
# all occurrences of -I${LOCALBASE}/include. C*FLAGS include this
# before all -I../deps/* for bundled code. This can cause build
# breakages if the dependency is installed in ${LOCALBASE}. The
# USES+=localbase # above will ensure that we pick up includes for real
# external dependencies.
${FIND} ${WRKSRC}/out -type f -print0 \
| ${XARGS} -0 ${REINPLACE_CMD} -e "s|-I${LOCALBASE}/include||g"
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/node
.include <bsd.port.post.mk>
#EOF

3
lang/node18/distinfo Normal file
View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1663941576
SHA256 (node-v18.7.0.tar.gz) = 7dcf86ccd6831032531bcbec0cdcc993f9997bba2f53f6d29c72603ea69285ba
SIZE (node-v18.7.0.tar.gz) = 80049057

View File

@@ -0,0 +1,13 @@
--- common.gypi.orig 2019-10-01 15:32:40.000000000 +0200
+++ common.gypi 2019-10-16 12:47:09.236138000 +0200
@@ -390,8 +390,8 @@
'ldflags': [ '-m32' ],
}],
[ 'target_arch=="ppc64" and OS!="aix"', {
- 'cflags': [ '-m64', '-mminimal-toc' ],
- 'ldflags': [ '-m64' ],
+ 'cflags': [ '-m64' ],
+ 'ldflags': [ '-m64' ],
}],
[ 'target_arch=="s390x"', {
'cflags': [ '-m64', '-march=z196' ],

View File

@@ -0,0 +1,11 @@
--- deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi.orig 2021-10-19 00:48:28 UTC
+++ deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi
@@ -13,7 +13,7 @@
'-Wall -O3 -fomit-frame-pointer',
],
'openssl_ex_libs_linux-elf': [
- '-ldl -pthread',
+ '-pthread',
],
'openssl_cli_srcs_linux-elf': [
'openssl/apps/lib/cmp_mock_srv.c',

View File

@@ -0,0 +1,11 @@
--- deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi.orig 2021-10-19 00:48:28 UTC
+++ deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi
@@ -980,7 +980,7 @@
'-Wall -O3 -fomit-frame-pointer',
],
'openssl_ex_libs_linux-elf': [
- '-ldl -pthread',
+ '-pthread',
],
},
'include_dirs': [

View File

@@ -0,0 +1,17 @@
--- deps/openssl/openssl-cl_no_asm.gypi.orig 2022-07-26 14:30:08 UTC
+++ deps/openssl/openssl-cl_no_asm.gypi
@@ -1,4 +1,5 @@
{
+ 'defines': ['OPENSSL_NO_ASM'],
'conditions': [
['target_arch=="ppc64" and OS=="aix"', {
'includes': ['config/archs/aix64-gcc-as/no-asm/openssl-cl.gypi'],
@@ -43,7 +44,7 @@
'includes': ['config/archs/linux64-riscv64/no-asm/openssl-cl.gypi'],
}, {
# Other architectures don't use assembly
- 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'],
+ 'includes': ['config/archs/linux-elf/no-asm/openssl-cl.gypi'],
}],
],
}

View File

@@ -0,0 +1,11 @@
--- deps/openssl/openssl_no_asm.gypi.orig 2020-09-08 12:17:11 UTC
+++ deps/openssl/openssl_no_asm.gypi
@@ -48,7 +48,7 @@
'includes': ['config/archs/linux64-mips64/no-asm/openssl.gypi'],
}, {
# Other architectures don't use assembly
- 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'],
+ 'includes': ['config/archs/linux-elf/no-asm/openssl.gypi'],
}],
],
}

View File

@@ -0,0 +1,13 @@
--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2020-06-30 17:49:16 UTC
+++ deps/v8/src/base/platform/platform-freebsd.cc
@@ -82,8 +82,8 @@ std::vector<OS::SharedLibraryAddress> OS::GetSharedLib
lib_name = std::string(path);
}
result.push_back(SharedLibraryAddress(
- lib_name, reinterpret_cast<uintptr_t>(map->kve_start),
- reinterpret_cast<uintptr_t>(map->kve_end)));
+ lib_name, static_cast<uintptr_t>(map->kve_start),
+ static_cast<uintptr_t>(map->kve_end)));
}
start += ssize;

View File

@@ -0,0 +1,18 @@
--- deps/v8/src/codegen/arm/cpu-arm.cc.orig 2022-04-19 16:03:40 UTC
+++ deps/v8/src/codegen/arm/cpu-arm.cc
@@ -2,12 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "include/v8config.h"
+
// CPU specific code for arm independent of OS goes here.
#ifdef __arm__
#ifdef __QNXNTO__
#include <sys/mman.h> // for cache flushing.
#undef MAP_TYPE
#elif V8_OS_FREEBSD
+#include <sys/cdefs.h>
#include <machine/sysarch.h> // for cache flushing
#include <sys/types.h>
#elif V8_OS_STARBOARD

View File

@@ -0,0 +1,20 @@
--- deps/v8/src/codegen/ppc/constants-ppc.h.orig 2020-06-30 17:49:17 UTC
+++ deps/v8/src/codegen/ppc/constants-ppc.h
@@ -36,7 +36,7 @@
#endif
#if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || !V8_TARGET_ARCH_PPC64 || \
- V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2)
+ (defined(_CALL_ELF) && _CALL_ELF == 2)
#define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1
#else
#define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0
@@ -44,7 +44,7 @@
#if !(V8_HOST_ARCH_PPC || V8_HOST_ARCH_PPC64) || \
(V8_TARGET_ARCH_PPC64 && \
- (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2)))
+ (defined(_CALL_ELF) && _CALL_ELF == 2))
#define ABI_CALL_VIA_IP 1
#else
#define ABI_CALL_VIA_IP 0

View File

@@ -0,0 +1,13 @@
--- deps/v8/src/libsampler/sampler.cc.orig 2021-10-19 00:48:30 UTC
+++ deps/v8/src/libsampler/sampler.cc
@@ -497,6 +497,10 @@ void SignalHandler::FillRegisterState(void* context, R
state->pc = reinterpret_cast<void*>(mcontext.__gregs[_REG_PC]);
state->sp = reinterpret_cast<void*>(mcontext.__gregs[_REG_SP]);
state->fp = reinterpret_cast<void*>(mcontext.__gregs[_REG_FP]);
+#elif V8_TARGET_ARCH_PPC64
+ state->pc = reinterpret_cast<void*>(mcontext.mc_srr0);
+ state->sp = reinterpret_cast<void*>(mcontext.mc_frame[1]);
+ state->fp = reinterpret_cast<void*>(mcontext.mc_frame[31]);
#endif // V8_HOST_ARCH_*
#elif V8_OS_NETBSD
#if V8_HOST_ARCH_IA32

View File

@@ -0,0 +1,12 @@
--- node.gypi.orig 2021-10-19 00:48:32 UTC
+++ node.gypi
@@ -319,6 +319,9 @@
[ 'node_use_openssl=="true"', {
'defines': [ 'HAVE_OPENSSL=1' ],
'conditions': [
+ ['openssl_no_asm==1', {
+ 'defines': [ 'OPENSSL_NO_ASM' ],
+ }],
[ 'node_shared_openssl=="false"', {
'defines': [ 'OPENSSL_API_COMPAT=0x10100000L', ],
'dependencies': [

View File

@@ -0,0 +1,11 @@
--- src/cares_wrap.h.orig 2021-08-18 22:13:12 UTC
+++ src/cares_wrap.h
@@ -22,7 +22,7 @@
# include <netdb.h>
#endif // __POSIX__
-# include <ares_nameser.h>
+# include <arpa/nameser.h>
namespace node {
namespace cares_wrap {

View File

@@ -0,0 +1,11 @@
--- tools/v8_gypfiles/v8.gyp.orig 2022-05-17 11:37:47 UTC
+++ tools/v8_gypfiles/v8.gyp
@@ -977,7 +977,7 @@
}],
# Platforms that don't have Compare-And-Swap (CAS) support need to link atomic library
# to implement atomic memory access
- ['v8_current_cpu in ["mips", "mipsel", "mips64", "mips64el", "ppc", "arm", "riscv64", "loong64"]', {
+ ['v8_current_cpu in ["mips", "mipsel", "mips64", "mips64el", "ppc", "riscv64", "loong64"]', {
'link_settings': {
'libraries': ['-latomic', ],
},

6
lang/node18/pkg-descr Normal file
View File

@@ -0,0 +1,6 @@
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript
engine. Node.js uses an event-driven, non-blocking I/O model that
makes it lightweight and efficient. Node.js' package ecosystem,
npm, is the largest ecosystem of open source libraries in the world.
WWW: http://nodejs.org/

1
lang/node18/pkg-message Normal file
View File

@@ -0,0 +1 @@
Note: If you need npm (Node Package Manager), please install devel/npm

2806
lang/node18/pkg-plist Normal file

File diff suppressed because it is too large Load Diff