FreeBSD Bugzilla – Attachment 244989 Details for
Bug 273922
[NEW PORT] lang/emilua: Lua execution engine with support for async IO and flexible threading layout
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
[patch] lang/emilua
0001-lang-emilua.patch (text/plain), 9.27 KB, created by
Valter Nazianzeno
on 2023-09-18 07:42:09 UTC
(
hide
)
Description:
[patch] lang/emilua
Filename:
MIME Type:
Creator:
Valter Nazianzeno
Created:
2023-09-18 07:42:09 UTC
Size:
9.27 KB
patch
obsolete
>From 1e99402424487034306437e255fca72bc6436f2a Mon Sep 17 00:00:00 2001 >From: Valter Nazianzeno <manipuladordedados@gmail.com> >Date: Mon, 18 Sep 2023 04:19:15 -0300 >Subject: [PATCH] [NEW PORT] lang/emilua: Lua execution engine with support for > async IO and flexible threading layout > >--- > lang/emilua/Makefile | 53 ++++++++++++++ > lang/emilua/distinfo | 7 ++ > lang/emilua/pkg-descr | 2 + > lang/emilua/pkg-plist | 166 ++++++++++++++++++++++++++++++++++++++++++ > 4 files changed, 228 insertions(+) > create mode 100644 lang/emilua/Makefile > create mode 100644 lang/emilua/distinfo > create mode 100644 lang/emilua/pkg-descr > create mode 100644 lang/emilua/pkg-plist > >diff --git a/lang/emilua/Makefile b/lang/emilua/Makefile >new file mode 100644 >index 000000000000..2a204b0295b9 >--- /dev/null >+++ b/lang/emilua/Makefile >@@ -0,0 +1,53 @@ >+PORTNAME= emilua >+DISTVERSIONPREFIX= v >+DISTVERSION= 0.4.3 >+CATEGORIES= lang devel >+ >+MAINTAINER= manipuladordedados@gmail.com >+COMMENT= Lua execution engine >+WWW= https://emilua.org >+ >+LICENSE= BSL >+LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt >+ >+ONLY_FOR_ARCHS= aarch64 amd64 >+ONLY_FOR_ARCHS_REASON= the software structures have not yet been ported >+ >+BUILD_DEPENDS= re2c:devel/re2c \ >+ gperf:devel/gperf \ >+ gawk:lang/gawk \ >+ xxd:sysutils/xxd \ >+ cmake:devel/cmake \ >+ boost-libs>0:devel/boost-libs \ >+ asciidoctor:textproc/rubygem-asciidoctor >+LIB_DEPENDS= libfmt.so:devel/libfmt \ >+ libserd-0.so:devel/serd \ >+ libsord-0.so:devel/sord >+ >+USES= meson ssl ncurses luajit:luajit-openresty pathfix localbase pkgconfig >+USE_GCC= 12 >+USE_GITHUB= nodefault >+GH_TUPLE= BoostGSoC14:boost.http:93ae527c89ffc517862e1f5f54c8a257278f1195:emilua_http \ >+ breese:trial.protocol:79149f6:trial_protocol >+USE_GITLAB= yes >+ >+MESON_ARGS= --buildtype=plain \ >+ --wrap-mode=nodownload \ >+ -Db_pch=false \ >+ -Denable_http=true \ >+ -Denable_tests=true \ >+ -Denable_manpages=true >+ >+LDFLAGS+= -static-libstdc++ >+ >+post-extract: >+ ${MV} ${WRKSRC_emilua_http} ${WRKSRC}/subprojects/emilua-http >+ ${MV} ${WRKSRC_trial_protocol} ${WRKSRC}/subprojects/trial-protocol >+ ${CP} ${WRKSRC}/subprojects/packagefiles/emilua-http/meson.build ${WRKSRC}/subprojects/emilua-http/ >+ ${CP} ${WRKSRC}/subprojects/packagefiles/trial.protocol/meson.build ${WRKSRC}/subprojects/trial-protocol/ >+ >+post-patch: >+ @${REINPLACE_CMD} -e '/modules : boost_modules,/d' ${WRKSRC}/meson.build >+ @${REINPLACE_CMD} -e '7s/^/#define FMT_HEADER_ONLY\n/' ${WRKSRC}/src/mutex.cpp >+ >+.include <bsd.port.mk> >diff --git a/lang/emilua/distinfo b/lang/emilua/distinfo >new file mode 100644 >index 000000000000..182313668fd7 >--- /dev/null >+++ b/lang/emilua/distinfo >@@ -0,0 +1,7 @@ >+TIMESTAMP = 1694922832 >+SHA256 (BoostGSoC14-boost.http-93ae527c89ffc517862e1f5f54c8a257278f1195_GH0.tar.gz) = 4e90417806c285348d968183072918e86d7fd7d7db5affb63ec03faee92ed8ed >+SIZE (BoostGSoC14-boost.http-93ae527c89ffc517862e1f5f54c8a257278f1195_GH0.tar.gz) = 237404 >+SHA256 (breese-trial.protocol-79149f6_GH0.tar.gz) = ea82ba7736a2c6ae94e72587a454d3380517ed764df89e2297e6fac2acdeac03 >+SIZE (breese-trial.protocol-79149f6_GH0.tar.gz) = 255698 >+SHA256 (emilua-v0.4.3.tar.bz2) = 8e3ca114a3c71c985dfb8d84171a145bf245a679b5228dad27ce301ba899b15c >+SIZE (emilua-v0.4.3.tar.bz2) = 313696 >diff --git a/lang/emilua/pkg-descr b/lang/emilua/pkg-descr >new file mode 100644 >index 000000000000..57c9f8ac6540 >--- /dev/null >+++ b/lang/emilua/pkg-descr >@@ -0,0 +1,2 @@ >+A cross-platform execution engine for LuaJIT with support for async IO and >+flexible threading layout. >diff --git a/lang/emilua/pkg-plist b/lang/emilua/pkg-plist >new file mode 100644 >index 000000000000..1b06440355ce >--- /dev/null >+++ b/lang/emilua/pkg-plist >@@ -0,0 +1,166 @@ >+bin/emilua >+include/emilua/actor.hpp >+include/emilua/asio_error.hpp >+include/emilua/async_base.hpp >+include/emilua/byte_span.hpp >+include/emilua/condition_variable.hpp >+include/emilua/config.h >+include/emilua/core.hpp >+include/emilua/detail/core.hpp >+include/emilua/fiber.hpp >+include/emilua/file.hpp >+include/emilua/file_descriptor.hpp >+include/emilua/filesystem.hpp >+include/emilua/generic_error.hpp >+include/emilua/http.hpp >+include/emilua/ip.hpp >+include/emilua/json.hpp >+include/emilua/linux_namespaces.hpp >+include/emilua/lua_shim.hpp >+include/emilua/modules.re >+include/emilua/mutex.hpp >+include/emilua/pipe.hpp >+include/emilua/plugin.hpp >+include/emilua/regex.hpp >+include/emilua/scope_cleanup.hpp >+include/emilua/serial_port.hpp >+include/emilua/socket_base.hpp >+include/emilua/state.hpp >+include/emilua/stream.hpp >+include/emilua/system.hpp >+include/emilua/time.hpp >+include/emilua/tls.hpp >+include/emilua/unix.hpp >+include/emilua/websocket.hpp >+include/emilua/windows.hpp >+libdata/pkgconfig/emilua.pc >+libexec/emilua/emilua_gperf.awk >+man/man1/emilua.1.gz >+man/man3em/asio_error.3em.gz >+man/man3em/byte_span.3em.gz >+man/man3em/condition_variable.3em.gz >+man/man3em/file.open_flag.3em.gz >+man/man3em/file.random_access.3em.gz >+man/man3em/file.read_all_at.3em.gz >+man/man3em/file.read_at_least_at.3em.gz >+man/man3em/file.stream.3em.gz >+man/man3em/file.write_all_at.3em.gz >+man/man3em/file.write_at_least_at.3em.gz >+man/man3em/file_descriptor.3em.gz >+man/man3em/filesystem.absolute.3em.gz >+man/man3em/filesystem.canonical.3em.gz >+man/man3em/filesystem.cap_get_file.3em.gz >+man/man3em/filesystem.cap_set_file.3em.gz >+man/man3em/filesystem.chmod.3em.gz >+man/man3em/filesystem.clock.3em.gz >+man/man3em/filesystem.copy.3em.gz >+man/man3em/filesystem.copy_file.3em.gz >+man/man3em/filesystem.copy_symlink.3em.gz >+man/man3em/filesystem.create_directory.3em.gz >+man/man3em/filesystem.create_hard_link.3em.gz >+man/man3em/filesystem.create_symlink.3em.gz >+man/man3em/filesystem.current_working_directory.3em.gz >+man/man3em/filesystem.directory_entry.3em.gz >+man/man3em/filesystem.directory_iterator.3em.gz >+man/man3em/filesystem.equivalent.3em.gz >+man/man3em/filesystem.file_size.3em.gz >+man/man3em/filesystem.hard_link_count.3em.gz >+man/man3em/filesystem.is_empty.3em.gz >+man/man3em/filesystem.last_write_time.3em.gz >+man/man3em/filesystem.path.3em.gz >+man/man3em/filesystem.proximate.3em.gz >+man/man3em/filesystem.read_symlink.3em.gz >+man/man3em/filesystem.recursive_directory_iterator.3em.gz >+man/man3em/filesystem.relative.3em.gz >+man/man3em/filesystem.remove.3em.gz >+man/man3em/filesystem.rename.3em.gz >+man/man3em/filesystem.resize_file.3em.gz >+man/man3em/filesystem.space.3em.gz >+man/man3em/filesystem.status.3em.gz >+man/man3em/filesystem.temp_directory_path.3em.gz >+man/man3em/filesystem.umask.3em.gz >+man/man3em/filesystem.weakly_canonical.3em.gz >+man/man3em/generic_error.3em.gz >+man/man3em/http.headers.3em.gz >+man/man3em/http.request.3em.gz >+man/man3em/http.response.3em.gz >+man/man3em/http.socket.3em.gz >+man/man3em/ip.address.3em.gz >+man/man3em/ip.address_info_flag.3em.gz >+man/man3em/ip.connect.3em.gz >+man/man3em/ip.get_address_info.3em.gz >+man/man3em/ip.get_name_info.3em.gz >+man/man3em/ip.host_name.3em.gz >+man/man3em/ip.message_flag.3em.gz >+man/man3em/ip.tcp.acceptor.3em.gz >+man/man3em/ip.tcp.socket.3em.gz >+man/man3em/ip.toendpoint.3em.gz >+man/man3em/ip.tostring.3em.gz >+man/man3em/ip.udp.socket.3em.gz >+man/man3em/json.3em.gz >+man/man3em/json.writer.3em.gz >+man/man3em/mutex.3em.gz >+man/man3em/pipe.pair.3em.gz >+man/man3em/pipe.read_stream.3em.gz >+man/man3em/pipe.write_stream.3em.gz >+man/man3em/regex.3em.gz >+man/man3em/serial_port.3em.gz >+man/man3em/stream.read_all.3em.gz >+man/man3em/stream.read_at_least.3em.gz >+man/man3em/stream.scanner.3em.gz >+man/man3em/stream.write_all.3em.gz >+man/man3em/stream.write_at_least.3em.gz >+man/man3em/system.arguments.3em.gz >+man/man3em/system.environment.3em.gz >+man/man3em/system.err.3em.gz >+man/man3em/system.exit.3em.gz >+man/man3em/system.getgroups.3em.gz >+man/man3em/system.getpgid.3em.gz >+man/man3em/system.getpgrp.3em.gz >+man/man3em/system.getpid.3em.gz >+man/man3em/system.getppid.3em.gz >+man/man3em/system.getresgid.3em.gz >+man/man3em/system.getresuid.3em.gz >+man/man3em/system.getsid.3em.gz >+man/man3em/system.in_.3em.gz >+man/man3em/system.kill.3em.gz >+man/man3em/system.linux_capabilities.3em.gz >+man/man3em/system.out.3em.gz >+man/man3em/system.setgroups.3em.gz >+man/man3em/system.setpgid.3em.gz >+man/man3em/system.setresgid.3em.gz >+man/man3em/system.setresuid.3em.gz >+man/man3em/system.setsid.3em.gz >+man/man3em/system.signal.3em.gz >+man/man3em/system.signal.default.3em.gz >+man/man3em/system.signal.ignore.3em.gz >+man/man3em/system.signal.raise.3em.gz >+man/man3em/system.signal.set.3em.gz >+man/man3em/system.spawn.3em.gz >+man/man3em/time.high_resolution_clock.3em.gz >+man/man3em/time.sleep.3em.gz >+man/man3em/time.steady_clock.3em.gz >+man/man3em/time.steady_timer.3em.gz >+man/man3em/time.system_clock.3em.gz >+man/man3em/time.system_timer.3em.gz >+man/man3em/tls.context.3em.gz >+man/man3em/tls.context_flag.3em.gz >+man/man3em/tls.socket.3em.gz >+man/man3em/unix.datagram_socket.3em.gz >+man/man3em/unix.message_flag.3em.gz >+man/man3em/unix.seqpacket_acceptor.3em.gz >+man/man3em/unix.seqpacket_socket.3em.gz >+man/man3em/unix.stream_acceptor.3em.gz >+man/man3em/unix.stream_socket.3em.gz >+man/man3em/websocket.3em.gz >+man/man7/emilua-actor.7.gz >+man/man7/emilua-alternatives.7.gz >+man/man7/emilua-errors.7.gz >+man/man7/emilua-fiber.7.gz >+man/man7/emilua-getting-started.7.gz >+man/man7/emilua-internals.7.gz >+man/man7/emilua-interruption.7.gz >+man/man7/emilua-linux_namespaces.7.gz >+man/man7/emilua-lua51.7.gz >+man/man7/emilua-modules.7.gz >+man/man7/emilua-streams.7.gz >-- >2.42.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 273922
:
244989
|
245103
|
245104
|
245105