Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 894540 - dev-python/pygame-2.5.1 calls commands that do not exist: dpkg-architecture
Summary: dev-python/pygame-2.5.1 calls commands that do not exist: dpkg-architecture
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-02-15 09:22 UTC by Agostino Sarubbo
Modified: 2023-12-12 23:49 UTC (History)
2 users (show)

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


Attachments
build.log (build.log,390.14 KB, text/plain)
2023-02-15 09:22 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Agostino Sarubbo gentoo-dev 2023-02-15 09:22:36 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: dev-python/pygame-2.1.3 calls commands that do not exist.
Discovered on: amd64 (internal ref: ci)

NOTE:
Please look for 'command not found' and/or 'no such file or directory'.
Comment 1 Agostino Sarubbo gentoo-dev 2023-02-15 09:22:39 UTC
Created attachment 851204 [details]
build.log

build log and emerge --info
Comment 2 Agostino Sarubbo gentoo-dev 2023-02-28 08:36:24 UTC
ci has reproduced this issue with version 2.2.0 - Updating summary.
Comment 3 Agostino Sarubbo gentoo-dev 2023-04-24 07:18:40 UTC
ci has reproduced this issue with version 2.3.0 - Updating summary.
Comment 4 Agostino Sarubbo gentoo-dev 2023-05-01 08:44:03 UTC
ci has reproduced this issue with version 2.4.0 - Updating summary.
Comment 5 Agostino Sarubbo gentoo-dev 2023-06-26 06:49:37 UTC
ci has reproduced this issue with version 2.5.0 - Updating summary.
Comment 6 Agostino Sarubbo gentoo-dev 2023-07-18 14:43:53 UTC
ci has reproduced this issue with version 2.5.0-r1 - Updating summary.
Comment 7 Agostino Sarubbo gentoo-dev 2023-07-23 17:58:31 UTC
ci has reproduced this issue with version 2.5.0-r2 - Updating summary.
Comment 8 Agostino Sarubbo gentoo-dev 2023-08-14 15:22:06 UTC
ci has reproduced this issue with version 2.5.1 - Updating summary.
Comment 9 Eli Schwartz gentoo-dev 2023-12-12 23:49:01 UTC
This report is invalid. In buildconfig/config_unix.py:

```
# If we are on a debian based system, we also need to handle
# /lib/<multiarch-tuple>
# We have a few commands to get the correct <multiarch-tuple>, we try those
# one by one till we get something that works
for cmd in (
    "dpkg-architecture -qDEB_HOST_MULTIARCH",
    "gcc -print-multiarch",
    "gcc -dumpmachine",
):
    try:
        f = os.popen(cmd)
    except Exception:
        # We don't bother here, instead we try the next fallback
        continue
```

It is expected to be caught and do nothing on non-Debian.