diff options
author | sL1pKn07 | 2023-01-06 01:50:03 +0100 |
---|---|---|
committer | sL1pKn07 | 2023-01-06 01:50:03 +0100 |
commit | 6d096cfff46aa6c5c17507b7ab084f1e93b41a4d (patch) | |
tree | cc37a70801d5e0659ff99a8e914980b7ab456b31 | |
parent | b6d3dee8342760870032847b6b978078159a403f (diff) | |
download | aur-6d096cfff46aa6c5c17507b7ab084f1e93b41a4d.tar.gz |
bump
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 18 |
2 files changed, 13 insertions, 13 deletions
@@ -1,19 +1,19 @@ pkgbase = vapoursynth-plugin-vsrife-git pkgdesc = Plugin for Vapoursynth: vsrife (GIT version) - pkgver = 2.0.0.0.g321d486 + pkgver = 3.1.0.0.g91e894f pkgrel = 1 url = https://github.com/HolyWu/vs-rife arch = any license = MIT makedepends = git makedepends = python-pip - makedepends = python-wheel + makedepends = python-pytorch-tensorrt depends = vapoursynth depends = python-numpy optdepends = python-pytorch: CPU - optdepends = python-pytorch-opt: CPU with AVX2 optimizations + optdepends = python-pytorch-opt: CPU with AVX2 CPU optimizations optdepends = python-pytorch-cuda: CUDA and CPU - optdepends = python-pytorch-opt-cuda: CUDA with CPU with AVX2 optimizations + optdepends = python-pytorch-cuda-opt: CUDA and CPU with AVX2 CPU optimizations provides = vapoursynth-plugin-vsrife conflicts = vapoursynth-plugin-vsrife source = vsrife::git+https://github.com/HolyWu/vs-rife.git @@ -1,8 +1,8 @@ -# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com> +# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com> _plug=vsrife pkgname=vapoursynth-plugin-${_plug}-git -pkgver=2.0.0.0.g321d486 +pkgver=3.1.0.0.g91e894f pkgrel=1 pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)" arch=('any') @@ -13,12 +13,12 @@ depends=('vapoursynth' ) makedepends=('git' 'python-pip' - 'python-wheel' + 'python-pytorch-tensorrt' ) optdepends=('python-pytorch: CPU' - 'python-pytorch-opt: CPU with AVX2 optimizations' + 'python-pytorch-opt: CPU with AVX2 CPU optimizations' 'python-pytorch-cuda: CUDA and CPU' - 'python-pytorch-opt-cuda: CUDA with CPU with AVX2 optimizations' + 'python-pytorch-cuda-opt: CUDA and CPU with AVX2 CPU optimizations' ) provides=("vapoursynth-plugin-${_plug}") conflicts=("vapoursynth-plugin-${_plug}") @@ -31,18 +31,18 @@ pkgver() { } prepare() { - cd "${_plug}" - python -m vsrife.__init__ + cd "${_plug}/vsrife" + python __init__.py } build() { cd "${_plug}" - python -c "import setuptools; setuptools.setup()" bdist_wheel + pip wheel --no-deps . -w dist } package() { cd "${_plug}" - pip install -I --root "${pkgdir}" --no-warn-script-location --no-deps dist/*.whl + pip install -I -U --root "${pkgdir}" --no-warn-script-location --no-deps dist/*.whl install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" |