Package Details: vapoursynth-plugin-misc-git R2.5.g07e0589-2

Git Clone URL: https://aur.archlinux.org/vapoursynth-plugin-misc-git.git (read-only, click to copy)
Package Base: vapoursynth-plugin-misc-git
Description: Plugin for Vapoursynth: misc (GIT version)
Upstream URL: https://github.com/vapoursynth/vs-miscfilters-obsolete
Licenses: GPL
Conflicts: vapoursynth-plugin-misc, vapoursynth-plugin-miscfilters-obsolete
Provides: vapoursynth-plugin-misc, vapoursynth-plugin-miscfilters-obsolete
Submitter: jholmer
Maintainer: jholmer
Last Packager: jholmer
Votes: 3
Popularity: 0.000000
First Submitted: 2021-10-02 23:22 (UTC)
Last Updated: 2026-05-08 13:24 (UTC)

Latest Comments

1 2 Next › Last »

linhx commented on 2026-05-26 05:55 (UTC)

The package fails for users who still have an older VapourSynth version (e.g. R73) in their Python site-packages, even though the Arch package is already at R75.

This is a fairly common situation for people who previously installed VapourSynth via pip and later switched to the official Arch package.

A small compatibility block for get_plugin_dir() would help these users avoid the AttributeError.

jholmer commented on 2026-05-26 00:57 (UTC)

What is the situation where you are using an older version of Vapoursynth together with the AUR package? The Arch Vapoursynth package is on R75. I can make the compatibility addition, but I'm confused by the use case.

linhx commented on 2026-05-25 09:25 (UTC) (edited on 2026-05-25 09:29 (UTC) by linhx)

Hi,

the package vapoursynth-plugin-misc-git is currently broken since VapourSynth R75.

vapoursynth.get_plugin_dir() was introduced in R75, causing the following error on older versions: AttributeError: module 'vapoursynth' has no attribute 'get_plugin_dir' textSuggested fix for the package() function:

```bash package() { # Compatibility for VapourSynth < R75 and >= R75 PLUGINDIR=$(python3 -c ' import vapoursynth as vs if hasattr(vs, "get_plugin_dir"): print(vs.get_plugin_dir()) else: print(vs.path[0] + "/plugins") ' | tail -n 1)

install -Dm755 build/libmiscfilters.so "$$   {pkgdir}   $${PLUGINDIR}/libmiscfilters.so"
install -Dm644 "$$   {_plug}/docs/misc.rst" "   $${pkgdir}/usr/share/doc/${pkgname}/readme.rst"

} Would also recommend removing the strict depends=('vapoursynth>=75'). Thanks for maintaining!

dreieck commented on 2023-02-14 19:26 (UTC)

Please add conflicts=('vapoursynth-miscfilters-obsolete'):

error: failed to commit transaction (conflicting files)
vapoursynth-miscfilters-obsolete-git: /usr/lib/vapoursynth/libmiscfilters.so exists in filesystem (owned by vapoursynth-plugin-misc-git)

Regards!

dreieck commented on 2023-02-14 19:25 (UTC)

Please add conflicts=('vapoursynth-plugin-misc'):

error: failed to commit transaction (conflicting files)
vapoursynth-miscfilters-obsolete-git: /usr/lib/vapoursynth/libmiscfilters.so exists in filesystem (owned by vapoursynth-plugin-misc-git)

Regards!

jose1711 commented on 2022-04-16 11:00 (UTC)

conflicts with https://aur.archlinux.org/packages/vapoursynth-plugin-misc-git

jholmer commented on 2021-10-06 19:11 (UTC)

Done, please give it another try. You may get an error saying "/usr/lib/vapoursynth/libmiscfilters.so" already exists, if you get that just rm that file and try installing again.

jholmer commented on 2021-10-06 19:02 (UTC)

Interesting, it works on my machine... I'll see if I can figure out what's going on. It looks like they have added a meson build file, so I'll convert this project to use that like all the other VS plugins use.

aethanol commented on 2021-10-06 17:33 (UTC)

I think this is being compiled incorrectly, when loading the plugin I get a vapoursynth.Error: Failed to load /usr/lib/vapoursynth/misc.so. Error given: /usr/lib/vapoursynth/misc.so: undefined symbol: _Znam

See discussion from vapoursynth maintainer here: https://github.com/vapoursynth/vapoursynth/issues/798#issuecomment-934672757

Deshikenichi commented on 2021-10-04 16:37 (UTC)

Hi, it asks me for an update but instead of installing an update it is reinstalled.