aurutils: 8
This commit is contained in:
parent
5394b42c1f
commit
864f958d38
3 changed files with 44 additions and 5 deletions
6
.SRCINFO
6
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = aurutils
|
pkgbase = aurutils
|
||||||
pkgdesc = helper tools for the arch user repository
|
pkgdesc = helper tools for the arch user repository
|
||||||
pkgver = 7.2
|
pkgver = 8
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/AladW/aurutils
|
url = https://github.com/AladW/aurutils
|
||||||
install = aurutils.install
|
install = aurutils.install
|
||||||
|
@ -17,7 +17,7 @@ pkgbase = aurutils
|
||||||
optdepends = devtools: aur-chroot
|
optdepends = devtools: aur-chroot
|
||||||
optdepends = vifm: default pager
|
optdepends = vifm: default pager
|
||||||
optdepends = ninja: aur-sync ninja support
|
optdepends = ninja: aur-sync ninja support
|
||||||
source = aurutils-7.2.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/7.2.tar.gz
|
source = aurutils-8.tar.gz::https://github.com/AladW/aurutils/archive/refs/tags/8.tar.gz
|
||||||
sha256sums = f7968625c4cf39592c40beebc64fd8c6295a9ad8f3edcdfda67d8d4fed16cb63
|
sha256sums = 56ae3a79147b7663b31b6e3a6791717398915bfffdb23f4af907d4472f5bfca7
|
||||||
|
|
||||||
pkgname = aurutils
|
pkgname = aurutils
|
||||||
|
|
4
PKGBUILD
4
PKGBUILD
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Alad Wenter <https://github.com/AladW>
|
# Maintainer: Alad Wenter <https://github.com/AladW>
|
||||||
# Co-Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
|
# Co-Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
|
||||||
pkgname=aurutils
|
pkgname=aurutils
|
||||||
pkgver=7.2
|
pkgver=8
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='helper tools for the arch user repository'
|
pkgdesc='helper tools for the arch user repository'
|
||||||
url='https://github.com/AladW/aurutils'
|
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")
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
|
||||||
changelog=aurutils.changelog
|
changelog=aurutils.changelog
|
||||||
install=aurutils.install
|
install=aurutils.install
|
||||||
sha256sums=('f7968625c4cf39592c40beebc64fd8c6295a9ad8f3edcdfda67d8d4fed16cb63')
|
sha256sums=('56ae3a79147b7663b31b6e3a6791717398915bfffdb23f4af907d4472f5bfca7')
|
||||||
depends=('git' 'jq' 'pacutils' 'curl' 'expect')
|
depends=('git' 'jq' 'pacutils' 'curl' 'expect')
|
||||||
optdepends=('bash-completion: bash completion'
|
optdepends=('bash-completion: bash completion'
|
||||||
'zsh: zsh completion'
|
'zsh: zsh completion'
|
||||||
|
|
|
@ -1,3 +1,42 @@
|
||||||
|
## 8
|
||||||
|
|
||||||
|
* `aur-chroot`
|
||||||
|
|
||||||
|
The `aur-chroot` command-line was changed so that `--create`, `--build` and
|
||||||
|
`--update` can be used in a single command. Command-line arguments are now
|
||||||
|
exclusively used for packages passed to `mkarchroot` and `arch-nspawn`.
|
||||||
|
To set `makechrootpkg` options, the new `--margs` and `--cargs` options are
|
||||||
|
available. As `aur-build --margs`, these take a comma-delimited string and
|
||||||
|
can be specified multiple times. (Issues: #950, #807)
|
||||||
|
|
||||||
|
The `--packagelist` command is now deprecated. The container path can be
|
||||||
|
retrieved with the `--path` option, e.g for use with `makepkg --config`.
|
||||||
|
|
||||||
|
* `aur-build`
|
||||||
|
+ Consider all repositories (`Usage = Install`) for local repository upgrade (#956)
|
||||||
|
|
||||||
|
* `aur-srcver`
|
||||||
|
+ add `--buildscript`
|
||||||
|
+ deprecate `-E` / `--env`
|
||||||
|
- `get_full_version` from `libmakepkg` is now used after running `makepkg`
|
||||||
|
+ take arguments from `stdin` if `-` is specified
|
||||||
|
|
||||||
|
* `aurvcs.7`
|
||||||
|
+ run `aur-fetch` and `aur-view` before `aur-srcver`
|
||||||
|
+ sample code remaned to `aur-sync-devel`
|
||||||
|
|
||||||
|
## 7.2
|
||||||
|
|
||||||
|
* `aur-search`
|
||||||
|
+ add `OptDepends` to `--info` output (#945)
|
||||||
|
+ handle empty keywords in `--info` output (#946)
|
||||||
|
|
||||||
|
* `aur-depends`
|
||||||
|
+ add `--optdepends` (#945)
|
||||||
|
|
||||||
|
* `aur-sync`
|
||||||
|
+ add `--optdepends` (#945)
|
||||||
|
|
||||||
## 7.1
|
## 7.1
|
||||||
|
|
||||||
* `aur-build`
|
* `aur-build`
|
||||||
|
|
Loading…
Reference in a new issue