Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 931616 - dev-util/pkgcheck-0.10.29: missing results
Summary: dev-util/pkgcheck-0.10.29: missing results
Status: RESOLVED CANTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-05-09 08:30 UTC by Thomas Bettler
Modified: 2024-05-09 09:15 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Thomas Bettler 2024-05-09 08:30:22 UTC
pkgcheck doesn't catch all of the relevant results.

impact: https://bugs.gentoo.org/show_bug.cgi?id=921826 may not yet catch all of the relevant deps

```
cd /usr/portage/
pkgcheck scan -k PythonCompatUpdate --debug sci-geosciences/grass
```
returns empty result set

while 
```
grep -r PYTHON_COMPAT sci-geosciences/grass/
```

indicates
sci-geosciences/grass/grass-9999.ebuild:PYTHON_COMPAT=( python3_{10..11} )
sci-geosciences/grass/grass-8.3.2.ebuild:PYTHON_COMPAT=( python3_{10..11} )
sci-geosciences/grass/grass-8.3.1.ebuild:PYTHON_COMPAT=( python3_{10..11} )

also double checking 
```
pkgcheck scan -k PythonCompatUpdate --debug sci-geosciences
```
returns
sci-geosciences/mapserver
  PythonCompatUpdate: version 8.0.1: PYTHON_COMPAT updates available: python3_12, python3_13
...
...
...
sci-geosciences/qgis
  PythonCompatUpdate: version 3.28.10: PYTHON_COMPAT update available: python3_12

but w/o the package in question: sci-geosciences/grass
Comment 1 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-05-09 08:37:30 UTC
Note that PythonCompatUpdate is only emitted when a package's deps are ready, by design.
Comment 2 Thomas Bettler 2024-05-09 09:15:50 UTC
thank you for this explanation...

so dev-python/wxpython-4.2.1 is the reason why results don't contain sci-geosciences/grass yet.