blob: 68f6d86ff2d9ed7598ee31d425d39c29dbf0c85e (
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# Maintainer: Josh Holmer <jholmer.in@gmail.com>
_plug=vsjetpack
pkgname=vapoursynth-plugin-${_plug}-git
pkgver=1.0.0rc1.10.g21a2c5fd
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)"
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'
)
makedepends=('git'
'python-build'
'python-installer'
'python-hatchling'
'python-versioningit'
)
optdepends=(
'ffms2'
'vapoursynth-plugin-adaptivegrain'
'vapoursynth-plugin-addnoise'
'vapoursynth-plugin-awarpsharp2'
'vapoursynth-plugin-bestsource'
'vapoursynth-plugin-bilateralgpu'
'vapoursynth-plugin-bm3d: Denoiser'
'vapoursynth-plugin-bm3dcuda: Denoiser'
'vapoursynth-plugin-bwdif'
'vapoursynth-plugin-chickendream'
'vapoursynth-plugin-d2vsource'
'vapoursynth-plugin-dctfilter'
'vapoursynth-plugin-descale-jet-git'
'vapoursynth-plugin-dfttest2: Denoiser'
'vapoursynth-plugin-dpid'
'vapoursynth-plugin-eedi2'
'vapoursynth-plugin-eedi3m'
'vapoursynth-plugin-fft3dfilter: Denoiser'
'vapoursynth-plugin-fmtconv'
'vapoursynth-plugin-hysteresis'
'vapoursynth-plugin-imwri'
'vapoursynth-plugin-knlmeanscl: NLMeans Denoiser (OpenCL)'
'vapoursynth-plugin-lsmashsource'
'vapoursynth-plugin-mlrt'
'vapoursynth-plugin-mvtools'
'vapoursynth-plugin-neo_f3kdb: Debanding'
'vapoursynth-plugin-nlm-cuda: NLMeans Denoiser (CUDA)'
'vapoursynth-plugin-nlm: NLMeans Denoiser (CPU)'
'vapoursynth-plugin-placebo'
'vapoursynth-plugin-removegrain'
'vapoursynth-plugin-retinex'
'vapoursynth-plugin-sangnom'
'vapoursynth-plugin-scxvid: Scene detection'
'vapoursynth-plugin-tcanny'
'vapoursynth-plugin-tedgemask'
'vapoursynth-plugin-vivtc'
'vapoursynth-plugin-vszip'
'vapoursynth-plugin-wnnm'
'vapoursynth-plugin-wwxd: Scene detection'
'vapoursynth-plugin-znedi3'
)
provides=("vapoursynth-plugin-${_plug}"
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
vapoursynth-plugin-vsaa-git
vapoursynth-plugin-vsdeband-git
vapoursynth-plugin-vsdehalo-git
vapoursynth-plugin-vsdeinterlace-git
vapoursynth-plugin-vsdenoise-git
vapoursynth-plugin-vsexprtools-git
vapoursynth-plugin-vskernels-git
vapoursynth-plugin-vsmasktools-git
vapoursynth-plugin-vsrgtools-git
vapoursynth-plugin-vsscale-git
vapoursynth-plugin-vssource-git
vapoursynth-plugin-vstools-git
)
conflicts=(
"vapoursynth-plugin-${_plug}"
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
vapoursynth-plugin-vsaa-git
vapoursynth-plugin-vsdeband-git
vapoursynth-plugin-vsdehalo-git
vapoursynth-plugin-vsdeinterlace-git
vapoursynth-plugin-vsdenoise-git
vapoursynth-plugin-vsexprtools-git
vapoursynth-plugin-vskernels-git
vapoursynth-plugin-vsmasktools-git
vapoursynth-plugin-vsrgtools-git
vapoursynth-plugin-vsscale-git
vapoursynth-plugin-vssource-git
vapoursynth-plugin-vstools-git
)
source=("${_plug}::git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-jetpack.git")
sha256sums=('SKIP')
pkgver() {
cd "${_plug}"
echo "$(git describe --long --tags | tr - . | tr -d v)"
}
build() {
cd "${_plug}"
rm -f dist/*.whl
python -m build --wheel --no-isolation
}
package() {
cd "${_plug}"
python -m installer --destdir="${pkgdir}" dist/*.whl
install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|