Commits on Source (6)
-
Oliver Smith authored
Ruff 0.11.1 is incorrectly printing the following types of errors: pmb/helpers/logging.py:169:34: SyntaxError: Cannot use star annotation on Python 3.10 (syntax was added in Python 3.11) | 169 | def critical(msg: object, *args: str, **kwargs: Any) -> None: | ^^^ 170 | logging.critical(msg, *args, **kwargs) | But the code works fine in Python 3.10 (see pytest-python3.10 CI job). This is a known upstream bug, pin to the previous version until it is fixed. Related: https://github.com/astral-sh/ruff/issues/16874 Part-of: !2578
-
Part-of: !2574
-
Oliver Smith authored
Fix cross compiling where CPU emulation is not needed, for example building x86 packages on x86_64 machines. This is the case with both: * CrossCompile.UNNECESSARY * arch != Arch.native() Fix the logic in CrossCompile().build_chroot that returned the native chroot in that case instead of Chroot.buildroot(arch). Fix error: /usr/bin/abuild: line 2692: x86_64-alpine-linux-musl-strip: not found Part-of: !2577
-
Oliver Smith authored
Part-of: !2577
-
Oliver Smith authored
Splitting makedepends in _host and _build only makes a difference when building with cross-native2, as these packages end up in different chroots. For QEMU only and crossdirect we install all makedepends into the foreign chroot. For cross-native (v1) we install everything into the native chroot. Show the warning only for cross-native2 so people don't think they have to adjust their APKBUILDs here. Most of Alpine's APKBUILDs currently don't have this split either. Part-of: !2571
-
Part-of: !2575
Showing
- .ci/ruff.sh 3 additions, 1 deletion.ci/ruff.sh
- .gitlab-ci.yml 2 additions, 0 deletions.gitlab-ci.yml
- pmb/build/_package.py 1 addition, 1 deletionpmb/build/_package.py
- pmb/ci/__init__.py 10 additions, 6 deletionspmb/ci/__init__.py
- pmb/flasher/run.py 7 additions, 0 deletionspmb/flasher/run.py
- pmb/types.py 6 additions, 5 deletionspmb/types.py