Date: Sunday, September 13, 2020 @ 13:47:18 Author: foxboron Revision: 705132
upgpkg: python-pipenv 2020.8.13-2 - Fixes FS#58444 Modified: python-pipenv/trunk/PKGBUILD ----------+ PKGBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-09-13 13:44:25 UTC (rev 705131) +++ PKGBUILD 2020-09-13 13:47:18 UTC (rev 705132) @@ -4,7 +4,7 @@ pkgname=python-pipenv pkgver=2020.8.13 -pkgrel=1 +pkgrel=2 pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv." url="https://pipenv.pypa.io" arch=('any') @@ -25,6 +25,9 @@ cd "pipenv-$pkgver" python setup.py install --root="$pkgdir/" --optimize=1 --skip-build install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + pushd pipenv + find . -name \*LICENSE\* -exec install -Dm 644 \{\} "${pkgdir}/usr/share/licenses/${pkgname}/"\{\} \; + popd PIPENV_SHELL=bash python -m pipenv --completion | install -Dm644 /dev/stdin "${pkgdir}/usr/share/bash-completion/completions/pipenv" PIPENV_SHELL=zsh python -m pipenv --completion | install -Dm644 /dev/stdin "${pkgdir}/usr/share/zsh/site-functions/_pipenv"
