Date: Friday, September 4, 2020 @ 00:04:20 Author: anatolik Revision: 697809
upgpkg: shards 0.12.0-1 Modified: shards/trunk/PKGBUILD ----------+ PKGBUILD | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-09-04 00:04:12 UTC (rev 697808) +++ PKGBUILD 2020-09-04 00:04:20 UTC (rev 697809) @@ -2,7 +2,7 @@ # Contributor: Jonne Haß <[email protected]> pkgname=shards -pkgver=0.11.1 +pkgver=0.12.0 pkgrel=1 pkgdesc='The package manager for the Crystal language' arch=(x86_64) @@ -12,7 +12,7 @@ makedepends=(crystal) checkdepends=(git) source=(shards-$pkgver.tar.gz::https://github.com/crystal-lang/shards/archive/v$pkgver.tar.gz) -sha256sums=('e78095867334b4058f860c6da8dc3892994769ef51795de74ffb708a66c6847d') +sha256sums=('f6803ffb58b9dd5e78c3c3ec273941c0f6278d75427937aeb77e37244cd5cad9') build() { cd shards-$pkgver @@ -21,8 +21,13 @@ check() { cd shards-$pkgver - # tests are currently failing. TODO: fix it - # make test -j1 # https://github.com/crystal-lang/shards/issues/347 + + # remove git config settings once https://github.com/crystal-lang/shards/issues/430 is fixed + git config --global user.email "[email protected]" + git config --global user.name "Your Name" + git config --global column.ui always + + make test -j1 # -j1 is due to this bug https://github.com/crystal-lang/shards/issues/347 } package() {
