Date: Tuesday, September 24, 2019 @ 08:37:37 Author: arodseth Revision: 511622
upgpkg: plan9port 20190923-1 Modified: plan9port/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-09-24 08:20:20 UTC (rev 511621) +++ PKGBUILD 2019-09-24 08:37:37 UTC (rev 511622) @@ -4,19 +4,19 @@ # Contributor: Chris Brannon <[email protected]> pkgname=plan9port -pkgver=20190619 +pkgver=20190923 pkgrel=1 pkgdesc='Ports of applications from Plan 9' -arch=('x86_64') +arch=(x86_64) url='https://swtch.com/plan9port/' license=(custom) -depends=(fuse2 libxext libxt xorg-server) -makedepends=(gendesk fontconfig git) +depends=(fontconfig fuse2 libxt xorg-server) +makedepends=(gendesk git) optdepends=('python2: for the codereview script') provides=(plan9) install=plan9.install options=(staticlibs !zipman) -source=("git+https://github.com/9fans/plan9port.git#commit=e995a0c101863688d5f14649ae3de45a7c43789c" +source=("git+https://github.com/9fans/plan9port.git#commit=715807d706cd13bc583588477a84090fbf02e057" plan9.sh acme.png acme.sh) sha256sums=('SKIP' 'a8c8aee15c9dfa60d679567582e9335ae80293133b000326f3af7c630707e93c' @@ -62,7 +62,7 @@ # Clean up rm -rf .hg/ rm -f .hgignore .hgtags - find . -name '.cvsignore' -print0 |xargs -0 rm -f + find . -name '.cvsignore' -delete rm -f config install.log install.sum install.txt configure Makefile INSTALL \ LICENSE @@ -73,8 +73,8 @@ done # Decompress the plan9 man pages - for i in `find $pkgdir/$d/plan9/man -type f`; do - if [ ${i##*.} = "gz" ]; then + for i in "$(find "$pkgdir/$d/plan9/man" -type f)"; do + if [ "${i##*.}" = "gz" ]; then gunzip "$i" fi done
