blob: 189888f219981ffbfa08ad45fcb7b7a8d24ce883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Maintainer: Josh Holmer <jholmer.in@gmail.com>
_plug=vsjetpack
pkgname=vapoursynth-plugin-${_plug}
pkgver=1.5.0
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug}"
arch=('any')
url='https://github.com/Jaded-Encoding-Thaumaturgy/vs-jetpack'
license=('MIT')
depends=(
'vapoursynth'
'python-rich'
'python-jetpytools'
'python-typing_extensions'
'python-scipy'
'vapoursynth-plugin-vsakarin'
'vapoursynth-plugin-resize2'
'vapoursynth-plugin-vszip'
'vapoursynth-plugin-zsmooth'
)
makedepends=('python-installer')
optdepends=(
'ffms2: Source filter'
'vapoursynth-plugin-bestsource: Source filter'
'vapoursynth-plugin-lsmashsource: Source filter'
'vapoursynth-plugin-knlmeanscl: NLMeans Denoiser (OpenCL)'
'vapoursynth-plugin-nlm-cuda: NLMeans Denoiser (CUDA)'
'vapoursynth-plugin-nlm: NLMeans Denoiser (CPU)'
'vapoursynth-plugin-bm3d: Denoiser'
'vapoursynth-plugin-bm3dcuda: Denoiser (CUDA accelerated)'
'vapoursynth-plugin-bm3dhip: Denoiser (AMD HIP accelerated)'
'vapoursynth-plugin-dfttest2: Denoiser'
'vapoursynth-plugin-fft3dfilter: Denoiser'
'vapoursynth-plugin-scxvid: Scene detection'
'vapoursynth-plugin-wwxd: Scene detection'
'vapoursynth-plugin-adaptivegrain'
'vapoursynth-plugin-addnoise'
'vapoursynth-plugin-awarp'
'vapoursynth-plugin-bilateralgpu'
'vapoursynth-plugin-bwdif'
'vapoursynth-plugin-chickendream'
'vapoursynth-plugin-d2vsource'
'vapoursynth-plugin-dctfilter'
'vapoursynth-plugin-descale-jet-git'
'vapoursynth-plugin-dpid'
'vapoursynth-plugin-edgemasks'
'vapoursynth-plugin-eedi2'
'vapoursynth-plugin-eedi3m'
'vapoursynth-plugin-fmtconv'
'vapoursynth-plugin-hysteresis'
'vapoursynth-plugin-imwri'
'vapoursynth-plugin-mlrt'
'vapoursynth-plugin-mvtools'
'vapoursynth-plugin-placebo'
'vapoursynth-plugin-removegrain'
'vapoursynth-plugin-retinex'
'vapoursynth-plugin-sangnom'
'vapoursynth-plugin-subtext'
'vapoursynth-plugin-tcanny'
'vapoursynth-plugin-tedgemask'
'vapoursynth-plugin-vivtc'
'vapoursynth-plugin-wnnm'
'vapoursynth-plugin-znedi3'
)
provides=(
vapoursynth-plugin-vsaa
vapoursynth-plugin-vsdeband
vapoursynth-plugin-vsdehalo
vapoursynth-plugin-vsdeinterlace
vapoursynth-plugin-vsdenoise
vapoursynth-plugin-vsexprtools
vapoursynth-plugin-vskernels
vapoursynth-plugin-vsmasktools
vapoursynth-plugin-vsrgtools
vapoursynth-plugin-vsscale
vapoursynth-plugin-vssource
vapoursynth-plugin-vstools
)
conflicts=(
vapoursynth-plugin-vsaa
vapoursynth-plugin-vsdeband
vapoursynth-plugin-vsdehalo
vapoursynth-plugin-vsdeinterlace
vapoursynth-plugin-vsdenoise
vapoursynth-plugin-vsexprtools
vapoursynth-plugin-vskernels
vapoursynth-plugin-vsmasktools
vapoursynth-plugin-vsrgtools
vapoursynth-plugin-vsscale
vapoursynth-plugin-vssource
vapoursynth-plugin-vstools
)
source=("https://files.pythonhosted.org/packages/19/c2/817a6836b38d06d80e5e8a03a5e6105e836aba51050f7cdd2eae4bf3f914/vsjetpack-1.5.0-py3-none-any.whl")
sha256sums=('7ce19a1e7ea082febbb9e57ee5c256e055cf7ac978f2ef7c00cba1bf017e3281')
package() {
python -m installer --destdir="$pkgdir" "${_plug}-${pkgver}-py3-none-any.whl"
}
|