aurutils: 9.2

This commit is contained in:
Alad Wenter 2022-04-05 15:32:42 +02:00
parent fcebb84410
commit c65beaa33f
3 changed files with 37 additions and 5 deletions

View File

@ -1,6 +1,6 @@
pkgbase = aurutils
pkgdesc = helper tools for the arch user repository
pkgver = 9
pkgver = 9.2
pkgrel = 1
url = https://github.com/AladW/aurutils
install = aurutils.install
@ -17,7 +17,7 @@ pkgbase = aurutils
optdepends = devtools: aur-chroot
optdepends = vifm: default pager
optdepends = ninja: aur-sync ninja support
source = aurutils-9.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/9.tar.gz
sha256sums = 87529b220c0a1a61b5e3f1eeee334fc91948846e932eba09e4f5a07ebf83b8db
source = aurutils-9.2.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/9.2.tar.gz
sha256sums = 5944110ca98411ab0be5fdbbde0237b6ac646dce4e8bf3847d172b92d00cd69b
pkgname = aurutils

View File

@ -1,7 +1,7 @@
# Maintainer: Alad Wenter <https://github.com/AladW>
# Co-Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
pkgname=aurutils
pkgver=9
pkgver=9.2
pkgrel=1
pkgdesc='helper tools for the arch user repository'
url='https://github.com/AladW/aurutils'
@ -10,7 +10,7 @@ license=('custom:ISC')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
changelog=aurutils.changelog
install=aurutils.install
sha256sums=('87529b220c0a1a61b5e3f1eeee334fc91948846e932eba09e4f5a07ebf83b8db')
sha256sums=('5944110ca98411ab0be5fdbbde0237b6ac646dce4e8bf3847d172b92d00cd69b')
depends=('git' 'jq' 'pacutils' 'curl' 'expect')
optdepends=('bash-completion: bash completion'
'zsh: zsh completion'

View File

@ -1,3 +1,35 @@
## 9.2
* `aur-build`
+ deprecate `--results`
+ retrieve repository before setting `--chroot` paths
+ unset `PKGEXT` when using `--chroot`
* `aur-search`
+ use OSC8 terminal hyperlinks (#849)
## 9.1
`aur-build` now uses `setpriv(1)` to run unprivileged commands (`makepkg`, `gpg`,
`repo-add`) when `AUR_ASROOT` is combined with `--user`. This change has no
effect when running `aur-build` as a regular user.
Usage:
$ sudo env AUR_ASROOT=1 aur build --chroot --user <build_user> ...
The above works with `--chroot` (`makechrootpkg -U`). Environment variables in
the root environment are preserved for user commands, similar to `runuser -c`.
Host builds using `makepkg --syncdeps` to install dependencies require further
configuration.
┌──────────────────────────────────────────────────────────────────────────────┐
│ WARNING! │
│ │
│ Running `aur-build` as root is experimental and disabled by default. If your │
│ install breaks, you get to keep both pieces. │
└──────────────────────────────────────────────────────────────────────────────┘
## 9
* `examples`