Package Details: nuitka 4.1.3-1

Git Clone URL: https://aur.archlinux.org/nuitka.git (read-only, click to copy)
Package Base: nuitka
Description: Python compiler with full language support and CPython compatibility
Upstream URL: https://nuitka.net
Keywords: compiler python
Licenses: Apache-2.0
Submitter: jelly
Maintainer: txtsd
Last Packager: txtsd
Votes: 4
Popularity: 0.32
First Submitted: 2024-04-21 10:54 (UTC)
Last Updated: 2026-07-09 14:34 (UTC)

Latest Comments

1 2 3 4 Next › Last »

actionless commented on 2026-08-15 08:47 (UTC) (edited on 2026-08-15 08:49 (UTC) by actionless)

<s>btw PR#3938 is already merged upstream, so there is no need for applying the patch inside pkgbuild</s>

ignore my comment, i just noticed that whilst merge date (Jun19) is smaller than release date (Jun21), it's not included to the release

simona commented on 2026-08-15 08:36 (UTC) (edited on 2026-08-15 08:36 (UTC) by simona)

Comparing output of 'EncodingProblemTest.py' using '/usr/bin/python' with flags silent, expect_failure, remove_output, syntax_errors, --nofollow-imports ...
--- /usr/bin/python (stderr)
+++ nuitka (stderr)
@@ -1 +1 @@
-SyntaxError: 'ascii' codec can't decode byte 0xc3 in position 106: ordinal not in range(128)
+SyntaxError: encoding problem: ascii
Error, results differed (stderr).
Ran 7 test cases (1 failures).

txtsd commented on 2026-08-15 07:08 (UTC)

@TheGreatAndyChow --nocheck is the way to go when this happens.

The main reason tests are included is to ensure nuitka works out of the box on Arch, since upstream has promised first-class support for Arch.

If you could report this upstream, that would be great!

TheGreatAndyChow commented on 2026-08-15 03:02 (UTC)

Comparing output of 'EncodingProblemTest.py' using '/usr/bin/python' with flags silent, expect_failure, remove_output, syntax_errors, --nofollow-imports ... --- /usr/bin/python (stderr) +++ nuitka (stderr) @@ -1 +1 @@ -SyntaxError: 'ascii' codec can't decode byte 0xc3 in position 106: ordinal not in range(128) +SyntaxError: encoding problem: ascii Error, results differed (stderr). Ran 7 test cases (1 failures). FATAL: Error, tests ['EncodingProblemTest.py'] failed. ==> ERROR: A failure occurred in check(). Aborting... :: Unable to build nuitka - makepkg exited with code: 4

So I ran cd ~/.cache/trizen/sources/nuitka makepkg -si --nocheck and that worked (I use trizen as AUR installer, the main point is the "--nocheck" switch)

txtsd commented on 2026-06-21 10:30 (UTC)

@simona I'm able to build it without errors in a clean chroot.

txtsd commented on 2026-06-20 10:20 (UTC)

@taotieren Thank you I have included the patch in the latest version!

taotieren commented on 2026-06-17 16:03 (UTC) (edited on 2026-06-18 01:05 (UTC) by taotieren)

This PR can fix FATAL: Error, patchelf version 0.18.0 is a known buggy release and cannot be used. Please upgrade or downgrade it. issues. You can manually merge commits using git.

...
makedepends=(
  git
  python-build
  python-installer
  python-wheel
)
source=(${pkgname}::git+https://github.com/Nuitka/Nuitka.git#tag=${pkgver})

prepare() {
  cd ${pkgname}
  git cherry-pick -n 6f0ec8ea7fb08e0437744374977ca9190528c72f
}

build(){
  cd ${pkgname}
  python -m build --wheel --no-isolation
}
....

txtsd commented on 2026-05-23 07:40 (UTC) (edited on 2026-05-23 09:53 (UTC) by txtsd)

@Dominiquini This has been failing to build due to various reasons for the past several versions.

Current failure is reported upstream.

Current failure is our patchelf is too new: FATAL: Error, patchelf version 0.18.0 is a known buggy release and cannot be used. Please upgrade or downgrade it.

simona commented on 2026-02-16 10:40 (UTC)

solved