py-acme py-certbot*: updated to 5.2.1
Certbot 5.2.1
Added
Support for Python 3.14 was added.
Changed
While nothing significant should have changed from the user's perspective,
we've been doing a lot of internal refactoring in preparation for soon adding
support for IP address certificates to Certbot.
Fixed
Removed vhost_combined and vhost_common log formats from included Apache
configuration file.
Due to a mistake on our end playing with GitHub's new immutable
[4 lines not shown]
uhid: Move generic HID code to sys/dev/hid
This change introduces a bus agnostic HID interface (sys/dev/hid/hidev.h)
and splits the uhid driver into a shareable (sys/dev/hid/uhid_common.c) and
USB specific (sys/dev/usb/uhid.c) code.
Pull up following revision(s) (requested by jmcneill in ticket #115):
sys/dev/sdmmc/sdmmc_io.c: revision 1.22
sys/dev/sdmmc/sdhc.c: revision 1.123
sdhc: Do not set auto cmd12 enable for SDIO RW extended ops
sdmmc: Use block mode for multi block SDIO transfers.
Change from OpenBSD:
https://github.com/openbsd/src/commit/5e0782b17abc2070c235843e37de911ce3f98ef8
So far the SDIO stack issued one transfer for every 64 byte to be
copied. This severely limits the speed over the bus. By using
block mode we can issue block-sized transfers, which bumps the
transfer size to at least 512 bytes. By using multi-block mode
we can copy up to 511 blocks per transfer.
Additionaly apply the following to fix the build for ticket #112:
usr.sbin/npf/npfctl/npf_build.c 1.63
enclose NPF_VAR_ID case in braces to fix linter build
p5-DateTime-Format-Strptime: update to 1.8000.
1.80 2025-12-06
* Fix the parse_datetime docs to state that it returns either an empty list of undef when it cannot
parse the given string, depending on the context. Previously, the docs said it always returned
undef, which is not true. Reported by @falsifian (James Cook). GH #33.
expat: improve builtin.mk
To fix configure step in abiword:
- do not remove too much before scanning before 'pkg-config' in USE_TOOLS
- hook to pre-configure to make sure to be called even when pre-configure
is overridden
py-test: updated to 9.0.2
9.0.2
Bug fixes
The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.
You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.
Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.
Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.
The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0. Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim. It will be deprecated in pytest 9.1 and removed in pytest 10.
Fixed quadratic-time behavior when handling unittest subtests in Python 3.10.
Improved documentation
The API Reference now contains cross-reference-able documentation of pytest’s command-line flags.
oxipng: updated to 10.0.0
10.0.0
[Breaking] CLI: Change short zopfli flag from -Z to -z.
[Breaking] CLI: Change --pretend/-P to --dry-run/-d.
[Breaking] CLI: Change --interlace options from 1/0 to on/off.
[Breaking] API: Change Options.interlace: Option<Interlacing> to Options.interlace: Option<bool>.
[Breaking] API: Change Options.filter: IndexSet<RowFilter> to Options.filters: IndexSet<FilterStrategy>.
[Breaking] API: Change Options.deflate: Deflaters to Options.deflater: Deflater.
[Breaking] API: Change Deflaters::Zopfli { .. } to Deflater::Zopfli(ZopfliOptions { .. }).
[Breaking] API: Change optimize() to return (usize, usize), with original and optimized sizes.
[Feature] Allow zopfli iterations higher than 255.
[Feature] Add --ziwi option for zopfli iterations without improvement.
[Feature] Add --max-raw-size option to skip images that are too large.
[Feature] Add --brute-level and --brute-lines options for advanced control of Brute filter.
[Improvement] Reduce memory usage for fast mode.
[Improvement] Slightly improve compression with Brute filter at levels 5 and 6.
[Misc] Change --preserve option to no longer preserve last access time.
[Misc] Make help output colored.
fcitx: Fix build-time segmentation fault on NetBSD 11 by fixing ctype abuse
While here review the rest of the code for ctype abuse which might cause
run-time crashes in the same platform.
reviewed by riastradh.
fix XMAP9 access / timings, which is surprisingly difficult since REX and XMAP9
run at different clock speeds ( one on bus clock, the other on half the pixel
clock with no handshake, and both with their own FIFOs
From Adrian Chadd
fcitx5: Fix build failure with fmtlib > 12.0.0 (pkgsrc version: 12.1.0)
Don't use optional code hunk that adds timestamps to logs for newer fmtlib.
The recommended migration path is for std::localtime, but this seemed like
a patch that I'm less likely to get wrong, as someone who is not experienced
in C++.
log4shib: Build fix (seen in NetBSD 11 build results)
If GCC defaults to C++17, it errors out as that's when dynamic exceptions
were removed. Force us to use C++11.