notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
malloy Embeddable HTTP(S) and WS(S) client/server components for C++
0.7.0_1 devel on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 0.7.0_1Version of this port present on the latest quarterly branch.
Maintainer: jbo@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2022-09-05 17:12:06
Last Update: 2023-12-14 15:49:40
Commit Hash: ec5f6e2
License: BSD3CLAUSE
WWW:
https://github.com/tectu/malloy
Description:
Malloy is a C++ library providing embeddable server & client components for both HTTP(S) and WebSocket(Secure). The library is written in C++20 and provides easy-to-use high-level interfaces for creating server and client applications painlessly.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (122 items)
Collapse this list.
  1. /usr/local/share/licenses/malloy-0.7.0_1/catalog.mk
  2. /usr/local/share/licenses/malloy-0.7.0_1/LICENSE
  3. /usr/local/share/licenses/malloy-0.7.0_1/BSD3CLAUSE
  4. include/malloy/client/controller.hpp
  5. include/malloy/client/http/connection.hpp
  6. include/malloy/client/http/connection_plain.hpp
  7. include/malloy/client/http/connection_tls.hpp
  8. include/malloy/client/type_traits.hpp
  9. include/malloy/client/websocket/connection.hpp
  10. include/malloy/core/controller.hpp
  11. include/malloy/core/detail/action_queue.hpp
  12. include/malloy/core/detail/controller_run_result.hpp
  13. include/malloy/core/detail/version_checks.hpp
  14. include/malloy/core/error.hpp
  15. include/malloy/core/html/form.hpp
  16. include/malloy/core/html/form_data.hpp
  17. include/malloy/core/html/form_field.hpp
  18. include/malloy/core/html/form_renderer.hpp
  19. include/malloy/core/html/html.hpp
  20. include/malloy/core/html/multipart_parser.hpp
  21. include/malloy/core/http/cookie.hpp
  22. include/malloy/core/http/filters/file.hpp
  23. include/malloy/core/http/generator.hpp
  24. include/malloy/core/http/http.hpp
  25. include/malloy/core/http/request.hpp
  26. include/malloy/core/http/response.hpp
  27. include/malloy/core/http/session/manager.hpp
  28. include/malloy/core/http/session/session.hpp
  29. include/malloy/core/http/session/storage.hpp
  30. include/malloy/core/http/session/storage_memory.hpp
  31. include/malloy/core/http/session/types.hpp
  32. include/malloy/core/http/type_traits.hpp
  33. include/malloy/core/http/types.hpp
  34. include/malloy/core/http/utils.hpp
  35. include/malloy/core/tcp/rate_policy.hpp
  36. include/malloy/core/tcp/stream.hpp
  37. include/malloy/core/tcp/tcp.hpp
  38. include/malloy/core/tls/manager.hpp
  39. include/malloy/core/type_traits.hpp
  40. include/malloy/core/utils.hpp
  41. include/malloy/core/websocket/connection.hpp
  42. include/malloy/core/websocket/stream.hpp
  43. include/malloy/core/websocket/types.hpp
  44. include/malloy/core/websocket/websocket.hpp
  45. include/malloy/server/auth/basic.hpp
  46. include/malloy/server/http/connection.hpp
  47. include/malloy/server/http/connection_detector.hpp
  48. include/malloy/server/http/connection_plain.hpp
  49. include/malloy/server/http/connection_t.hpp
  50. include/malloy/server/http/connection_tls.hpp
  51. include/malloy/server/http/preflight_config.hpp
  52. include/malloy/server/http/request_generator_t.hpp
  53. include/malloy/server/listener.hpp
  54. include/malloy/server/routing/endpoint.hpp
  55. include/malloy/server/routing/endpoint_http.hpp
  56. include/malloy/server/routing/endpoint_http_files.hpp
  57. include/malloy/server/routing/endpoint_http_redirect.hpp
  58. include/malloy/server/routing/endpoint_http_regex.hpp
  59. include/malloy/server/routing/endpoint_websocket.hpp
  60. include/malloy/server/routing/router.hpp
  61. include/malloy/server/routing/type_traits.hpp
  62. include/malloy/server/routing_context.hpp
  63. include/malloy/server/websocket/connection.hpp
  64. lib/cmake/malloy/malloy-config-version.cmake
  65. lib/cmake/malloy/malloy-config.cmake
  66. lib/cmake/malloy/malloy-targets-release.cmake
  67. lib/cmake/malloy/malloy-targets.cmake
  68. lib/libmalloy-client.so
  69. lib/libmalloy-client.so.0.7.0
  70. lib/libmalloy-core.so
  71. lib/libmalloy-core.so.0.7.0
  72. lib/libmalloy-server.so
  73. lib/libmalloy-server.so.0.7.0
  74. share/examples/malloy/CMakeLists.txt
  75. share/examples/malloy/client/CMakeLists.txt
  76. share/examples/malloy/client/example.cmake
  77. share/examples/malloy/client/http_custom_filter/CMakeLists.txt
  78. share/examples/malloy/client/http_custom_filter/main.cpp
  79. share/examples/malloy/client/http_file_download/CMakeLists.txt
  80. share/examples/malloy/client/http_file_download/main.cpp
  81. share/examples/malloy/client/http_plain/CMakeLists.txt
  82. share/examples/malloy/client/http_plain/main.cpp
  83. share/examples/malloy/client/http_tls/CMakeLists.txt
  84. share/examples/malloy/client/http_tls/main.cpp
  85. share/examples/malloy/client/websocket_plain/CMakeLists.txt
  86. share/examples/malloy/client/websocket_plain/main.cpp
  87. share/examples/malloy/client/websocket_secure/CMakeLists.txt
  88. share/examples/malloy/client/websocket_secure/main.cpp
  89. share/examples/malloy/example.hpp
  90. share/examples/malloy/server/CMakeLists.txt
  91. share/examples/malloy/server/basic/CMakeLists.txt
  92. share/examples/malloy/server/basic/main.cpp
  93. share/examples/malloy/server/custom_request_filter/CMakeLists.txt
  94. share/examples/malloy/server/custom_request_filter/main.cpp
  95. share/examples/malloy/server/example.cmake
  96. share/examples/malloy/server/html_form/CMakeLists.txt
  97. share/examples/malloy/server/html_form/main.cpp
  98. share/examples/malloy/server/routing/CMakeLists.txt
  99. share/examples/malloy/server/routing/files/CMakeLists.txt
  100. share/examples/malloy/server/routing/files/main.cpp
  101. share/examples/malloy/server/routing/policies/CMakeLists.txt
  102. share/examples/malloy/server/routing/policies/main.cpp
  103. share/examples/malloy/server/routing/preflights/CMakeLists.txt
  104. share/examples/malloy/server/routing/preflights/main.cpp
  105. share/examples/malloy/server/routing/regex/CMakeLists.txt
  106. share/examples/malloy/server/routing/regex/main.cpp
  107. share/examples/malloy/server/routing/subrouters/CMakeLists.txt
  108. share/examples/malloy/server/routing/subrouters/main.cpp
  109. share/examples/malloy/server/session/CMakeLists.txt
  110. share/examples/malloy/server/session/main.cpp
  111. share/examples/malloy/server/ssl/CMakeLists.txt
  112. share/examples/malloy/server/ssl/main.cpp
  113. share/examples/malloy/server/static_content/file2.html
  114. share/examples/malloy/server/static_content/index.html
  115. share/examples/malloy/server/static_content/malloy.cert
  116. share/examples/malloy/server/static_content/malloy.key
  117. share/examples/malloy/server/websocket/CMakeLists.txt
  118. share/examples/malloy/server/websocket/main.cpp
  119. share/examples/malloy/ws_handlers.hpp
  120. @owner
  121. @group
  122. @mode
