RUA Build Status crates.io

RUA is a build tool for ArchLinux, AUR. Its features:

Use

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/ .

Install dependencies

sh sudo pacman -S --needed git base-devel bubblewrap-suid shellcheck cargo

Install (the AUR way)

sh git clone https://aur.archlinux.org/rua.git cd rua makepkg -si In the web interface, package is rua.

Install (the Rust way)

sh cargo install rua

Does not include bash/zsh/fish completions, but everything else should work.

How it works / reviewing

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.

How it works / dependency grouping and installation

RUA will:

  1. Fetch the AUR package and all recursive dependencies.
  2. Prepare a summary of all pacman and AUR packages that will need installing. Show the summary to the user, confirm proceeding.
  3. Iterate over all AUR dependencies and ask to review the repo-s. Once we know that user really accepts all recursive changes, proceed.
  4. Propose installing all pacman dependencies.
  5. Build all AUR packages of maximum dependency "depth".
  6. Let the user review built artifacts (in batch).
  7. Install them. If any more packages are left, go two steps up.

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).

Limitations

Safety

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:

Other

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.