RUA Build Status crates.io

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

Planned features include AUR upstream git diff and local patch application.

Use

rua install xcalib # install AUR package (with user confirmation)

rua install --offline xcalib # same as above, but PKGBUILD is run without internet access. Sources are downloaded using .SRCINFO only.

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

There won't be bash/zsh/fish completions this way, but everything else should work.

How it works

We'll consider the "install" command as it's the most advanced one. RUA will:

  1. Fetch the AUR package (via git)
  2. Check .SRCINFO for other AUR dependencies, repeat the process for them
  3. Once all dependencies are fetched, show user the summary of all pacman packages to install, AUR packages to build and install.
  4. Ask user to install pacman dependencies (in batch for all recursive dependencies)
  5. Let the user review all packages, including their PKGBUILDs.
  6. Build all AUR packages of maximum dependency "depth"
  7. Let the user review and install them (in batch)
  8. The lowest (dependency-wise) packages are now installed. Go two steps up.
  9. Exit when all packages are installed.

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

IRC: #rua @freenode.net (no promises are made for availability)

Project is shared under GPLv3+.