Collapse this list.
Dependency lines:
  • malloy>0:devel/malloy
To install the port:
cd /usr/ports/devel/malloy/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/malloy
  • pkg install malloy
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: malloy
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1695643384 SHA256 (tectu-malloy-0.7.0_GH0.tar.gz) = d28120f8443373ba554270899a8438f6fa9605c485b6123cd0c2afd48b51a320 SIZE (tectu-malloy-0.7.0_GH0.tar.gz) = 195795

Packages (timestamps in pop-ups are UTC):
malloy
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest0.7.0_10.7.0_1-0.7.0_10.7.0_1---
FreeBSD:13:quarterly0.7.0_10.7.0_1-0.7.0_10.7.0_10.7.0_10.7.0_10.7.0_1
FreeBSD:14:latest0.7.0_10.7.0_1-0.7.0_10.7.0_10.6.2-0.6.2
FreeBSD:14:quarterly0.7.0_10.7.0_1-0.7.0_10.7.0_10.7.0_10.7.0_10.7.0_1
FreeBSD:15:latest0.7.0_10.7.0_1n/a0.7.0_1n/a0.7.0_10.7.0_10.7.0_1
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. boost-libs>1.79.0 : devel/boost-libs
  2. doxygen : devel/doxygen
  3. cmake : devel/cmake-core
  4. ninja : devel/ninja
