Date: Tuesday, January 29, 2019 @ 21:48:03 Author: dvzrv Revision: 428479
upgpkg: tmuxp 1.5.0-1 Upgrading to 1.5.0. Changing license to MIT. still using github sources, because of missing fixtures. Modified: tmuxp/trunk/PKGBUILD ----------+ PKGBUILD | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-01-29 21:47:33 UTC (rev 428478) +++ PKGBUILD 2019-01-29 21:48:03 UTC (rev 428479) @@ -1,17 +1,18 @@ # Maintainer: David Runge <[email protected]> pkgname=tmuxp -pkgver=1.5.0a -pkgrel=2 +pkgver=1.5.0 +pkgrel=1 pkgdesc="tmux session manager. built on libtmux" arch=('any') url="https://tmuxp.git-pull.com/en/latest/" -license=('BSD') -depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 'python-libtmux>=0.8.0' 'tmux') +license=('MIT') +depends=('python-click' 'python-colorama' 'python-kaptan' 'python-setuptools' 'python-libtmux') checkdepends=('python-pytest' 'python-pytest-rerunfailures') # pypi sources don't include tests: https://github.com/tmux-python/tmuxp/issues/431 +# pypi sources don't include tests/scripts: https://github.com/tmux-python/tmuxp/issues/474 #source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz") -source=("$pkgname-$pkgver.tar.gz::https://github.com/tony/${pkgname}/archive/v${pkgver}.tar.gz") -sha512sums=('e98847eb8613f44f114ecb896bc39ec213a4c7a0c29eb45ea243735aa835582db28d69baeb374c09779687ef0be692c7191fe31226f1b89cc6e4c73d226b0aa8') +source=("$pkgname-$pkgver.tar.gz::https://github.com/tmux-python/${pkgname}/archive/v${pkgver}.tar.gz") +sha512sums=('e6b90e01e47a115f2dc69c7b49216059c83337b42e0e0fd0df735fa205cf47459a70ac445bae5953a84437f09869824e4363f35cb96b453df3fb9dd85c6554fa') prepare() { cd "${pkgname}-${pkgver}" @@ -25,10 +26,10 @@ python setup.py build } +check() { + cd "${pkgname}-${pkgver}" # test_workspacebuilder.py does not return: # https://github.com/tmux-python/tmuxp/issues/377 -check() { - cd "${pkgname}-${pkgver}" py.test -k "not test_workspacebuilder" }
