Skip to content

Releases: fosskers/aura

4.0.8

29 Sep 07:59
446c12e
Compare
Choose a tag to compare

Added

  • Support for all compression formats listed in makepkg.conf.

Fixed

  • Removed the check for sudo as it is causing more problems than it sought to fix.
  • A humourous oversight involving simultaneous usage of -Aa and --asdeps.

4.0.7

14 Sep 22:55
cdebca1
Compare
Choose a tag to compare

Pacman 7 has been released. See here for more information.

To upgrade Aura, you will need to do an -Syu first to get the new version of alpm, after which Aura will temporarily break. Follow the manual building instructions found in the README to get around this.

Fixed

  • Account for the new version of Pacman and alpm.

4.0.6

14 Sep 07:00
a9ecf5b
Compare
Choose a tag to compare

Added

  • Bengali translations thanks to Saif Shahriar. ধন্যবাদ!
  • -Cc: A new -u switch that causes only uninstalled packages to be checked and deleted.

Fixed

  • Usage of sudo now results in an error.

4.0.5

08 Sep 06:51
f950d5c
Compare
Choose a tag to compare

Changed

  • Language options have been hidden from the output of --help. They can
    otherwise be viewed in the manpage.

Fixed

  • Avoid printing error messages related to Pacman in certain scenarios.

4.0.4

24 Aug 02:13
15eca46
Compare
Choose a tag to compare

Changed

  • Installation attempts will now pause if a Pacman database lockfile is detected
    (usually found at /var/lib/pacman/db.lck). Aura will repeatedly sleep and
    reattempt for up to 1 minute before failing; this is to prevent an infinite
    loop in scripts.

Fixed

  • Restore support for -Qtt.

4.0.3

15 Aug 21:20
3aae462
Compare
Choose a tag to compare

Fixed

  • -Au: Extra -debug packages will not be taken into account when determining packages that need upgrades.
  • -Auk: don't display a diff (or even ask to) if the hash didn't change. Useful with --git.
  • -A: a bug involving incorrect build order which would occasionally lead to top-level packages being marked as dependencies and subsequently being removed via the effects of -a.
  • -A: tarballs built without compression (i.e. that end in pkg.tar) will be properly detected.

4.0.2

09 Aug 22:37
Compare
Choose a tag to compare

Changed

  • The noconfirm configuration option has been moved from the [aur] section to [general] in a backward-compatible way.

Fixed

  • Zsh completions of -S.
  • check: confirm that dot is on the system. If missing, it belongs to the graphviz package.
  • --noconfirm now affects all prompts.
  • -Sw no longer requires arguments. This reenables -Syuw.
  • -Bl and -Cl now print paths in alphabetical order.

4.0.1

05 Aug 11:42
Compare
Choose a tag to compare

Added

  • -A:
    • -s --reverse can be turned on permanently in config.
    • --asdeps reinstated.
  • New [aur] configuration option warn_unknowns. If false, warning messages
    regarding "unknown packages" detected during an upgrade will be silenced.
  • check: a check for any broken package clones (empty directories).

Fixed

  • -As: search terms are split to improve robustness of search results.
  • -Au: A version comparison inconsistency involving -git packages.
  • Auto-generate the ~/.config/aura/ directory if it doesn't exist.
  • Consider all possible locations of makepkg.conf.

4.0.0

30 Jul 20:56
Compare
Choose a tag to compare

Aura is a package manager for Arch Linux.

Aura 4 represents a signicant body of work to port Aura from Haskell to Rust. The motivations for this rewrite are discussed here. Overall, Aura is now much more performant and has a 4x smaller binary.

The main aura package, not aura-bin, is now the recommended means of installation.

It is no longer necessary to run aura with sudo. Aura is now internally aware of when sudo is necessary and will prompt you as needed.

Aura's configuration format has also changed and it is much more customisable in general. You can generate a new config file via:

aura conf --gen > ~/.config/aura/config.toml

Aura now builds as the local user in a local directory, which solves prior woes involving environment variables and the sudo-barrier. However, aura -A can now also be invoked by the root user, in which case just the actual invocation of makepkg will be done as the nobody user. This allows Aura to be more easily used on remote servers and within Docker containers.

For existing users, further details involving the transition from v3 to v4 are available in the Migration Guide.

Added

  • -A:
    • -o to open a foreign package's AUR page.
    • -v to look up packages by "provides" (package identities).
    • --shellcheck to scan PKGBUILDs before building.
    • --limit and --reverse as additional filters on -As.
    • Support for building in a chroot via pkgctl build if enabled in config.
  • -C:
    • -l to print the contents of the package cache. Useful to pipe to other shell commands.
    • -i to display data of a package's cache entries.
    • -m to display all installed packages that are missing tarballs in the cache.
    • -n to delete tarballs of packages not present in any snapshot.
    • -t to remove invalid package tarballs from the cache.
    • -y to download missing tarballs for installed packages.
  • -Oe to display explicitly installed, top-level (i.e. unrequired) packages.
    Useful for detecting packages that you no longer need installed.
  • check for confirming the overall health of your system.
  • conf for generating and viewing various configuration files.
  • deps command for analyzing dependency connections.
aura deps gcc --reverse --optional --open

This produces the following image:

  • free to view information regarding software licenses of installed packages.
  • stats for viewing various data about your system:
    • --groups (-g): All installed package groups.
    • --heavy: The Top 10 packages with the biggest installation footprint.
    • --lang (-l): Available localizations and how complete they are.
  • thanks to view information about the people behind Aura.
  • General support for doas across various commands.
  • A proper offline info manual available via info aura.

Changed

  • Breaking: The top-level command --viewconf is now called conf.
  • Breaking: The top-level command --languages is now invoked by stats -l
    and also shows localization coverage for each language.
  • Breaking: -L now prints to stdout.
  • Breaking: -Bc no longer accepts an integer argument and instead clears
    all stale snapshots. "Stale" means that one or more packages in the snapshot
    is missing a tarball in the package cache.
  • -A:
    • Breaking: The long form of -Aw has been changed from --downloadonly to
      --clone.
    • Breaking: -d used to stand for --deps but is now the shorthand for
      --dryrun. Dependency analysis can be done with the new top-level deps
      command.
    • Breaking: --ignore is now accepted multiple times with a single package
      argument, as opposed to the previous --ignore=foo,bar,baz.
    • -Ak now prompts you to continue after PKGBUILD diffs have been printed.
    • The performance of -As has been greatly improved.
    • -Ax now does nothing - build output is unsuppressed by default.
    • --devel has been renamed to --git, although the old name secretly still works.

Removed

  • -P in its entirety.
  • -As --head and -As --tail have been removed in favour of --limit.
  • --ignorearch

4.0.0-rc3

23 Jul 05:44
Compare
Choose a tag to compare

Fixed

  • conf: a bug involving --gen related to recent improvements.