www/py-a2wsgi: New port
Convert WSGI app to ASGI app or ASGI app to WSGI app.
Pure Python. Only depend on the standard library.
Compared with other converters, the advantage is that a2wsgi
will not accumulate the requested content or response content
in the memory, so you don't have to worry about the memory
limit caused by a2wsgi. This problem exists in converters
implemented by uvicorn/startlette or hypercorn.
www/py-baize: New port
Powerful and exquisite WSGI/ASGI framework/toolkit. Only relies on the
standard library.
The minimize implementation of methods required in the Web framework.
No redundant implementation means that you can freely customize functions
without considering the conflict with baize's own implementation.
Mk/Uses: Remove certs.mk
It was a useful shorthand for the security/ca_root_nss dependency.
However, several people disagreed.
Can anybody explain why libedit.mk is there? It is also a one string
substitution. Same with libarchive.mk.
14.4/errata: Add an open issue for the boot loader symlink regression.
Reviewed by: ziaee
Co-authored-by: leres
Differential Revision: https://reviews.freebsd.org/D55751
textproc/kibana8: Restore build,run args for USES+=nodejs
If the nodejs version is specified, then the build,run arguments are
not added.
PR: 289759
Approved by: blanket (fix my previous commit)
Fixes: 53012cd436a9 (Update 8.11.3 => 8.19.12)
textproc/kibana8: Update 8.11.3 => 8.19.12
Changelogs (there are 59 new versions):
https://www.elastic.co/guide/en/kibana/8.19/release-notes-8.11.4.html
. . .
https://www.elastic.co/guide/en/kibana/8.19/release-notes-8.19.12.html
- Add "MASTER_SITES+=LOCAL/vvd/kibana" for those who also can't
download from the official website: "403 Forbidden".
- Switch to default nodejs version 24.
- Improve COMMENT - correct name is "Elasticsearch" without camel-case.
- Use ${NODEJS_VERSION} instead of hardcoded nodejs version.
- Remove unnecessary BUILD_DEPENDS - USES+=nodejs also adds it.
- Remove default args build,run form USES+=nodejs.
- Update CONFLICTS.
- Fix warnings from portclippy.
- Replace "${INSTALL} -l rs" with "${RLN}".
- Update pkg-descr.
- Improve pkg-message.
[4 lines not shown]
stand: lua: break out a few more dirent types in lfs
These are non-standard and specific to the version used in loader. We
have some desire to recognize symlinks to avoid filtering out kernel
symlinks in the autodetection bits when they would be perfectly fine to
`load`.
This won't be usable right away, so any impending use will need to be
careful to account for nil.
Reported by: leres
system(3): Fix brain glitch in previous commit
We were saving SIGINT twice instead of SIGINT and SIGQUIT.
Also restore original order of operations (SIGINT then SIGQUIT), which
matches the order in which they're discussed in the POSIX description
of system(3).
MFC after: 1 week
Sponsored by: Klara, Inc.
Fixes: 48368f702423 ("system(3): Address test robustness issue")
system(3): Address test robustness issue
Don't assume that SIGINT and SIGQUIT are set to SIG_DFL at the start
of the test. Instead, retrieve their current dispositions and verify
that they are restored at the end of the test.
MFC after: 1 week
Sponsored by: Klara, Inc.
Reviewed by: kevans
Differential Revision: https://reviews.freebsd.org/D55709