Library dependencies:
  1. libfmt.so : devel/libfmt
  2. libspdlog.so : devel/spdlog
There are no ports dependent upon this port

Configuration Options:
===> The following configuration options are available for malloy-0.7.0_1: DOCS=on: Build and/or install documentation EXAMPLES=on: Build and/or install examples HTML=on: HTML features TEST=off: Build and/or run tests TLS=on: Secure network connection support via TLS ====> Options available for the multi HTTP: you have to choose at least one of them CLIENT=on: HTTP client support SERVER=on: HTTP server support ===> Use 'make config' to modify these settings
Options name:
devel_malloy
USES:
cmake ssl
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/tectu/malloy/tar.gz/0.7.0?dummy=/
Collapse this list.

Number of commits found: 12

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
0.7.0_1
14 Dec 2023 15:49:40
commit hash: ec5f6e22611156724fe5844ed3783b68e0d404f3commit hash: ec5f6e22611156724fe5844ed3783b68e0d404f3commit hash: ec5f6e22611156724fe5844ed3783b68e0d404f3commit hash: ec5f6e22611156724fe5844ed3783b68e0d404f3 files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/libfmt: Update to 10.1.1

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/fmtlib/fmt/releases
0.7.0
25 Sep 2023 14:35:12
commit hash: 23330497fbe20ada4575f1a0471a5a6ec762f0b5commit hash: 23330497fbe20ada4575f1a0471a5a6ec762f0b5commit hash: 23330497fbe20ada4575f1a0471a5a6ec762f0b5commit hash: 23330497fbe20ada4575f1a0471a5a6ec762f0b5 files touched by this commit
Joel Bodenmann (jbo) search for other commits by this committer
devel/malloy: Update to 0.7.0

Changelog: https://github.com/Tectu/malloy/releases/tag/0.7.0

PR:			273884
Approved by:		zirias (mentor)
Differential Revision:	https://reviews.freebsd.org/D41974
0.6.2
08 Sep 2023 14:12:16
commit hash: 31299d31bf3101851094de8d6b8295d9a04d8fdfcommit hash: 31299d31bf3101851094de8d6b8295d9a04d8fdfcommit hash: 31299d31bf3101851094de8d6b8295d9a04d8fdfcommit hash: 31299d31bf3101851094de8d6b8295d9a04d8fdf files touched by this commit
Joel Bodenmann (jbo) search for other commits by this committer
maintainer: Update to FreeBSD address

Change all MAINTAINER entries with <jbo@insane.engineer> to
<jbo@FreeBSD.org>

Approved by:		zirias (mentor)
Differential Review:	https://reviews.freebsd.org/D41781
0.6.2
23 Apr 2023 05:30:35
commit hash: 8f33d68ad453d988e0bafc1044136ef9f088be77commit hash: 8f33d68ad453d988e0bafc1044136ef9f088be77commit hash: 8f33d68ad453d988e0bafc1044136ef9f088be77commit hash: 8f33d68ad453d988e0bafc1044136ef9f088be77 files touched by this commit
Felix Palmen (zirias) search for other commits by this committer
Author: Joel Bodenmann
devel/malloy: Update to 0.6.2

Changelog: https://github.com/Tectu/malloy/releases/tag/0.6.2

PR:		271002
Approved by:	tcberner (mentor, implicit)
0.6.1
30 Mar 2023 23:59:51
commit hash: 56932296b7bc5c29380a4c433c5a9250fb6b4fb5commit hash: 56932296b7bc5c29380a4c433c5a9250fb6b4fb5commit hash: 56932296b7bc5c29380a4c433c5a9250fb6b4fb5commit hash: 56932296b7bc5c29380a4c433c5a9250fb6b4fb5 files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: Sunset 12.3-RELEASE from ports tree

