RUA is a build tool for ArchLinux, AUR. Its features:
shellcheck
(taking care of special variables)ptrace
)sudo
)rua install xcalib
# installs or upgrades a package
rua search wesnoth
rua info freecad
rua upgrade
# (new) find outdated AUR packages and offer upgrade
rua shellcheck path/to/my/PKGBUILD
# run shellcheck
on a PKGBUILD, discovering potential problems with the build instruction. Takes care of PKGBUILD-specific variables.
rua tarcheck xcalib.pkg.tar
# if you already have a *.pkg.tar package built, run RUA checks on it (SUID, executable list, INSTALL script review etc).
rua builddir --offline /path/to/pkgbuild/directory
# build a directory. Don't fetch any dependencies. Assumes a clean directory.
rua --help && rua install --help
# shows CLI help
Jail arguments can be overridden in ~/.config/rua/wrap_args.d/ .
sh
sudo pacman -S --needed git base-devel bubblewrap-suid shellcheck cargo
sh
git clone https://aur.archlinux.org/rua.git
cd rua
makepkg -si
In the web interface, package is rua.
sh
cargo install rua
Does not include bash/zsh/fish completions, but everything else should work.
When a new AUR package is fetched by RUA for the first time, it is stored in ~/.config/rua/pkg/pkg_name
.
This is done via git, with an empty branch as your currently accepted state.
If you review upstream changes and accept them, upstream is merged into your local branch. RUA will only allow you building once you have upstream as your ancestor, making sure you merged it.
When you later install a new version of the package, RUA will fetch the new version and show you the diff since your last review.
RUA will:
If you have a dependency structure like this:
your_original_package
├── dependency_a
│ ├── a1
│ └── a2
└── dependency_b
├── b1
└── b2
RUA will thus interrupt you 3 times, not 7 as if it would be plainly recursive. It also won't disrupt you if it knows recursion breaks down the line (with unsatisfiable dependencies).
-Suy
your system with it. Use pacman for that.RUA only adds build-time safety and install-time control. Once/if packages pass your review, they are as run-time safe as they were in the first place. Do not install AUR packages you don't trust.
When building packages, RUA uses the following filesystem isolation by default:
~
is not visible to the build process, mounted under tmpfs./
is mounted read-only.The RUA name can be read as "RUst Aur jail", also an inversion of "AUR".
This work was made possible by the excellent libraries of libalpm, raur, srcinfo and many others.
IRC: #rua @freenode.net
Project is shared under GPLv3+. For authors, see Cargo.toml and git history.