upgpkg: aurutils 2.3.7-1
This commit is contained in:
parent
b7bc680b60
commit
8ccf817c1d
2 changed files with 24 additions and 14 deletions
11
.SRCINFO
11
.SRCINFO
|
@ -1,11 +1,12 @@
|
||||||
pkgbase = aurutils
|
pkgbase = aurutils
|
||||||
pkgdesc = helper tools for the arch user repository
|
pkgdesc = helper tools for the arch user repository
|
||||||
pkgver = 2.3.6b
|
pkgver = 2.3.7
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/AladW/aurutils
|
url = https://github.com/AladW/aurutils
|
||||||
install = aurutils.install
|
|
||||||
arch = any
|
arch = any
|
||||||
license = custom:ISC
|
license = custom:ISC
|
||||||
|
makedepends = git
|
||||||
|
makedepends = signify
|
||||||
depends = git
|
depends = git
|
||||||
depends = jq
|
depends = jq
|
||||||
depends = expac
|
depends = expac
|
||||||
|
@ -15,8 +16,10 @@ pkgbase = aurutils
|
||||||
optdepends = bash-completion: bash completion
|
optdepends = bash-completion: bash completion
|
||||||
optdepends = devtools: aur-chroot
|
optdepends = devtools: aur-chroot
|
||||||
optdepends = vifm: build file interaction
|
optdepends = vifm: build file interaction
|
||||||
source = aurutils-2.3.6b.tar.gz::https://github.com/AladW/aurutils/archive/2.3.6b.tar.gz
|
source = aurutils-2.3.7.tar.gz::https://github.com/AladW/aurutils/archive/2.3.7.tar.gz
|
||||||
sha256sums = 22b12a7161635622f86cb4c4dd28c79ae9e6c23e60f3ef7985d107879c64d004
|
source = aurutils-2.3.7.tar.gz.signify::https://github.com/AladW/aurutils/releases/download/2.3.7/2.3.7.tar.gz.sig
|
||||||
|
sha256sums = bae2f7211cb80626f260e1ebcb2c061751407a03f1ab8898bc80182888502bef
|
||||||
|
sha256sums = SKIP
|
||||||
|
|
||||||
pkgname = aurutils
|
pkgname = aurutils
|
||||||
|
|
||||||
|
|
27
PKGBUILD
27
PKGBUILD
|
@ -1,23 +1,30 @@
|
||||||
# Maintainer: Alad Wenter <alad@archlinux.org>
|
# Maintainer: Alad Wenter <https://github.com/AladW>
|
||||||
# Co-Maintainer: Cedric Girard <cgirard.archlinux@valinor.fr>
|
|
||||||
# Co-Maintainer: Maxim Baz <archlinux@maximbaz.com>
|
|
||||||
pkgname=aurutils
|
pkgname=aurutils
|
||||||
pkgver=2.3.6b
|
pkgver=2.3.7
|
||||||
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'
|
||||||
arch=('any')
|
arch=('any')
|
||||||
license=('custom:ISC')
|
license=('custom:ISC')
|
||||||
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
|
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
|
||||||
# "$pkgname-$pkgver.tar.gz.asc::$url/releases/download/$pkgver/$pkgver.tar.gz.asc")
|
"$pkgname-$pkgver.tar.gz.signify::$url/releases/download/$pkgver/$pkgver.tar.gz.sig")
|
||||||
install=$pkgname.install
|
|
||||||
depends=('git' 'jq' 'expac' 'diffstat' 'pacutils' 'wget')
|
depends=('git' 'jq' 'expac' 'diffstat' 'pacutils' 'wget')
|
||||||
|
makedepends=('git' 'signify')
|
||||||
optdepends=('bash-completion: bash completion'
|
optdepends=('bash-completion: bash completion'
|
||||||
'devtools: aur-chroot'
|
'devtools: aur-chroot'
|
||||||
'vifm: build file interaction')
|
'vifm: build file interaction')
|
||||||
sha256sums=('22b12a7161635622f86cb4c4dd28c79ae9e6c23e60f3ef7985d107879c64d004')
|
sha256sums=('bae2f7211cb80626f260e1ebcb2c061751407a03f1ab8898bc80182888502bef'
|
||||||
# 'SKIP')
|
'SKIP')
|
||||||
# validpgpkeys=('DBE7D3DD8C81D58D0A13D0E76BC26A17B9B7018A') # Alad Wenter <alad@archlinux.org>
|
_validsignifykey='RWQawitEue1JU2SxUyRD8LXP8m36QsbaHOkKfvZBfhj00EXBYiDZilp0'
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cat >aurutils.pub <<EOF
|
||||||
|
untrusted comment: signify public key
|
||||||
|
$_validsignifykey
|
||||||
|
EOF
|
||||||
|
signify -V -p aurutils.pub -m "$pkgname-$pkgver".tar.gz \
|
||||||
|
-x "$pkgname-$pkgver".tar.gz.signify
|
||||||
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$pkgname-$pkgver"
|
cd "$pkgname-$pkgver"
|
||||||
|
|
Loading…
Reference in a new issue