- Mk/bsd.port.mk: mark FreeBSD 12.3 as unsupported.
- Mk/Uses/cabal.mk: Remove the text-2 workaround for 12.3-RELEASE
- biology/wfa2-lib: remove obsolete patch
- databases/mongodb60: remove IGNORE for EOL FreeBSD 12.3
- devel/concurrencpp: remove workaround for EOL FreeBSD 12.3
- devel/electron22: remove IGNORE for EOL FreeBSD 12.3
- devel/malloy: this should build fine on 12.4-RELEASE
- devel/qcoro: remove BROKEN for EOL FreeBSD 12.3
- devel/root: remove workaround for EOL FreeBSD 12.3
- editors/imhex: remove IGNORE for EOL FreeBSD 12.3
- emulators/ppsspp: remove workaround for EOL FreeBSD 12.3
- emulators/rpcs3: remove workaround for EOL FreeBSD 12.3
- emulators/yuzu: remove workaround for EOL 12.3-RELEASE
(Only the first 15 lines of the commit message are shown above View all of this commit message)
0.6.1
23 Feb 2023 15:27:17
commit hash: 7c24b71808f9a0f1c2e290a8e78f3dc21886ebcdcommit hash: 7c24b71808f9a0f1c2e290a8e78f3dc21886ebcdcommit hash: 7c24b71808f9a0f1c2e290a8e78f3dc21886ebcdcommit hash: 7c24b71808f9a0f1c2e290a8e78f3dc21886ebcd files touched by this commit
Felix Palmen (zirias) search for other commits by this committer
Author: Joel Bodenmann
devel/malloy: Update to 0.6.1

Changelog: https://github.com/Tectu/malloy/releases/tag/0.6.1

PR:		269758
Approved by:	tcberner (mentor)
0.6.0
06 Jan 2023 16:53:29
commit hash: dac8eab842631800b58d65c2dfb8616c9084b58fcommit hash: dac8eab842631800b58d65c2dfb8616c9084b58fcommit hash: dac8eab842631800b58d65c2dfb8616c9084b58fcommit hash: dac8eab842631800b58d65c2dfb8616c9084b58f files touched by this commit
Fernando Apesteguía (fernape) search for other commits by this committer
Author: Joel Bodenmann
devel/malloy: Change license

Upstream changed the license scheme.

Deliberately not bumping PORTREVISION.

PR:	268772
0.6.0
06 Jan 2023 16:15:57
commit hash: 9c271b7e1ee39bb674e4012c34dc64d53229d965commit hash: 9c271b7e1ee39bb674e4012c34dc64d53229d965commit hash: 9c271b7e1ee39bb674e4012c34dc64d53229d965commit hash: 9c271b7e1ee39bb674e4012c34dc64d53229d965 files touched by this commit
Fernando Apesteguía (fernape) search for other commits by this committer
Author: Joel Bodenmann
devel/malloy: update to 0.6.0

ChangeLog: https://github.com/Tectu/malloy/releases/tag/0.6.0

PR:		268772
Reported by:	jbo@insane.engineer (maintainer)
0.5.1_1
19 Dec 2022 09:31:34
commit hash: 2af489c04c7079c98287d0aa27e62fc008e0493ecommit hash: 2af489c04c7079c98287d0aa27e62fc008e0493ecommit hash: 2af489c04c7079c98287d0aa27e62fc008e0493ecommit hash: 2af489c04c7079c98287d0aa27e62fc008e0493e files touched by this commit
Thierry Thomas (thierry) search for other commits by this committer
*/*: chase the upgrade of devel/libfmt to 9.1.0

PR:		268081
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Remove WWW entries moved into port Makefiles

Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
0.5.1
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
0.5.1
05 Sep 2022 17:07:40
commit hash: b8913b6c0cbf578b8930924729aa31b21b66281dcommit hash: b8913b6c0cbf578b8930924729aa31b21b66281dcommit hash: b8913b6c0cbf578b8930924729aa31b21b66281dcommit hash: b8913b6c0cbf578b8930924729aa31b21b66281d files touched by this commit
Felix Palmen (zirias) search for other commits by this committer
Author: Joel Bodenmann
devel/malloy: Add new port

Embeddable HTTP(S) and WS(S) components for C++20.

PR:			265077
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36460

Number of commits found: 12