upgpkg: aurutils 4.2-2

Merge subtree 'aurutils'
This commit is contained in:
Cedric Girard 2022-02-01 10:55:26 +01:00
commit a27e593922
Signed by: X-dark
GPG Key ID: E7D0E125DB9519E4
3 changed files with 63 additions and 7 deletions

View File

@ -1,7 +1,7 @@
pkgbase = aurutils
pkgdesc = helper tools for the arch user repository
pkgver = 4.1
pkgrel = 1
pkgver = 4.2
pkgrel = 2
url = https://github.com/AladW/aurutils
install = aurutils.install
changelog = aurutils.changelog
@ -16,7 +16,7 @@ pkgbase = aurutils
optdepends = zsh: zsh completion
optdepends = devtools: aur-chroot
optdepends = vifm: default pager
source = aurutils-4.1.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/4.1.tar.gz
sha256sums = 98a742b4f7650189c83d83ab46b29f36bcda9d35618054e07b80b5708a7a79e1
source = aurutils-4.2.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/4.2.tar.gz
sha256sums = 7f809672ebcd26787b74fb2b39b5e223ccda791776ae4a581d8379db184c9a0e
pkgname = aurutils

View File

@ -1,7 +1,7 @@
# Maintainer: Alad Wenter <https://github.com/AladW>
pkgname=aurutils
pkgver=4.1
pkgrel=1
pkgver=4.2
pkgrel=2
pkgdesc='helper tools for the arch user repository'
url='https://github.com/AladW/aurutils'
arch=('any')
@ -9,7 +9,7 @@ license=('custom:ISC')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
changelog=aurutils.changelog
install=aurutils.install
sha256sums=('32593e29ff0dbe5dbaeba88d95424b2d399335af789899f4042d609ab4d86415')
sha256sums=('7f809672ebcd26787b74fb2b39b5e223ccda791776ae4a581d8379db184c9a0e')
depends=('git' 'jq' 'pacutils' 'curl' 'expect')
optdepends=('bash-completion: bash completion'
'zsh: zsh completion'

View File

@ -1,3 +1,59 @@
## 4.2
* `aur-build`
+ support PACMAN_AUTH environment variable for custom elevation command
* `aur-repo`
+ improve error handling
+ remove extraneous `--` on `--path` output
## 4.1
* `aur-build`
+ handle absolute paths in `--arg-file`
* `aur-pkglist`
+ add `--users` (`-U`) to retrieve a list of AUR users
+ update aur-pkglist(1) man page
* `aur-repo`
+ fix formatting for `--table` and packages with no dependencies
## 4
* `aur-build`
+ add `--no-check` (`makepkg --nocheck`)
* `aur-search`
+ add `--table`
* `aur-fetch`
+ add compatibility options (`--recurse`)
* `aur-repo`
+ add compatibility options (`--path`, `--path-list`, `--repo-list`)
+ fix regression with `AUR_QUERY_PARALLEL`
* `aur-sync`
+ add `--no-check` (short for `--no-checkdepends`)
- implies `aur-build --no-check`
+ apply `--ignore` to local repository targets
+ `--ignore-file` now works with process substitution (#880)
+ remove `--no-depends`, `--no-makedepends`
## 3.3.0
`aur-query` and `aur-fetch` now take arguments from the command-line
by default. If `-` or `/dev/stdin` is the first (and only) arguments,
they are taken from `stdin` instead. In particular, `aur fetch --recurse`
is now written as `aur depends --pkgbase ... | aur fetch -`, and the
explicit `--recurse` option was removed.
The `-` argument propagates to `aur-depends` and `aur-search`
transparently. Additionally, `aur-sync` no longer calls `aur-depends`
and `aur-fetch` with `xargs`, avoiding the 123 exit code on failure of
these commands.
## 3.2.1
* `aur-query`