boost-libs: fix cmake files
Avoid path to workdir references, and reported fix path to include files.
From Anthony Mallet on tech-pkg
Bump PKGREVISION.
openssl x509: Remove legacy call to OBJ_create()
The OID 2.99999.3 is not required for x509 output handling and
is not referenced elsewhere. Remove the OBJ_create() call.
ok tb jsing
rumdl: update to 0.1.15.
## [0.1.15] - 2026-02-07
### Added
- **MD057: `relative-to-docs` option** - New config option for validating absolute
link paths relative to a documentation root directory
### Performance
- **2.5x faster on real-world repositories** - Comprehensive performance audit and
optimization across the core pipeline, rule implementations, and infrastructure.
Validated against ripgrep, ruff, and rust repositories (1,832 files, 276K lines)
with zero regressions.
Key optimizations:
- Switch release profile from size optimization (`opt-level = "z"`) to speed (`opt-level = 3`)
- Zero-allocation line ending normalization for LF-only files (common case)
[196 lines not shown]
openssl x509: send -text output to the file specified by -out
In the x509 command, `-text` output is not written to the file specified
by `-out`, whereas in other OpenSSL/LibreSSL subcommands it is.
With this change, STDout is removed, and `-text` output is written
entirely to the file specified by `-out`, making the behavior consistent
with other subcommands.
Fix https://github.com/libressl/portable/issues/1228
ok tb jsing
py-sigal: update to 2.6.1.
Version 2.6.1
Fix a bug in photoswipe when some EXIF data does not contain the date information [:issue:`544`].
Version 2.6
Sigal now requires Python 3.11+.
With the photoswipe theme, albums can contain both images and sub-albums [:issue:`535`].
Fix issue with latest version of feedgenerator.
Fix compat with click 8.2.0.
Fix theme URL for photoswipe.
Thumbnail can now be set in index.md either with the original filename or with the thumbnail name after format conversion [:issue:`476`].
Allow portrait orientation for thumbnails [:issue:`531`].
nonmedia_files plugin: adding support for PDF thumbnails [:issue:`536`].
arm/imx23_olinuxino: implement multisegment DMA
This solves occasional issues in the sdmmc driver when it can't allocate large enough continguous segments due to memory fragmentation.
py-setuptools: update to 81.0.0.
v81.0.0
=======
Deprecations and Removals
-------------------------
- Removed support for the --dry-run parameter to setup.py. This
one feature by its nature threads through lots of core and ancillary
functionality, adding complexity and friction. Removal of this
parameter will help decouple the compiler functionality from
distutils and thus the eventual full integration of distutils.
These changes do affect some class and function signatures, so any
derivative functionality may require some compatibility shims to
support their expected interface. Please report any issues to the
Setuptools project for investigation. (#4872)
py-ruff: update to 0.15.0.
Breaking changes
Ruff now formats your code according to the 2026 style guide. See the formatter section below or in the blog post for a detailed list of changes.
The linter now supports block suppression comments. For example, to suppress N803 for all parameters in this function:
# ruff: disable[N803]
def foo(
legacyArg1,
legacyArg2,
legacyArg3,
legacyArg4,
): ...
# ruff: enable[N803]
See the documentation for more details.
[91 lines not shown]
py-pip: update to 26.0.1.
26.0.1 (2026-02-04)
===================
Bug Fixes
---------
- Fix ``--pre`` not being respected from the command line when a requirement file
includes an option e.g. ``-extra-index-url``. (`#13788 <https://github.com/pypa/pip/issues/13788>`_)