From c252e6e36cabad193a0fa6e54342508187c65842 Mon Sep 17 00:00:00 2001 From: Alad Wenter Date: Tue, 19 Apr 2016 15:31:48 +0200 Subject: [PATCH] bump 0.7.0 --- .SRCINFO | 8 ++++---- PKGBUILD | 11 ++++++----- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2b7b383..21e7fc7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Sun Apr 17 12:22:14 UTC 2016 +# Tue Apr 19 13:31:18 UTC 2016 pkgbase = aurutils pkgdesc = helper tools for the arch user repository - pkgver = 0.6.3 + pkgver = 0.7.0 pkgrel = 1 url = https://github.com/AladW/aurutils arch = any @@ -19,8 +19,8 @@ pkgbase = aurutils depends = datamash optdepends = devtools: aurbuild -c optdepends = vifm: improved build file interaction - source = https://github.com/AladW/aurutils/archive/0.6.3.tar.gz - md5sums = 90ae56d2739c8957901b062c4b84e6ed + source = https://github.com/AladW/aurutils/archive/0.7.0.tar.gz + md5sums = f24bbdce508e99a80d7608aabcb51122 pkgname = aurutils diff --git a/PKGBUILD b/PKGBUILD index c69e0d6..14e0a86 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,12 +1,12 @@ pkgname=aurutils -pkgver=0.6.3 +pkgver=0.7.0 pkgrel=1 pkgdesc='helper tools for the arch user repository' arch=('any') url=https://github.com/AladW/aurutils license=('ISC') source=("https://github.com/AladW/aurutils/archive/$pkgver.tar.gz") -md5sums=('90ae56d2739c8957901b062c4b84e6ed') +md5sums=('f24bbdce508e99a80d7608aabcb51122') depends=('pacman>=5.0' 'git' 'repose' 'jshon' 'pacutils' 'expac' 'aria2' 'datamash') checkdepends=('shellcheck') makedepends=('git') @@ -15,15 +15,16 @@ optdepends=('devtools: aurbuild -c' check() { cd "$pkgname-$pkgver" - shellcheck -e 2016 -x bin/* + LANG=C shellcheck -e 2016 -x bin/* } package() { cd "$pkgname-$pkgver" - install -d "$pkgdir"/usr/{bin,share{/licenses,/doc}/aurutils} + install -d "$pkgdir"/usr/{bin,share{/man/man1,{/licenses,/doc}/aurutils}} install -m755 bin/* "$pkgdir"/usr/bin/ install -m644 LICENSE "$pkgdir"/usr/share/licenses/aurutils/ - install -m644 README.org CREDITS doc/* "$pkgdir"/usr/share/doc/aurutils/ + install -m644 CREDITS README "$pkgdir"/usr/share/doc/aurutils/ + install -m644 doc/* "$pkgdir"/usr/share/man/man1/ }