blob: c747a67b0a3c1907b5b89a9e563d782f8e748552 (
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
|
# Maintainer: Josh Holmer <jholmer.in@gmail.com>
_plug=vsjetpack
pkgname=vapoursynth-plugin-${_plug}
pkgver=0.4.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'
)
makedepends=('python-pip')
optdepends=(
'vapoursynth-plugin-eedi2'
'vapoursynth-plugin-eedi3m'
'vapoursynth-plugin-znedi3'
'vapoursynth-plugin-sangnom'
'vapoursynth-plugin-neo_f3kdb: Debanding'
'vapoursynth-plugin-chickendream'
'vapoursynth-plugin-addnoise'
'vapoursynth-plugin-vivtc'
'vapoursynth-plugin-wnnm'
'vapoursynth-plugin-bm3d: Denoiser'
'vapoursynth-plugin-bm3dcuda: Denoiser'
'vapoursynth-plugin-dctfilter'
'vapoursynth-plugin-mlrt'
'vapoursynth-plugin-dfttest2: Denoiser'
'vapoursynth-plugin-mvtools'
'vapoursynth-plugin-bwdif'
'vapoursynth-plugin-fft3dfilter: Denoiser'
'vapoursynth-plugin-nlm: NLMeans Denoiser (CPU)'
'vapoursynth-plugin-nlm-cuda: NLMeans Denoiser (CUDA)'
'vapoursynth-plugin-knlmeanscl: NLMeans Denoiser (OpenCL)'
'vapoursynth-plugin-vsakarin'
'vapoursynth-plugin-resize2'
'vapoursynth-plugin-fmtconv'
'vapoursynth-plugin-descale-jet-git'
'vapoursynth-plugin-placebo'
'vapoursynth-plugin-awarpsharp2'
'vapoursynth-plugin-tcanny'
'vapoursynth-plugin-tedgemask'
'vapoursynth-plugin-retinex'
'vapoursynth-plugin-adaptivegrain'
'vapoursynth-plugin-removegrain'
'vapoursynth-plugin-vszip'
'vapoursynth-plugin-bilateralgpu'
'vapoursynth-plugin-dpid'
'vapoursynth-plugin-bestsource'
'vapoursynth-plugin-dgdecodenv-bin'
'vapoursynth-plugin-d2vsource'
'vapoursynth-plugin-hysteresis'
'ffms2'
'vapoursynth-plugin-lsmashsource'
)
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/77/93/e1063c6f2782e6ba64eed4d7181dc765ee4907886d0b78786853755525d5/vsjetpack-0.4.0-py3-none-any.whl")
sha256sums=('4d96ed0114998b341209a9aba0d9941f5374d9d30bd237038e412ffaf1c71a58')
package() {
pip install -I -U --root "${pkgdir}" --no-warn-script-location --no-deps "${_plug}-${pkgver}-py3-none-any.whl"
}
|