bump 0.8.4

This commit is contained in:
Alad Wenter 2016-05-02 09:45:44 +02:00
parent 30cb25f0d2
commit 5baf494029
2 changed files with 14 additions and 22 deletions

View file

@ -1,8 +1,8 @@
# Generated by mksrcinfo v8 # Generated by mksrcinfo v8
# Mon Apr 25 13:09:57 UTC 2016 # Mon May 2 07:45:44 UTC 2016
pkgbase = aurutils pkgbase = aurutils
pkgdesc = helper tools for the arch user repository pkgdesc = helper tools for the arch user repository
pkgver = 0.8.3 pkgver = 0.8.4
pkgrel = 1 pkgrel = 1
url = https://github.com/AladW/aurutils url = https://github.com/AladW/aurutils
arch = any arch = any
@ -11,16 +11,13 @@ pkgbase = aurutils
makedepends = git makedepends = git
depends = pacman>=5.0 depends = pacman>=5.0
depends = git depends = git
depends = repose
depends = jshon depends = jshon
depends = pacutils
depends = expac depends = expac
depends = aria2 depends = aria2>=1.23.0
depends = datamash optdepends = devtools: build in an nspawn container
optdepends = devtools: aurbuild -c
optdepends = vifm: improved build file interaction optdepends = vifm: improved build file interaction
source = https://github.com/AladW/aurutils/archive/0.8.3.tar.gz source = https://github.com/AladW/aurutils/archive/0.8.4.tar.gz
md5sums = fd112110e905afde4c8105fe72f27348 md5sums = e1d0033cc330e1901710c7970823a9f2
pkgname = aurutils pkgname = aurutils

View file

@ -1,30 +1,25 @@
pkgname=aurutils pkgname=aurutils
pkgver=0.8.3 pkgver=0.8.4
pkgrel=1 pkgrel=1
pkgdesc='helper tools for the arch user repository' pkgdesc='helper tools for the arch user repository'
arch=('any') arch=('any')
url=https://github.com/AladW/aurutils url=https://github.com/AladW/aurutils
license=('ISC') license=('ISC')
source=("https://github.com/AladW/aurutils/archive/$pkgver.tar.gz") source=("$url/archive/$pkgver.tar.gz")
md5sums=('fd112110e905afde4c8105fe72f27348') md5sums=('e1d0033cc330e1901710c7970823a9f2')
depends=('pacman>=5.0' 'git' 'repose' 'jshon' 'pacutils' 'expac' 'aria2' 'datamash') depends=('pacman>=5.0' 'git' 'jshon' 'expac' 'aria2>=1.23.0')
'repose' 'pacutils' 'datamash'
checkdepends=('shellcheck') checkdepends=('shellcheck')
makedepends=('git') makedepends=('git')
optdepends=('devtools: aurbuild -c' optdepends=('devtools: build in an nspawn container'
'vifm: improved build file interaction') 'vifm: improved build file interaction')
check() { check() {
cd "$pkgname-$pkgver" cd "$pkgname-$pkgver"
LANG=C shellcheck -e 2016 -x bin/* make check
} }
package() { package() {
cd "$pkgname-$pkgver" cd "$pkgname-$pkgver"
install -d "$pkgdir"/usr/{bin,share{/man/man1,{/licenses,/doc}/aurutils}} make DESTDIR="$pkgdir/" install
install -m755 bin/* "$pkgdir"/usr/bin/
install -m644 LICENSE "$pkgdir"/usr/share/licenses/aurutils/
install -m644 CREDITS README "$pkgdir"/usr/share/doc/aurutils/
install -m644 doc/* "$pkgdir"/usr/share/man/man1/
} }