Date: Friday, December 6, 2013 @ 18:28:44 Author: dan Revision: 201249
upgpkg: git 1.8.5.1-1 And add a shitty hack to the PKGBUILD to get check() to work, which is now breaking when run with multiple threads. Not sure of the root cause here... Modified: git/trunk/PKGBUILD ----------+ PKGBUILD | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-12-06 16:39:21 UTC (rev 201248) +++ PKGBUILD 2013-12-06 17:28:44 UTC (rev 201249) @@ -2,7 +2,7 @@ # Maintainer: Dan McGee <[email protected]> pkgname=git -pkgver=1.8.4.2 +pkgver=1.8.5.1 pkgrel=1 pkgdesc="the fast distributed version control system" arch=(i686 x86_64) @@ -46,6 +46,8 @@ cd "$srcdir/$pkgname-$pkgver" local jobs jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*') + # build failures with multiple jobs in check, not ideal... + jobs='-j1' mkdir -p /dev/shm/git-test # We used to use this, but silly git regressions: #GIT_TEST_OPTS="--root=/dev/shm/" \ @@ -111,7 +113,7 @@ install -D -m 644 "$srcdir"/git-daemon.socket "$pkgdir"/usr/lib/systemd/system/git-daemon.socket } -md5sums=('6f63d103465b86ca0ebe4189ea54731c' - '2b4719ec820d845134b689247abe65e8' +md5sums=('7b9d622c98482aeb4532500231626210' + '4d6a83339753f5a9a2dd8aed4b7180bc' '042524f942785772d7bd52a1f02fe5ae' 'f67869315c2cc112e076f0c73f248002')
