Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#73573 - [python-jaraco] jaraco.context is now a dependency for jaraco.text (included in this package)
Attached to Project:
Community Packages
Opened by Mike Javorski (javmorin) - Monday, 31 January 2022, 06:11 GMT
Last edited by Evangelos Foutras (foutrelis) - Tuesday, 15 February 2022, 13:27 GMT
Opened by Mike Javorski (javmorin) - Monday, 31 January 2022, 06:11 GMT
Last edited by Evangelos Foutras (foutrelis) - Tuesday, 15 February 2022, 13:27 GMT
|
DetailsDescription:
The included jaraco.text module now depends on jaraco.context, but that is currently shipped separately (as python-jaraco.context) and is not listed as a dependency, but it has a dependency on this package, so should (probably) be consolidated. Relevant Commit: https://github.com/jaraco/jaraco.text/commit/3a82a4dbdf5a82012434ebbff2da4e90bb1095b5 Additional info: * 2022.1.24-1 Steps to reproduce: - Attempt to import jaraco.text, get errors |
This task depends upon
Closed by Evangelos Foutras (foutrelis)
Tuesday, 15 February 2022, 13:27 GMT
Reason for closing: Fixed
Additional comments about closing: python-jaraco 2022.1.24-2 + python-jaraco.context 4.1.1-2
Tuesday, 15 February 2022, 13:27 GMT
Reason for closing: Fixed
Additional comments about closing: python-jaraco 2022.1.24-2 + python-jaraco.context 4.1.1-2
$ python -c 'import jaraco.text'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/lib/python3.10/site-packages/jaraco/text/__init__.py", line 12, in <module>
from jaraco.context import ExceptionTrap
ModuleNotFoundError: No module named 'jaraco.context'
Installing python-jaraco.context 4.0.0-1 solves that error but results in another error
$ python -c 'import jaraco.text'
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/lib/python3.10/site-packages/jaraco/text/__init__.py", line 136, in <module>
@_unicode_trap.passes
AttributeError: 'ExceptionTrap' object has no attribute 'passes'
I realize that python-jaraco.context is out of date. I updated it to 4.1.1 (bumped pkgver and ran updpkgsums) and then checked that it builds in a clean chroot and passes all tests.
It seems this updates solves the issue. However, I did not test all the downstream packages except for python-cherrypy (which works!).