Search Criteria
Package Details: rustpython 0.4.0+44-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/rustpython.git (read-only, click to copy) |
---|---|
Package Base: | rustpython |
Description: | A Python Interpreter written in Rust |
Upstream URL: | https://github.com/RustPython/RustPython |
Licenses: | MIT |
Submitter: | ramenu |
Maintainer: | wykwit |
Last Packager: | wykwit |
Votes: | 1 |
Popularity: | 0.039256 |
First Submitted: | 2024-02-07 18:17 (UTC) |
Last Updated: | 2025-08-29 14:52 (UTC) |
Dependencies (6)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc-libs-snapshotAUR)
- glibc (glibc-gitAUR, glibc-eacAUR)
- libffi (libffi-gitAUR)
- openssl (openssl-gitAUR, openssl-staticAUR)
- xz (xz-gitAUR)
- cargo (rust-nightly-binAUR, rust-gitAUR, rust-beta-binAUR, rustup-gitAUR, rust, rustup) (make)
Latest Comments
wykwit commented on 2025-08-29 14:56 (UTC)
Hey, @vitaliikuzhdin - thank you for a really good report. I've applied your suggestions. The PKGBUILD you pasted compiles after patching over TextIOWrapper from RustPython, see: https://github.com/RustPython/RustPython/issues/4072
vitaliikuzhdin commented on 2025-08-28 17:56 (UTC)
Also, leaving this here for someone to pick up once it finally works: https://pastebin.com/Va7WFRxw
vitaliikuzhdin commented on 2025-08-28 17:52 (UTC) (edited on 2025-08-28 17:53 (UTC) by vitaliikuzhdin)
Please remove
provides
andconflicts
; every package implicitly provides itself. Also,rust
should not be inmakedepends
, sincecargo
is already included.On a side note, do you know if byte-compiling the built-in
*.py
files is necessary? The original python package does it, and without it,rustpython
encounters quite a few (non-critical?) errors:I was able to mitigate these errors by locally modifying the
PKGBUILD
to byte-compile the$_rustpythonpath
.