[Bug 267615] devel/meson: meson breaks at startup: StopIteration
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 267615] devel/meson: meson breaks at startup: StopIteration"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 13 Nov 2022 21:03:29 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=267615
Adriaan de Groot <adridg@freebsd.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adridg@freebsd.org
Status|New |Closed
Resolution|--- |Unable to Reproduce
--- Comment #1 from Adriaan de Groot <adridg@freebsd.org> ---
Can't reproduce with 13.1 and meson 0.63.2 . There is also a newer meson --
please try that.
My best guess is that you have an unusual PYTHONPATH, or something has moved
the meson modules out from underneath your installation, e.g. a Python version
bump. You can check that with
```
python3 -c 'from importlib.metadata import distribution;
print(distribution("meson").entry_points);'
```
This should print a list of at least one item, with name equal to "meson",
group "console_scripts", like this:
```
[EntryPoint(name='meson', value='mesonbuild.mesonmain:main',
group='console_scripts')]
```
--
You are receiving this mail because:
You are the assignee for the bug.