Alexandru Ardelean [Sun, 29 Mar 2026 12:43:53 +0000 (12:43 +0000)]
python-cachetools: bump to 7.0.5
Changes since 5.3.1:
- v6.0: Drop Python 3.7 support; add Python 3.12/3.13
- v6.0: TTLCache now uses monotonic time for expiry
- v7.0: Cache classes are now generic (PEP 585 type hints)
- v7.0: New MRUCache (most-recently-used) eviction policy
- Various performance improvements across all cache types
Also add test.sh to verify LRU/LFU/TTL caches and @cached decorator.
Link: https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 12:43:53 +0000 (12:43 +0000)]
python-sniffio: bump to 1.3.1
Changes since 1.3.0:
- Fix compatibility with Python 3.12+ by updating deprecated
asyncio internals usage
Also add test.sh to verify version and asyncio library detection.
Link: https://github.com/python-trio/sniffio/blob/master/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 12:43:53 +0000 (12:43 +0000)]
python-jmespath: bump to 1.1.0
Changes since 1.0.1:
- Support for multi-select list/hash expressions with enhanced
function argument validation
- Minor performance improvements in expression parsing
Also add test.sh to verify field access, wildcards, and filters.
Link: https://github.com/jmespath/jmespath.py/blob/develop/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 12:43:37 +0000 (12:43 +0000)]
python-decorator: bump to 5.2.1
Changes since 4.4.2:
- v5.x rewrites the implementation using the standard library
inspect module, dropping the code generation approach
- Signature preservation is now based on functools.wraps internals
- New contextmanager and asynccontextmanager decorator support
- Python 3.8+ required; Python 2 no longer supported
Also add test.sh to verify signature preservation and basic usage.
Link: https://github.com/micheles/decorator/blob/master/CHANGES.md
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 30 Mar 2026 17:29:41 +0000 (20:29 +0300)]
python3-email: add python3-urllib as dependency
In recent versions of Python, trying to include 'email' also pulls
in urllib from CPython.
So just add it as dependency.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 28 Mar 2026 19:07:41 +0000 (19:07 +0000)]
python-tabulate: bump to 0.10.0
Changes since 0.9.0:
- New 'outline' table format
- Support for multi-line cell values in more formats
- Improved alignment for mixed-type columns
- Various bug fixes for edge cases in number formatting
Also add test.sh to verify version and basic table rendering.
Link: https://github.com/astanin/python-tabulate/blob/master/CHANGELOG
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 28 Mar 2026 19:07:38 +0000 (19:07 +0000)]
python-schema: bump to 0.7.8
Changes since 0.7.5:
- Fix handling of Optional keys with default values
- Improve error messages for nested schema failures
- Various bug fixes and compatibility improvements
Also add test.sh to verify version and data validation API.
Link: https://github.com/keleshev/schema/blob/master/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 28 Mar 2026 19:07:29 +0000 (19:07 +0000)]
python-schedule: bump to 1.2.2
Changes since 1.2.0:
- Fix compatibility with Python 3.12 deprecation of datetime.utcnow()
- Various minor bug fixes and improvements
Also add test.sh to verify version and core scheduling API.
Link: https://github.com/dbader/schedule/blob/master/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 28 Mar 2026 19:07:26 +0000 (19:07 +0000)]
python-iniconfig: bump to 2.3.0
Changes since 2.0.0:
- Improve error messages for invalid ini files
- Drop support for Python 3.7, add Python 3.12/3.13
Also add test.sh to verify version and basic INI parsing.
Link: https://github.com/pytest-dev/iniconfig/blob/main/CHANGELOG
Signed-off-by: Alexandru Ardelean <redacted>
Joshua Klinesmith [Mon, 30 Mar 2026 19:52:39 +0000 (15:52 -0400)]
stunnel: create PID directory before alt_config_file return
When alt_config_file is set, global_defs() returns before creating
the PID file directory. stunnel then fails to start because it
cannot write its PID file to the nonexistent directory.
Move the PID directory creation and ownership setup above the
alt_config_file early return so it runs regardless of config mode.
Fixes: openwrt/openwrt#28982
Signed-off-by: Joshua Klinesmith <redacted>
Co-Authored-By: Claude Opus 4.6 (1M context) <redacted>
Niklas Thorild [Tue, 31 Mar 2026 09:25:23 +0000 (11:25 +0200)]
telegraf: update to 1.38.2
- Update Telegraf to v1.38.2
Signed-off-by: Niklas Thorild <redacted>
Noah Meyerhans [Sat, 28 Mar 2026 15:31:50 +0000 (11:31 -0400)]
bind: bump to 9.20.21
Fixes several security issues:
- CVE-2026-1519 Fix unbounded NSEC3 iterations when validating
referrals to unsigned delegations.
- CVE-2026-3104 Fix memory leaks in code preparing DNSSEC proofs of
non-existence.
- CVE-2026-3119 Prevent a crash in code processing queries containing
a TKEY record.
- CVE-2026-3591 Fix a stack use-after-return flaw in SIG(0) handling
code.
Signed-off-by: Noah Meyerhans <redacted>
Eric Fahlgren [Mon, 30 Mar 2026 11:41:04 +0000 (04:41 -0700)]
owut: update to 2026.03.30
Bug fixes:
efahl/owut@
c243c697c723 owut: report only enabled branches and their data
efahl/owut@
f381ad78eca5 owut: handle true redirects
Enhancements:
efahl/owut@
670907a5081f owut: modernize what provides lookups
efahl/owut@
98471fa15682 owut: fix color of status message
Signed-off-by: Eric Fahlgren <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 13:35:58 +0000 (13:35 +0000)]
python-flask-socketio: bump to 5.6.1
Requires python-socketio >= 5.12.0 and python-engineio >= 4.11.0,
both bumped in preceding commits.
Also fix test.sh to use importlib.metadata for version check
since flask_socketio no longer exposes __version__ directly.
Link: https://github.com/miguelgrinberg/Flask-SocketIO/blob/main/CHANGES.md
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 13:35:58 +0000 (13:35 +0000)]
python-socketio: bump to 5.16.1
Changes since 5.11.2:
- v5.12.0: Add Server.reason attribute for disconnect reason tracking
- v5.13+: Improved namespace and room management
- v5.16+: Fix compatibility with python-engineio 4.11+
Link: https://github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 13:35:57 +0000 (13:35 +0000)]
python-engineio: bump to 4.13.1
Changes since 4.5.1:
- v4.6+: Add support for WebTransport protocol
- v4.9+: Improved async task handling and cancellation
- v4.11.0: Required minimum for python-socketio 5.12+
- Various fixes for connection lifecycle and error handling
Also add test.sh to verify WSGI/ASGI app wrappers and server creation.
Link: https://github.com/miguelgrinberg/python-engineio/blob/main/CHANGES.md
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 30 Mar 2026 09:59:21 +0000 (12:59 +0300)]
python-simple-websocket: new package (1.1.0)
Simple WebSocket and WAMP client and server for Python.
Required by python-engineio 4.13.1 threading async_mode for
WebSocket transport support.
Link: https://github.com/miguelgrinberg/simple-websocket
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 30 Mar 2026 09:59:17 +0000 (12:59 +0300)]
python-wsproto: new package (1.3.2)
Pure-Python WebSocket protocol implementation, implements RFC6455
and RFC7692 (WebSocket Compression Extensions).
Required as a dependency of python-simple-websocket.
Link: https://github.com/python-hyper/wsproto
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 30 Mar 2026 09:59:13 +0000 (12:59 +0300)]
python-h11: new package (0.16.0)
Pure-Python, bring-your-own-I/O implementation of HTTP/1.1.
Required as a dependency of python-wsproto.
Link: https://github.com/python-hyper/h11
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 11:37:06 +0000 (11:37 +0000)]
Flask: bump to 3.1.3; add test.sh
Changelog since 3.1.2:
- Fix security vulnerability GHSA-68rp-wp8r-4726: session now marked as
accessed for key-existence checks (in, len) to prevent timing attacks
Add python3-blinker as dependency (should have been there also in 3.1.2)
Add test.sh.
Full changelog: https://flask.palletsprojects.com/en/stable/changes/
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 11:36:57 +0000 (11:36 +0000)]
python-blinker: new package (1.9.0)
Flask 3.x requires blinker for its signal system. Add python-blinker
1.9.0 as a new package.
blinker is a pure-Python package (flit-core build backend) with no
runtime dependencies.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 30 Mar 2026 09:51:50 +0000 (12:51 +0300)]
python-wcwidth: drop package
There is no clear user for this package.
It's a pure-python package which could be installed via pip on a target.
Unless there is someone who comes forward and asks that we keep it,
I see no reason to keep it.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Tue, 10 Mar 2026 12:32:38 +0000 (12:32 +0000)]
python-rtslib-fb: add some basic tests
These are a massive help for keeping things stable on the
mid-to-longterm when updating packages.
We might even feel comfortable partially automating the process.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Tue, 10 Mar 2026 12:32:38 +0000 (12:32 +0000)]
python-pyudev: add some basic tests
These are a massive help for keeping things stable on the
mid-to-longterm when updating packages.
We might even feel comfortable partially automating the process.
Signed-off-by: Alexandru Ardelean <redacted>
Andreas Hirschauer [Tue, 10 Mar 2026 12:32:38 +0000 (12:32 +0000)]
python-rtslib-fb: add new package
rtslib-fb depends on pyudev and provides a Python API for configuring
the Linux LIO target subsystem.
Signed-off-by: Andreas Hirschauer <redacted>
Andreas Hirschauer [Tue, 10 Mar 2026 12:32:38 +0000 (12:32 +0000)]
python-pyudev: add new package
pyudev provides Python bindings for libudev.
Signed-off-by: Andreas Hirschauer <redacted>
Neil Alexander [Mon, 16 Mar 2026 19:18:24 +0000 (19:18 +0000)]
yggdrasil: update to 0.5.13
Signed-off-by: Neil Alexander <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 18:43:56 +0000 (18:43 +0000)]
python-pyopenssl: bump to 26.0.0
Notable changes since 23.3.0:
v26.0.0:
- Drop Python 3.7 support
- Minimum cryptography version is now 46.0.0
- Security fix: properly raise an error if a DTLS cookie callback
returned a cookie longer than DTLS1_COOKIE_LENGTH bytes, previously
resulting in a buffer-overflow (CVE-2026-27459)
- Security fix: Context.set_tlsext_servername_callback now handles
exceptions raised in the callback instead of silently swallowing
them (CVE-2026-27448)
- Added support for using aws-lc instead of OpenSSL
- Added OpenSSL.SSL.Connection.get_group_name
v25.x:
- Added OpenSSL.SSL.Context.set_tls13_ciphersuites
- Added OpenSSL.SSL.Connection.set_info_callback
- Added OpenSSL.SSL.Context.clear_mode
- pyOpenSSL now sets SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER by default
- typing-extensions added as a runtime dependency (for Python < 3.13)
Full changelog:
https://www.pyopenssl.org/en/stable/changelog.html
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 29 Mar 2026 05:51:47 +0000 (05:51 +0000)]
treewide: remove Jan Pavlinec as maintainer
Jan Pavlinec <redacted> is no longer maintaining
these packages. Remove him from the PKG_MAINTAINER field across
all affected packages.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 08:26:11 +0000 (08:26 +0000)]
python-referencing: bump to 0.37.0
Full changelog:
https://github.com/python-jsonschema/referencing/blob/main/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Wed, 25 Mar 2026 11:41:41 +0000 (11:41 +0000)]
python-rpds-py: bump to 0.30.0
Required for Python 3.14 compatibility; rpds-py 0.10.6 predates
Python 3.14 support in PyO3 and causes a segfault at runtime.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 28 Mar 2026 15:46:17 +0000 (15:46 +0000)]
python-build: bump to 1.4.2
Notable changes since 1.4.0:
v1.4.1:
- Allow setting build constraints
- Fix pip hack workaround
v1.4.2:
- Ensure the uv installer uses the current version of Python,
avoiding an issue if UV_PYTHON is set
- Fix _has_valid_outer_pip returning True when pip is missing,
causing build to try using a non-existent pip instead of
falling back to virtualenv
Link: https://github.com/pypa/build/blob/main/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Thu, 19 Mar 2026 14:33:10 +0000 (14:33 +0000)]
python-pytest: bump to 9.0.2
Changelog since 7.4.0:
- v8.1.0: Add namespace packages support; fine-grained verbosity control;
improved --import-mode=importlib behavior
- v8.2.0: Add command-line argument files via @filename syntax; add
PYTEST_VERSION env variable; requires pluggy>=1.5.0
- v8.3.0: Add --xfail-tb flag; marker keyword matching; --no-fold-skipped
option; better virtual environment detection
- v8.4.0: Async tests without suitable plugin now fail (not warned);
tests returning non-None values now fail; drop Python 3.8 support;
add pytest.RaisesGroup for ExceptionGroup matching
- v9.0.0: Drop Python 3.9 support; subtest support via pytest.Subtests;
native TOML config in [tool.pytest] table; strict mode options;
PytestRemovedIn9Warning deprecations are now errors
- v9.0.1: Restore "raise unittest.SkipTest" support; disable terminal
progress for iTerm2
- v9.0.2: Disable terminal progress by default; fix config.inicfg
compatibility; fix quadratic-time behavior with unittest subtests
Add python3-pygments dependency (new requirement since 8.x).
Add test.sh.
Full changelog:
https://github.com/pytest-dev/pytest/releases
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 11:59:20 +0000 (11:59 +0000)]
python-pygments: new package (2.19.2)
Pygments is a generic syntax highlighting library that supports over
500 languages and text formats. It is used by a wide range of tools
for terminal, HTML, and LaTeX output.
Added as a required dependency for python-pytest >= 7.x, which uses
Pygments to syntax-highlight code snippets in failure reports and
tracebacks.
The package uses hatchling as its build backend and has no runtime
dependencies beyond the Python standard library.
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Stan Grishin [Fri, 27 Mar 2026 20:45:09 +0000 (20:45 +0000)]
adblock-fast: update to 1.2.2-r16
* add: ucode-mod-uloop dependency
* add: parallel downloads using uloop
* fix: explicit allow for domains from allow-lists
* fix: get environment information for getInitStatus RPCD call
* add: update tests
Signed-off-by: Stan Grishin <redacted>
Jianhui Zhao [Sat, 28 Mar 2026 05:41:45 +0000 (13:41 +0800)]
lua-eco: update to 3.16.0
changelog: https://github.com/zhaojh329/lua-eco/releases/tag/v3.16.0
Signed-off-by: Jianhui Zhao <redacted>
Alexandru Ardelean [Tue, 24 Mar 2026 04:40:37 +0000 (04:40 +0000)]
python-pluggy: bump to 1.6.0
Required by python-pytest >= 9.0.0, which needs pluggy >= 1.5.0.
v1.5.0 added support for deprecating specific hook parameters via
warn_on_impl_args (used by pytest 9.x hookspecs). Without this,
pytest fails to import with:
TypeError: HookspecMarker.__call__() got an unexpected keyword
argument 'warn_on_impl_args'
v1.6.0 changes:
- Drop Python 3.8 support
- Fix regression where get_result() on a failed Result caused the
exception traceback to grow longer on each call
- Fix StopIteration passing through hook wrappers
- Fix Python 3.14 SyntaxWarning
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Thu, 26 Mar 2026 19:22:03 +0000 (21:22 +0200)]
python-setuptools-scm: bump to version 10.0.3
Seems they released a new version already.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Thu, 26 Mar 2026 15:32:22 +0000 (17:32 +0200)]
python-vcs-versioning: add python-build/host dep
Fixes build errors.
Signed-off-by: Alexandru Ardelean <redacted>
Qin Guang [Thu, 26 Mar 2026 12:45:49 +0000 (12:45 +0000)]
tar: fix typo in LDFLAGS variable name
LDLAGS -> LDFLAGS, fixes linker flags not being passed correctly.
Fixes: 94e7fbdda ("tar: import from oldpackages and upgrade to 1.28")
Signed-off-by: Qin Guang <redacted>
Chen Minqiang [Thu, 26 Mar 2026 16:40:04 +0000 (00:40 +0800)]
openvpn: fix quoting and deprecated option filtering
This patch fixes two issues in the netifd protocol script:
1. Fix logic error in deprecated option filtering:
Previously, ${f%%:*} was called before checking for the deprecated
flag (:d). This stripped the suffix and made the check [ "${f#*:}" = "d" ]
always fail. The cleaning of $f is now deferred until after this check.
2. Improve parameter quoting for specific options:
- Adds single quotes to --push and --push-remove parameters to handle
spaces (e.g., "route 10.0.0.0 255.255.255.0").
- Unifies quoting for 'file' type options to improve shell safety.
- Refactors the build logic using a case statement for better
extensibility.
Signed-off-by: Chen Minqiang <redacted>
Dirk Brenken [Fri, 27 Mar 2026 09:18:38 +0000 (10:18 +0100)]
adblock: update 4.5.3-4
* harden adblock backend: removed all needless eval calls
* more fixes & optimizations
* LuCI: Allow dns instance selection for smartdns (not only for dnsmasq)
* LuCI: more fixes & optimizations
* readme update
Signed-off-by: Dirk Brenken <redacted>
Tianling Shen [Fri, 27 Mar 2026 03:13:09 +0000 (11:13 +0800)]
v2ray-geodata: Update to latest version
Update all geodata.
Signed-off-by: Tianling Shen <redacted>
Tianling Shen [Fri, 27 Mar 2026 03:12:11 +0000 (11:12 +0800)]
cloudflared: Update to 2026.3.0
2026.3.0
- 2026-03-05 TUN-10292: Add cloudflared management token command
- 2026-03-03 chore: Addressing small fixes and typos
- 2026-03-03 fix: Update go-sentry and go-oidc to address CVE's
- 2026-02-24 TUN-10258: add agents.md
- 2026-02-23 TUN-10267: Update mods to fix CVE GO-2026-4394
- 2026-02-20 TUN-10247: Update tail command to use /management/logs endpoint
- 2026-02-11 TUN-9858: Add more information to proxy-dns removal message
2026.2.0
- 2026-02-06 TUN-10216: TUN fix cloudflare vulnerabilities GO-2026-4340 and GO-2026-4341
- 2026-02-02 TUN-9858: Remove proxy-dns feature from cloudflared
Signed-off-by: Tianling Shen <redacted>
Tianling Shen [Fri, 27 Mar 2026 03:10:55 +0000 (11:10 +0800)]
dnsproxy: Update to 0.81.0
Release note:
- https://github.com/AdguardTeam/dnsproxy/releases/tag/v0.79.0
- https://github.com/AdguardTeam/dnsproxy/releases/tag/v0.80.0
- https://github.com/AdguardTeam/dnsproxy/releases/tag/v0.81.0
Signed-off-by: Tianling Shen <redacted>
Tianling Shen [Fri, 27 Mar 2026 03:06:32 +0000 (11:06 +0800)]
rclone: Update to 1.73.3
Release note: https://rclone.org/changelog/#v1-73-3-2026-03-23
Signed-off-by: Tianling Shen <redacted>
Tianling Shen [Fri, 27 Mar 2026 03:04:15 +0000 (11:04 +0800)]
v2ray-core: Update to 5.47.0
Release note: https://github.com/v2fly/v2ray-core/releases/tag/v5.47.0
Signed-off-by: Tianling Shen <redacted>
Tianling Shen [Fri, 27 Mar 2026 03:02:04 +0000 (11:02 +0800)]
xray-core: Update to 26.2.6
Release note: https://github.com/XTLS/Xray-core/releases/tag/v26.2.6
Signed-off-by: Tianling Shen <redacted>
Tianling Shen [Fri, 27 Mar 2026 02:58:47 +0000 (10:58 +0800)]
cloudreve: Update to 4.15.0
Changelog:
- https://github.com/cloudreve/cloudreve/releases/tag/4.10.0
- https://github.com/cloudreve/cloudreve/releases/tag/4.10.1
- https://github.com/cloudreve/cloudreve/releases/tag/4.11.0
- https://github.com/cloudreve/cloudreve/releases/tag/4.11.1
- https://github.com/cloudreve/cloudreve/releases/tag/4.12.1
- https://github.com/cloudreve/cloudreve/releases/tag/4.13.0
- https://github.com/cloudreve/cloudreve/releases/tag/4.14.0
- https://github.com/cloudreve/cloudreve/releases/tag/4.14.1
- https://github.com/cloudreve/cloudreve/releases/tag/4.15.0
Fixes: CVE-2026-25726
Signed-off-by: Tianling Shen <redacted>
Jean Thomas [Thu, 26 Mar 2026 09:12:13 +0000 (10:12 +0100)]
python-poetry-core: bump to 2.3.1
Bump to latest available version.
Signed-off-by: Jean Thomas <redacted>
Stan Grishin [Sat, 21 Mar 2026 01:12:02 +0000 (01:12 +0000)]
adblock-fast: update to 1.2.2-r14
* fix: ensure output in CLI in status and quick start commands
* fix: ensure relevant directories exist when using a (gzip) cache file on
first boot
* add: update functional tests
Signed-off-by: Stan Grishin <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 18:39:26 +0000 (18:39 +0000)]
python-pycparser: bump to 3.0
v3.0 removes the dependency on PLY by rewriting pycparser with a
hand-written lexer and recursive-descent parser for C. No API changes
or functionality changes - the same AST is produced as before.
Other changes:
- Drop EOL Python 3.8 and 3.9 support (minimum now 3.10)
- Add support for Python 3.14
Since PLY is no longer used:
- Remove python-ply from PKG_BUILD_DEPENDS and HOST_BUILD_DEPENDS
- Remove +python3-ply from package DEPENDS
- Remove 001-use-external-ply.patch (no longer needed)
Full release notes:
https://github.com/eliben/pycparser/releases/tag/release_v3.00
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Tim Flubshi [Wed, 18 Mar 2026 20:55:29 +0000 (21:55 +0100)]
ddns-scripts: add netcup.com support
Add a new netcup DDNS provider using the netcup DNS api
(ccp.netcup.net) with API key authentication.
Configuration mapping:
* username = netcup customer number
* password = netcup API password
* param_enc = netcup API key (generated in the CCP)
* domain = fully qualified subdomain to update (e.g. home.example.de)
* param_opt = (optional) root/zone domain override (e.g. example.de)
When omitted the root domain is derived by stripping the
leftmost label from 'domain'. This only works correctly for
a single subdomain level (e.g. "home.example.de").
param_opt MUST be set explicitly in two cases:
1. Deep subdomains: domain=test.internal.example.org
2. ccSLD apex domains: domain=example.co.nz
Signed-off-by: Tim Flubshi <redacted>
Chester A. Unal [Fri, 20 Mar 2026 07:49:09 +0000 (09:49 +0200)]
bsbf-rate-limiting: add
Update bsbf-resources to the GIT HEAD of 2026-03-24. Add bsbf-rate-limiting
and make bsbf-bonding depend on bsbf-rate-limiting.
Signed-off-by: Chester A. Unal <redacted>
Chester A. Unal [Fri, 20 Mar 2026 07:53:51 +0000 (09:53 +0200)]
plp-mtu-discovery: update to GIT HEAD of 2026-03-16
Update plp-mtu-discovery to the GIT HEAD of 2026-03-16.
Signed-off-by: Chester A. Unal <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 18:58:36 +0000 (18:58 +0000)]
python-psutil: bump to 7.2.2
Notable changes since 5.9.5:
v6.0.0:
- process_iter() is now ~20x faster (no longer pre-emptively checks
PID reuse); add process_iter.cache_clear() API
- Process.connections() renamed to Process.net_connections()
(old name deprecated)
- disk_partitions() namedtuple drops maxfile/maxpath fields
- Support building with free-threaded CPython 3.13
v7.0.0:
- Drop Python 2.7 support
v7.2.0:
- New heap_info() and heap_trim() functions for native C heap allocator
access (glibc, mimalloc, libmalloc)
- Tests are no longer part of the installed package
v7.2.2:
- [Linux] Process.wait() now uses pidfd_open() + poll() for waiting
(no busy loop, faster response); requires Linux >= 5.3 + Python 3.9,
falls back to polling otherwise
- [macOS/BSD] Process.wait() now uses kqueue() for waiting
- Various macOS memory leak and error handling fixes
Also refresh 100-fix-non-Linux-compile.patch for the updated setup.py
(noqa comment style changed; _compat imports removed upstream).
Add test.sh.
Full changelog:
https://github.com/giampaolo/psutil/blob/master/HISTORY.rst
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Tue, 24 Mar 2026 07:49:07 +0000 (07:49 +0000)]
django-restframework: bump to 3.17.0
v3.17.0 changes:
- Drop Python 3.9 support (minimum now 3.10)
- Drop deprecated coreapi support
- Add Python 3.14 support
- Add ability to specify output format for DurationField
- Add missing decorators: @versioning_class(), @content_negotiation_class(),
@metadata_class() for function-based views
- Support violation messages in UniqueConstraint
Full release notes:
https://github.com/encode/django-rest-framework/releases/tag/3.17.0
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 07:39:38 +0000 (07:39 +0000)]
micropython: bump to 1.27.0
Also update micropython-lib to v1.27.0. Switch micropython-lib from a
git source to the release tarball from:
https://github.com/micropython/micropython-lib/releases/tag/v1.27.0
MPY_VERSION remains at 6, no ABI change.
Adjusted patches.
Signed-off-by: Alexandru Ardelean <redacted>
Luiz Angelo Daros de Luca [Wed, 11 Mar 2026 19:48:14 +0000 (16:48 -0300)]
libvpx: update to 1.16.0
Update libvpx to v1.16.0 "Xenonetta Duck". Highlights include:
- Arm SVE2 and Neon optimizations for 12-tap filters.
- AVX512 implementations for Sum of Absolute Differences (SAD).
- Support for per-frame and per-spatial-layer PSNR calculation.
- ABI incompatible with the previous release.
Includes changes from intermediate releases:
- v1.15.2: Fixes CVE-2025-5283 (bug webm:
413411335).
- v1.15.1: SO major version bump and changelog corrections.
- v1.15.0: New codec control for key frame filtering and RTC improvements.
Changelog: https://github.com/webmproject/libvpx/blob/v1.16.0/CHANGELOG
Signed-off-by: Luiz Angelo Daros de Luca <redacted>
Luiz Angelo Daros de Luca [Tue, 24 Mar 2026 01:19:13 +0000 (22:19 -0300)]
ruby: update to 4.0.2
ruby 4.0.2 is a routine update that includes a bugfix in YJIT for
NoMethodError on Puma, along with other bugfixes.
ruby 4.0.1 includes a bugfix for spurious wakeup from Kernel#sleep when
subprocess exits in another thread, along with other bugfixes.
Link: https://www.ruby-lang.org/en/news/2026/03/16/ruby-4-0-2-released/
Changelog: https://github.com/ruby/ruby/releases/tag/v4.0.2
Link: https://www.ruby-lang.org/en/news/2026/01/13/ruby-4-0-1-released/
Changelog: https://github.com/ruby/ruby/releases/tag/v4.0.1
Signed-off-by: Luiz Angelo Daros de Luca <redacted>
Kamil Bienkiewicz [Thu, 19 Mar 2026 09:34:37 +0000 (10:34 +0100)]
net-snmp: add distro extend using /etc/os-release
Read PRETTY_NAME from /etc/os-release via /bin/sh for distro output.
Bump PKG_RELEASE to account for the package configuration change.
Signed-off-by: Kamil Bienkiewicz <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 18:34:53 +0000 (18:34 +0000)]
python-setuptools-scm: bump to 10.0.1
v10.0.0 is a major release with these key changes:
- Drop Python 3.8 and 3.9 support; minimum is now Python 3.10
- Depend on vcs-versioning for core version inference logic, allowing
other build backends to reuse it without a setuptools dependency
- Version files (write_to, version_file) are now written to the build
directory during build_py instead of the source tree during version
inference, enabling builds from read-only source directories
v10.0.1 fixes the release pipeline tooling only (no functional changes).
Full release notes:
https://github.com/pypa/setuptools-scm/releases/tag/setuptools-scm-v10.0.0
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 18:34:47 +0000 (18:34 +0000)]
python-vcs-versioning: add new package (version 1.0.1)
vcs-versioning provides the core VCS version inference logic that was
extracted from setuptools-scm into a standalone library. This enables
other build backends to use the same version inference without a
setuptools dependency.
Required as a new dependency for setuptools-scm >= 10.0.0.
Co-Authored-By: Claude Sonnet 4.6 <redacted>
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 17:15:14 +0000 (17:15 +0000)]
python-chardet: bump to 7.2.0
Bump to 7.2.0.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 18:46:54 +0000 (20:46 +0200)]
python-more-itertools: drop package (no longer used)
Was needed by python-zipp
Right now, it's no longer needed, so it can be pulled by pip
on the device (if needed).
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 15 Mar 2026 13:12:45 +0000 (15:12 +0200)]
pillow: bump to 12.1.1
Pillow 12.x introduces pybind11-based C extension bindings and a
custom build backend (wrapping setuptools.build_meta). This requires:
- Replacing python-setuptools-scm with python-setuptools as build dep
- Adding python-pybind11 as a new build dependency (host)
- Updating build config settings from --build-option flags to the new
key=value format (e.g. zlib=enable, imagequant=disable)
- Removing the separate webpmux flag (merged into webp feature)
Full release notes:
https://pillow.readthedocs.io/en/stable/releasenotes/index.html
Remove 001-remove-setuptools-version-limit.patch
That's an old relic since when setuptools was packaged inside Python3
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 15 Mar 2026 14:03:01 +0000 (16:03 +0200)]
python-pybind11: add new package (version 2.13.6)
pybind11 is a header-only library that exposes C++ types in Python,
used as a build-time dependency by packages like Pillow 12.x.
Uses setuptools as its build backend.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 09:48:40 +0000 (09:48 +0000)]
libwebp: bump to 1.6.0
Changelog since 1.5.0:
- Binary compatible release
- New API: WebPValidateDecoderConfig
- AVX2/SSE2 optimizations and lossless compression improvements
- Fix -mt multi-threading consistency issue
- cwebp: -resize can be restricted with -resize_mode
Full changelog: https://chromium.googlesource.com/webm/libwebp/+/refs/tags/v1.6.0/ChangeLog
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 07:34:15 +0000 (07:34 +0000)]
newt: bump to 0.52.25
Changes since 0.52.24:
- Bug fixes and maintenance updates
Need to revert a patch in the build, since it doesn't work for
cross-compilation.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 21 Mar 2026 06:44:59 +0000 (06:44 +0000)]
python-werkzeug: bump to 3.1.6
Changelog since 3.1.3:
- v3.1.4: Fix special device name access on Windows in send_from_directory
(security); fix multipart parser \r\n handling at chunk boundaries;
improve Watchdog reloader CPU efficiency
- v3.1.5: Extend Windows path protection against special device names
(security); fix multipart form parser \r\n at chunk boundaries; fix
AttributeError in DebuggedApplication with pin_security=False
- v3.1.6: Block special device names in multi-segment paths on Windows
via safe_join (security)
Add test.sh.
Full changelog:
https://werkzeug.palletsprojects.com/en/stable/changes/
Signed-off-by: Alexandru Ardelean <redacted>
Tianling Shen [Thu, 12 Mar 2026 08:33:20 +0000 (16:33 +0800)]
libtorrent-rasterbar: add boost as dependency for python package
`boost-python3` will be only selectable after `boost` is selected,
so add `boost` to dependencies as well.
Signed-off-by: Tianling Shen <redacted>
Alexandru Ardelean [Mon, 23 Mar 2026 07:50:36 +0000 (07:50 +0000)]
python-pyasn1: bump to 0.6.3
Changelog since 0.6.2:
- Fix CVE-2026-30922: nesting depth limit in ASN.1 decoder to prevent
stack overflow from deeply nested structures
- Fix OverflowError from oversized BER length fields (#54)
- Fix incorrect stacklevel in deprecation warnings (#86)
- Fix fractional seconds parsing in asDateTime function (#81)
Full changelog: https://github.com/pyasn1/pyasn1/blob/main/CHANGES.rst
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 06:55:57 +0000 (06:55 +0000)]
python-attrs: bump to 26.1.0
Changelog since 25.3.0:
- v25.4.0: Add python-hatch-fancy-pypi-readme as build dependency
- v26.1.0: Field aliases now resolved before calling field_transformer,
with new Attribute.alias_is_default flag (#1509); fix type annotations
for validators.optional() with tuples (#1496); validators.disabled()
now supports nesting (#1513); frozen classes support
on_setattr=attrs.setters.NO_OP (#1515); attrs.fields() accepts
instances in addition to classes (#1529)
Full changelog: https://www.attrs.org/en/stable/changelog.html
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 07:35:46 +0000 (07:35 +0000)]
mpremote: bump to 1.27.0
Sync with MicroPython 1.27.0 release.
Drop patch: we have Python 3.14, importlib_metadata will be installed
for Python 3.7 or smaller.
New dep: platformdirs added.
Signed-off-by: Alexandru Ardelean <redacted>
Szabolcs Hubai [Sun, 22 Mar 2026 11:33:24 +0000 (12:33 +0100)]
snapcast: update to v0.35.0
A straightforward update from 0.34.0 (2025-10-12, [1])
to 0.35.0 (2026-03-10, [2])
Upstream changelog:
https://github.com/snapcast/snapcast/blob/v0.35.0/changelog.md
[1]: https://github.com/snapcast/snapcast/releases/tag/v0.34.0
[2]: https://github.com/snapcast/snapcast/releases/tag/v0.35.0
Signed-off-by: Szabolcs Hubai <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 06:55:57 +0000 (06:55 +0000)]
python-attrs: bump to 25.4.0
Changes since 23.1.0:
- attrs 24.1.0: add __attrs_init__ customization via on_setattr
- attrs 24.2.0: improve type annotations, deprecate older APIs
- attrs 25.1.0: Python 3.13 support, drop Python 3.7
- attrs 25.3.0: further type annotation improvements
- attrs 25.4.0: bug fixes and maintenance
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 09:23:53 +0000 (09:23 +0000)]
python-hatch-fancy-pypi-readme: bump to 25.1.0
Changes since 23.1.0:
- 24.1.0: migrate from setup.cfg to pyproject.toml
- 25.1.0: drop Python 3.7 and 3.8 support; maintenance updates
Required by python-attrs 25.4.0 which needs hatch-fancy-pypi-readme>=23.2.0.
Signed-off-by: Alexandru Ardelean <redacted>
John Audia [Sat, 21 Mar 2026 11:13:46 +0000 (07:13 -0400)]
snort3: update to 3.12.1.0
Changelog: https://github.com/snort3/snort3/releases/tag/3.12.1.0
Signed-off-by: John Audia <redacted>
John Audia [Sat, 21 Mar 2026 11:12:36 +0000 (07:12 -0400)]
libdaq3: update to 3.0.27
Release notes: https://github.com/snort3/libdaq/releases/tag/v3.0.27
Signed-off-by: John Audia <redacted>
George Sapkin [Sun, 22 Mar 2026 22:02:08 +0000 (00:02 +0200)]
yt-dlp: bump to 2026.03.17
Changes: https://github.com/yt-dlp/yt-dlp/releases/tag/2026.03.13
Changes: https://github.com/yt-dlp/yt-dlp/releases/tag/2026.03.17
Signed-off-by: George Sapkin <redacted>
Dirk Brenken [Sun, 22 Mar 2026 18:55:08 +0000 (19:55 +0100)]
adblock: update 4.5.3-3
* renamed f_query to f_search (Query => Search)
* add better input validation to the f_search function,
to compensate for the very limited Wildcard ACL mechanisms in LuCI, see
https://github.com/openwrt/luci/issues/8435 for reference
* LuCI: add a proper poll mechanism to mitigate Reporting timeouts
on "Search" and "Refresh", even with big pcap files
* LuCI: Refine some ACLs
* LuCI: more fixes & optimizations
* readme update
Signed-off-by: Dirk Brenken <redacted>
Martin Neumann [Thu, 19 Mar 2026 16:32:35 +0000 (17:32 +0100)]
libqmi: update to v1.38.0
* See changes (was v1.36.0): https://gitlab.freedesktop.org/
mobile-broadband/libqmi/-/blob/main/NEWS
Signed-off-by: Martin Neumann <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 06:50:59 +0000 (06:50 +0000)]
python-augeas: bump to 1.2.0
Changes since 1.1.0:
- Python 3.11+ compatibility fixes
- Drop Python 2 support
- Various bug fixes and maintenance updates
Drop upstreamed patch: 001-backport-ffi-fix.patch
Signed-off-by: Alexandru Ardelean <redacted>
Dirk Brenken [Sun, 22 Mar 2026 15:14:10 +0000 (16:14 +0100)]
banip: update 1.8.1-3
* add better input validation to the f_content and f_search functions,
to compensate for the very limited Wildcard ACL mechanisms in LuCI, see
https://github.com/openwrt/luci/issues/8435 for reference
* LuCI: add a proper poll mechanism to mitigate Reporting timeouts
on "Search" and "Refresh", even with big Sets
* LuCI: Refine some ACLs
* LuCI: more fixes & optimizations
* readme update
Signed-off-by: Dirk Brenken <redacted>
Wei-Ting Yang [Thu, 5 Mar 2026 11:51:52 +0000 (19:51 +0800)]
ffmpeg: document BUILD_PATENTED in package description
Add a note indicating that patented codecs and technologies are
available when CONFIG_BUILD_PATENTED=y.
Signed-off-by: Wei-Ting Yang <redacted>
Martin Neumann [Thu, 19 Mar 2026 16:32:44 +0000 (17:32 +0100)]
fwupd: update to v2.1.1
* See changes (was v2.0.1): https://github.com/fwupd/fwupd/releases
Signed-off-by: Martin Neumann <redacted>
Daniel Golle [Sat, 21 Mar 2026 19:07:53 +0000 (19:07 +0000)]
net-mtools: backport upstream fix
Backport upstream commit fixing error caused by use of
uninitialized memory.
Signed-off-by: Daniel Golle <redacted>
Daniel F. Dickinson [Mon, 16 Mar 2026 06:43:17 +0000 (02:43 -0400)]
zabbix: hide CONFIG symbols when no Zabbix package selected
As noted in #28709 OpenWrt contains CONFIG_
symbols for Zabbix even when no Zabbix package is selected.
This fixes and Closes #28709.
We add a 'guard' symbol for the menus and choices so the only
generate CONFIG symbols when 'Enable Zabbix'
(CONFIG_ZABBIX_ENABLE_ZABBIX) is selected.
We also make all the Zabbix packages depend on this symbol,
for consistency.
This operates much as the pseudo-package solution, but without
a pseudo-package required.
Signed-off-by: Daniel F. Dickinson <redacted>
Daniel F. Dickinson [Mon, 16 Mar 2026 06:34:27 +0000 (02:34 -0400)]
zabbix: change spaces to tabs in Config.in
This seems to be more standard for Config.in.
Signed-off-by: Daniel F. Dickinson <redacted>
Daniel F. Dickinson [Mon, 16 Mar 2026 06:30:50 +0000 (02:30 -0400)]
zabbix: move small config-xx.in back to Makefile
Based on https://github.com/openwrt/packages/issues/28709#issuecomment-
4060013105
it has been noted that the number config.in files was high compared to actual
config selections.
Therefore move smaller selection back into the Makefile. They are still kept
with the most appropriate package which they configure.
Signed-off-by: Daniel F. Dickinson <redacted>
Alexandru Ardelean [Sun, 22 Mar 2026 06:45:47 +0000 (06:45 +0000)]
python-bidict: bump to 0.23.1
Changes since 0.22.1:
- Require Python >= 3.8 (dropped 3.7)
- Performance improvements and internal refactoring
- Better type annotations and mypy support
- Various bug fixes
Also add PKG_BUILD_DEPENDS on python-setuptools/host as bidict uses
setuptools.build_meta build backend.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 21 Mar 2026 13:26:11 +0000 (13:26 +0000)]
python-six: bump to 1.17.0
Changes since 1.16.0:
- Drop Python 2.7 and 3.5 support
- Add ensure_str(), ensure_binary(), ensure_text() helpers
- Various minor fixes and maintenance updates
six 1.17.0 switched to pyproject.toml with setuptools build backend,
so add PKG_BUILD_DEPENDS on python-setuptools/host.
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 21 Mar 2026 06:53:26 +0000 (06:53 +0000)]
python-socketio: bump to 5.11.2
Changelog since 5.8.0:
- v5.9.0: Optimize performance and memory usage for broadcasts
- v5.10.0: Add SimpleClient and AsyncSimpleClient classes; add reporting
to Socket.IO Admin UI; add server shutdown() function; make async
enter_room/leave_room proper coroutines
- v5.11.0: Add catch-all namespace support; improve pubsub manager
robustness; fix background task garbage collection
- v5.11.1: Add connection retry option in client; drop Python 3.7 support;
add Python 3.12 support
- v5.11.2: Improve routing to catch-all namespace handlers; add option
to disable routing in ASGIApp
Add test.sh.
Full changelog:
https://github.com/miguelgrinberg/python-socketio/releases
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Thu, 19 Mar 2026 15:40:49 +0000 (15:40 +0000)]
python-gmpy2: bump to 2.3.0
Changelog since 2.2.2:
- Add mpz.array() method for NumPy interaction
- Implement mpq.limit_denominator() functionality
- Add is_integer() method for mpz/mpq types
- Add mixed-mode arithmetic support for mpc types
- Enhanced formatting using context's rounding mode defaults
- Full free-threaded Python build support
- Fix memory leaks in MPFR/MPC cache and context exit
- Drop CPython 3.8 support (requires 3.9+)
Add test.sh.
gmpy2 2.3.0 switched to pyproject.toml with setuptools-scm for version
management. Add python-setuptools-scm/host to PKG_BUILD_DEPENDS.
Full changelog:
https://github.com/aleaxit/gmpy/releases
Signed-off-by: Alexandru Ardelean <redacted>
Fabrice Fontaine [Sat, 14 Mar 2026 20:53:04 +0000 (21:53 +0100)]
net/kea: assign PKG_CPE_ID
cpe:/a:isc:kea is the correct CPE ID for kea:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:isc:kea
Signed-off-by: Fabrice Fontaine <redacted>
nantayo [Sat, 21 Mar 2026 00:10:17 +0000 (08:10 +0800)]
podman: update to 5.8.1
- adjust makefile
- refresh patch
Signed-off-by: nantayo <redacted>
Christian Lachner [Sat, 21 Mar 2026 14:37:57 +0000 (15:37 +0100)]
haproxy: update to v3.2.15
- Fixes multiple security critical bugs with H3 handling. CVE submission is
pending.
- Updated haproxy PKG_VERSION and PKG_HASH
- Removed get-latest-patches.sh as it is not used anymore.
- See changes: http://git.haproxy.org/?p=haproxy-3.2.git;a=shortlog
Signed-off-by: Christian Lachner <redacted>
Alexandru Ardelean [Sat, 21 Mar 2026 06:57:34 +0000 (06:57 +0000)]
python-chardet: bump to 7.1.0
Changes since 7.0.1:
- Add PEP 263 encoding declaration detection for Python source files
- Improve performance: 5.5x faster first-detect time
- Fix undocumented encoding name changes introduced in 5.x
- Restore backward compatibility for encoding names
Signed-off-by: Alexandru Ardelean <redacted>
Alexandru Ardelean [Sat, 14 Mar 2026 08:57:15 +0000 (10:57 +0200)]
python-gnupg: bump to 0.5.6
Changelog since 0.5.1:
- Add configurable I/O buffer size via buffer_size attribute (0.5.2)
- Add Web Key Directory (WKD) support for automatic key location (0.5.3)
- Fix sensitive data exposure by removing decryption result logging (0.5.3)
- Fix exception handling in on_data callable during GPG operations (0.5.4)
- Fix GPG version detection robustness (0.5.5)
- Add uid_map attribute to capture UID information (0.5.5)
- Add capability, fingerprint and keygrip to subkey_info (0.5.6)
- Fix username handling when verification keys are expired/revoked (0.5.6)
Full changelog:
https://github.com/vsajip/python-gnupg/releases
Signed-off-by: Alexandru Ardelean <redacted>
Fabrice Fontaine [Thu, 19 Mar 2026 21:45:12 +0000 (22:45 +0100)]
net/smcroute: assign PKG_CPE_ID
cpe:/a:troglobit:smcroute is the correct CPE ID for smcroute:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:troglobit:smcroute
Signed-off-by: Fabrice Fontaine <redacted>