git: 84d19e6a3672 - main - lang/erlang-runtime28: import RC1 from upstream
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 06 Mar 2025 19:13:56 UTC
The branch main has been updated by dch:
URL: https://cgit.FreeBSD.org/ports/commit/?id=84d19e6a367258225e0db1337bce401133f33145
commit 84d19e6a367258225e0db1337bce401133f33145
Author: Dave Cottlehuber <dch@FreeBSD.org>
AuthorDate: 2025-03-06 10:53:05 +0000
Commit: Dave Cottlehuber <dch@FreeBSD.org>
CommitDate: 2025-03-06 19:13:52 +0000
lang/erlang-runtime28: import RC1 from upstream
Sponsored by: SkunkWerks, GmbH
---
lang/Makefile | 1 +
lang/erlang-runtime28/Makefile | 166 +++++++++++++++++++++
lang/erlang-runtime28/distinfo | 5 +
lang/erlang-runtime28/files/patch-Makefile.in | 20 +++
.../files/patch-erts_etc_unix_run__erl.c | 12 ++
.../files/patch-lib_crypto_c__src_Makefile.in | 11 ++
.../files/patch-lib_stdlib_src_calendar.erl | 26 ++++
lang/erlang-runtime28/files/pkg-message.in | 8 +
lang/erlang-runtime28/pkg-descr | 8 +
9 files changed, 257 insertions(+)
diff --git a/lang/Makefile b/lang/Makefile
index c1c3e20f5e8f..5e01f7433825 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -70,6 +70,7 @@
SUBDIR += erlang-runtime25
SUBDIR += erlang-runtime26
SUBDIR += erlang-runtime27
+ SUBDIR += erlang-runtime28
SUBDIR += erlang-wx
SUBDIR += execline
SUBDIR += expect
diff --git a/lang/erlang-runtime28/Makefile b/lang/erlang-runtime28/Makefile
new file mode 100644
index 000000000000..5009dd67a78d
--- /dev/null
+++ b/lang/erlang-runtime28/Makefile
@@ -0,0 +1,166 @@
+PORTNAME= erlang
+DISTVERSIONPREFIX= OTP-
+DISTVERSION= 28.0
+DISTVERSIONSUFFIX= -rc1
+CATEGORIES= lang parallel java
+PKGNAMESUFFIX= -runtime${PORTVERSION:C/\..*//}
+DIST_SUBDIR= erlang
+
+MAINTAINER= erlang@FreeBSD.org
+COMMENT= Functional programming language from Ericsson
+WWW= https://www.erlang.org/
+
+LICENSE= APACHE20
+
+USES= compiler cpe gmake ncurses perl5
+CPE_VENDOR= erlang
+CPE_PRODUCT= erlang/otp
+USE_GITHUB= nodefault
+GH_ACCOUNT= erlang:otp,corba
+GH_PROJECT= otp:otp corba:corba
+GH_TAGNAME= 5.2.1:corba
+USE_PERL5= build
+
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --enable-dirty-schedulers \
+ --enable-kernel-poll \
+ --enable-smp-support \
+ --enable-threads
+
+_ERLANG_LIB= ${PORTNAME}${PORTVERSION:C/\..*//}
+
+DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}
+SUB_FILES= pkg-message
+SUB_LIST= _ERLANG_LIB=${_ERLANG_LIB}
+
+WRKSRC= ${WRKSRC_otp}
+
+OPTIONS_DEFINE= CHUNKS CORBA DTRACE JAVA KQUEUE ODBC OPENSSL SCTP \
+ SHARING WX
+OPTIONS_DEFAULT= CHUNKS CORBA DTRACE KQUEUE OPENSSL SCTP SHARING
+
+.if !exists(/usr/sbin/dtrace)
+OPTIONS_EXCLUDE+= DTRACE
+.endif
+
+OPTIONS_EXCLUDE_DragonFly= SCTP
+# ld(1) fails to link probes: missing __dtrace_erlang___* symbols
+# see also https://reviews.freebsd.org/D22360
+OPTIONS_EXCLUDE_aarch64= DTRACE
+OPTIONS_EXCLUDE_armv6= DTRACE
+OPTIONS_EXCLUDE_armv7= DTRACE
+OPTIONS_EXCLUDE_i386= DTRACE
+OPTIONS_EXCLUDE_riscv64= DTRACE
+
+CHUNKS_DESC= Enable in-line documentation in Erlang console
+CORBA_DESC= Enable Corba support
+KQUEUE_DESC= Enable Kernel Poll (kqueue) support
+SCTP_DESC= Enable SCTP support
+SHARING_DESC= Enable term copy-and-share support
+WX_DESC= Enable WX application
+
+# If you run Erlang and get a message resembling "WARNING: number of
+# probes fixed does not match the number of defined probes (54 != 132,
+# respectively)" you probably misconfigured DTrace in some way.
+
+DTRACE_CONFIGURE_WITH= dynamic-trace=dtrace
+DTRACE_CFLAGS= -fno-omit-frame-pointer
+DTRACE_VARS= STRIP=""
+JAVA_CONFIGURE_WITH= javac
+JAVA_CONFIGURE_ENV= ac_cv_prog_JAVAC="${JAVAC}"
+JAVA_USES= java
+KQUEUE_CONFIGURE_ENABLE= kernel-poll
+ODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC
+ODBC_USES= localbase:ldflags
+ODBC_CONFIGURE_WITH= odbc
+OPENSSL_USES= ssl
+OPENSSL_CONFIGURE_WITH= ssl=${OPENSSLBASE}
+SCTP_CONFIGURE_ENABLE= sctp
+SHARING_CONFIGURE_ENABLE= sharing-preserving
+WX_USES= gl
+WX_CONFIGURE_WITH= wx-config=${WX_CONFIG}
+WX_VARS= USE_GL="gl glu" \
+ USE_WX=3.2+ \
+ WX_COMPS="wx"
+
+.include <bsd.port.pre.mk>
+
+.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 130
+# PR 258494
+CONFIGURE_ARGS+= --disable-pgo
+.endif
+
+.if ${OPSYS} == FreeBSD
+CFLAGS+= -DMAP_NORESERVE=0
+.endif
+
+.if ${ARCH} == i386
+MAKE_ARGS+= ARCH=x86
+CONFIGURE_ARGS+= --disable-year2038
+.endif
+
+.if ${ARCH} == armv6 || ${ARCH} == armv7
+MAKE_ARGS+= ARCH=arm
+.endif
+
+pre-configure-WX-off:
+ echo "disabled by port options" > ${WRKSRC}/lib/debugger/SKIP
+ echo "disabled by port options" > ${WRKSRC}/lib/et/SKIP
+ echo "disabled by port options" > ${WRKSRC}/lib/observer/SKIP
+ echo "disabled by port options" > ${WRKSRC}/lib/wx/SKIP
+
+post-configure-ODBC-on:
+ ${RM} ${WRKSRC}/lib/odbc/SKIP
+
+post-configure-ODBC-off:
+ echo "disabled by port options" > ${WRKSRC}/lib/odbc/SKIP
+
+post-install-CHUNKS-on:
+ cd ${WRKSRC_otp} && \
+ ${SETENV} ERL_TOP=${WRKSRC_otp} \
+ ${MAKE_CMD} release_docs DOC_TARGETS=chunks \
+ RELEASE_ROOT=${STAGEDIR}${PREFIX}/lib/${_ERLANG_LIB}
+
+post-build-CORBA-on:
+ cd ${WRKSRC_corba} && \
+ ${SETENV} OVERRIDE_TARGET=${CONFIGURE_TARGET} ERL_TOP=${WRKSRC_otp} \
+ ${MAKE_CMD}
+
+post-install-CORBA-on:
+ cd ${WRKSRC_corba} && \
+ ${SETENV} OVERRIDE_TARGET=${CONFIGURE_TARGET} ERL_TOP=${WRKSRC_otp} \
+ ${MAKE_CMD} release RELEASE_ROOT=${STAGEDIR}${PREFIX}/lib/${_ERLANG_LIB}
+
+post-install-DTRACE-on:
+ ${MKDIR} ${STAGEDIR}${DATADIR}/dtrace
+ ${INSTALL_DATA} ${WRKSRC}/erts/emulator/beam/*.d \
+ ${WRKSRC}/lib/runtime_tools/c_src/*.d \
+ ${WRKSRC}/lib/runtime_tools/examples/*.d \
+ ${STAGEDIR}${DATADIR}/dtrace
+
+post-install-JAVA-off:
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/jinterface-*
+
+post-install-ODBC-off:
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/odbc-*
+
+post-install-OPENSSL-off:
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/crypto-*
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/ssh-*
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/ssl-*
+
+post-install-WX-off:
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/debugger-*
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/et-*
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/observer-*
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/erlang/lib/wx-*
+
+post-stage:
+ ${FIND} ${STAGEDIR}${PREFIX}/lib/${_ERLANG_LIB}/* -type d -empty \
+ -delete
+ @cd ${STAGEDIR}${PREFIX}; \
+ ${FIND} lib/${_ERLANG_LIB}/* ${DATADIR_REL}/* -type f -o \
+ -type l | \
+ ${SORT} >> ${TMPPLIST}
+
+.include <bsd.port.post.mk>
diff --git a/lang/erlang-runtime28/distinfo b/lang/erlang-runtime28/distinfo
new file mode 100644
index 000000000000..d7ae2827e269
--- /dev/null
+++ b/lang/erlang-runtime28/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1741258105
+SHA256 (erlang/erlang-otp-OTP-28.0-rc1_GH0.tar.gz) = 8bdc09c0d94ab89b5b499aac70893d29cd6d37c84a1957d51516a2ab76df9df1
+SIZE (erlang/erlang-otp-OTP-28.0-rc1_GH0.tar.gz) = 62999219
+SHA256 (erlang/erlang-corba-5.2.1_GH0.tar.gz) = e96e9dc710c0ab3282ca5045434f5bc5ff493c22ba63fcfd764ce4d6a13a7c8f
+SIZE (erlang/erlang-corba-5.2.1_GH0.tar.gz) = 1400553
diff --git a/lang/erlang-runtime28/files/patch-Makefile.in b/lang/erlang-runtime28/files/patch-Makefile.in
new file mode 100644
index 000000000000..3b8c1f15e704
--- /dev/null
+++ b/lang/erlang-runtime28/files/patch-Makefile.in
@@ -0,0 +1,20 @@
+--- Makefile.in.orig 2025-02-12 10:24:27 UTC
++++ Makefile.in
+@@ -60,7 +60,7 @@ libdir = @libdir@
+ libdir = @libdir@
+
+ # Where Erlang/OTP is located
+-libdir_suffix = /erlang
++libdir_suffix = /erlang28
+ erlang_libdir = $(libdir)$(libdir_suffix)
+ erlang_bindir = $(erlang_libdir)/bin
+
+@@ -851,7 +851,7 @@ $(TEST_DIRS):
+ #
+ # Order is important here, don't change it!
+ #
+-INST_DEP += install.dirs install.emulator install.libs install.Install install.otp_version install.bin
++INST_DEP += install.dirs install.emulator install.libs install.Install install.otp_version
+
+ install: $(INST_DEP)
+
diff --git a/lang/erlang-runtime28/files/patch-erts_etc_unix_run__erl.c b/lang/erlang-runtime28/files/patch-erts_etc_unix_run__erl.c
new file mode 100644
index 000000000000..9bce4a37bcca
--- /dev/null
+++ b/lang/erlang-runtime28/files/patch-erts_etc_unix_run__erl.c
@@ -0,0 +1,12 @@
+--- erts/etc/unix/run_erl.c.orig 2025-02-12 10:24:27 UTC
++++ erts/etc/unix/run_erl.c
+@@ -81,9 +81,6 @@
+ #ifdef HAVE_LIBUTIL_H
+ # include <libutil.h>
+ #endif
+-#ifdef HAVE_UTIL_H
+-# include <util.h>
+-#endif
+ #ifdef HAVE_SYS_IOCTL_H
+ # include <sys/ioctl.h>
+ #endif
diff --git a/lang/erlang-runtime28/files/patch-lib_crypto_c__src_Makefile.in b/lang/erlang-runtime28/files/patch-lib_crypto_c__src_Makefile.in
new file mode 100644
index 000000000000..b1adec7e9de0
--- /dev/null
+++ b/lang/erlang-runtime28/files/patch-lib_crypto_c__src_Makefile.in
@@ -0,0 +1,11 @@
+--- lib/crypto/c_src/Makefile.in.orig 2025-02-12 10:24:27 UTC
++++ lib/crypto/c_src/Makefile.in
+@@ -147,7 +147,7 @@ ifeq ($(DYNAMIC_OR_WIN_CRYPTO_LIB),yes)
+ endif
+
+ ifeq ($(DYNAMIC_OR_WIN_CRYPTO_LIB),yes)
+-SSL_DED_LD_RUNTIME_LIBRARY_PATH = @SSL_DED_LD_RUNTIME_LIBRARY_PATH@
++SSL_DED_LD_RUNTIME_LIBRARY_PATH =
+ CRYPTO_LINK_LIB=$(SSL_DED_LD_RUNTIME_LIBRARY_PATH) -L$(SSL_LIBDIR) -l$(SSL_CRYPTO_LIBNAME)
+ EXTRA_FLAGS = -DHAVE_DYNAMIC_CRYPTO_LIB
+ else
diff --git a/lang/erlang-runtime28/files/patch-lib_stdlib_src_calendar.erl b/lang/erlang-runtime28/files/patch-lib_stdlib_src_calendar.erl
new file mode 100644
index 000000000000..2f059522f83a
--- /dev/null
+++ b/lang/erlang-runtime28/files/patch-lib_stdlib_src_calendar.erl
@@ -0,0 +1,26 @@
+--- lib/stdlib/src/calendar.erl.orig 2025-02-12 10:24:27 UTC
++++ lib/stdlib/src/calendar.erl
+@@ -444,11 +444,19 @@ local_time_to_universal_time_dst(DateTime) ->
+ DateTime1 :: datetime1970(),
+ DateTime :: datetime1970().
+ local_time_to_universal_time_dst(DateTime) ->
+- UtDst = erlang:localtime_to_universaltime(DateTime, true),
+- Ut = erlang:localtime_to_universaltime(DateTime, false),
+ %% Reverse check the universal times
+- LtDst = erlang:universaltime_to_localtime(UtDst),
+- Lt = erlang:universaltime_to_localtime(Ut),
++ {UtDst, LtDst} =
++ try
++ UtDst0 = erlang:localtime_to_universaltime(DateTime, true),
++ {UtDst0, erlang:universaltime_to_localtime(UtDst0)}
++ catch error:badarg -> {error, error}
++ end,
++ {Ut, Lt} =
++ try
++ Ut0 = erlang:localtime_to_universaltime(DateTime, false),
++ {Ut0, erlang:universaltime_to_localtime(Ut0)}
++ catch error:badarg -> {error, error}
++ end,
+ %% Return the valid universal times
+ case {LtDst,Lt} of
+ {DateTime,DateTime} when UtDst =/= Ut ->
diff --git a/lang/erlang-runtime28/files/pkg-message.in b/lang/erlang-runtime28/files/pkg-message.in
new file mode 100644
index 000000000000..bc656f93e1a6
--- /dev/null
+++ b/lang/erlang-runtime28/files/pkg-message.in
@@ -0,0 +1,8 @@
+[
+{ type: install
+ message: <<EOM
+To use this runtime port for development or testing, just prepend
+its binary path ("%%LOCALBASE%%/lib/%%_ERLANG_LIB%%/bin") to your PATH variable.
+EOM
+}
+]
diff --git a/lang/erlang-runtime28/pkg-descr b/lang/erlang-runtime28/pkg-descr
new file mode 100644
index 000000000000..3de12d9eeb30
--- /dev/null
+++ b/lang/erlang-runtime28/pkg-descr
@@ -0,0 +1,8 @@
+Erlang is a programming language used to build massively scalable soft
+real-time systems with requirements on high availability. Some of its
+uses are in telecoms, banking, e-commerce, computer telephony and
+instant messaging. Erlang's runtime system has built-in support for
+concurrency, distribution and fault tolerance.
+
+This port contains a standalone runtime environment of Erlang 28
+to be used during the development of OTP applications.