Date: Saturday, March 11, 2023 @ 12:38:37 Author: alerque Revision: 1418686
upgpkg: nushell 0.76.0-1 Modified: nushell/trunk/PKGBUILD ----------+ PKGBUILD | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-03-11 12:21:18 UTC (rev 1418685) +++ PKGBUILD 2023-03-11 12:38:37 UTC (rev 1418686) @@ -1,27 +1,30 @@ # Maintainer: George Rawlinson <[email protected]> # Maintainer: Caleb Maclennan <[email protected]> -# Contributor: KokaKiwi <[email protected]> +# Contributor: KokaKiwi <[email protected]> # Contributor: Felix Golatofski <[email protected]> # Contributor: Bumsik Kim <[email protected]> +# Upstream tests have multiple issues including race conditions, using external +# binaries, differing results based on unrelated system directories, etc. +# See https://github.com/nushell/nushell/issues/7951 +# See https://github.com/nushell/nushell/issues/8404 +BUILDENV+=(!check) + pkgname=nushell -pkgver=0.74.0 +pkgver=0.76.0 +_commit='bc38a6a795f438ab1465dd987adf92efd9530529' pkgrel=1 pkgdesc='A new type of shell' arch=('x86_64') url='https://www.nushell.sh' license=('MIT') -depends=('openssl' 'libxcb' 'libx11' 'curl' 'bzip2') -makedepends=('git' 'rust') +depends=('openssl' 'libxcb' 'curl' 'bzip2') +makedepends=('git' 'cargo') options=('!lto') install=nushell.install -_commit='9a56665c6beee31e365ce17898056f1ff2db4094' source=("$pkgname::git+https://github.com/nushell/nushell.git#commit=$_commit") b2sums=('SKIP') -# NOTE: as of 0.40.0, upstream uses upx to reduce binary size, but this strips -# RELRO + PIE, so we do not enable this - pkgver() { cd "$pkgname"
