| Summary: | net-voip/telepathy-salut-0.8.1-r1 - No Python implementation found for the build. | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Dennis Schridde <dschridde+gentoobugs> |
| Component: | Current packages | Assignee: | Gentoo Linux Gnome Desktop Team <gnome> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | email200202, eugene.shalygin, gentoo-bugs, gentoo, mark+gentoobugs, saintdev, skunk, zeekec |
| Priority: | Normal | Keywords: | InVCS |
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Dennis Schridde
2017-08-21 09:07:24 UTC
Same here ... as well as for telepathy-haze by the way Same here for net-voip/telepathy-haze-0.8.0-r2 The problem is this shiz:
python_check_deps() {
use test \
&& { has_version "dev-python/twisted[${PYTHON_USEDEP}]" \
|| has_version "dev-python/twisted-words[${PYTHON_USEDEP}]"; }
}
if the test useflag is false, then use test returns false. At this point the conditional is short-circuited, and python_check_deps() is done, so it returns false. Which means _python_EPYTHON_supported decides it isn't, when, of course, it is.
this way looks nicer and isn't broken:
python_check_deps() {
use '!test' \
|| has_version "dev-python/twisted[${PYTHON_USEDEP}]" \
|| has_version "dev-python/twisted-words[${PYTHON_USEDEP}]"
}
commit 92cd1e59e3197f22618fb68be9efb0eb736e5960
Date: Fri Aug 25 00:04:29 2017 +0200
net-voip/telepathy-salut: fix python_check_deps, bug #628486
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Thanks for reporting.
|