From ddded728247f89bc102db32291d1271dd362be91 Mon Sep 17 00:00:00 2001 From: mio Date: Sun, 5 Apr 2026 04:11:26 +0000 Subject: [PATCH] testing/py3-jaraco.vcs: add py3-jaraco.path to depends Fix `ModuleNotFoundError` when imported by other libraries. Error found during a rebuild of `py3-rst.linker`. ``` File "/usr/lib/python3.14/site-packages/jaraco/vcs/__init__.py", line 9, in from .subprocess import Git, Mercurial File "/usr/lib/python3.14/site-packages/jaraco/vcs/subprocess.py", line 4, in from . import base, cmd File "/usr/lib/python3.14/site-packages/jaraco/vcs/cmd.py", line 13, in import jaraco.path ModuleNotFoundError: No module named 'jaraco.path' ``` --- testing/py3-jaraco.vcs/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/py3-jaraco.vcs/APKBUILD b/testing/py3-jaraco.vcs/APKBUILD index 39f64f492de..40e40f9912f 100644 --- a/testing/py3-jaraco.vcs/APKBUILD +++ b/testing/py3-jaraco.vcs/APKBUILD @@ -2,12 +2,12 @@ # Maintainer: Duncan Bellamy pkgname=py3-jaraco.vcs pkgver=2.4.1 -pkgrel=1 +pkgrel=2 pkgdesc="Classes for inspecting and working with repositories in the Mercurial and Git version control systems" url="https://github.com/jaraco/jaraco.vcs" arch="noarch" license="MIT" -depends="py3-dateutil py3-jaraco.classes py3-jaraco.versioning py3-more-itertools py3-packaging py3-tempora" +depends="py3-dateutil py3-jaraco.classes py3-jaraco.path py3-jaraco.versioning py3-more-itertools py3-packaging py3-tempora" makedepends="py3-gpep517 py3-installer py3-setuptools_scm py3-wheel" checkdepends="py3-jaraco.path py3-pytest py3-pytest-home" subpackages="$pkgname-pyc"