Package Details: vapoursynth-plugin-misc-git R2.0.gd945b6b-3

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: MIT
Conflicts: vapoursynth-plugin-misc
Provides: vapoursynth-plugin-misc
Submitter: jholmer
Maintainer: jholmer
Last Packager: jholmer
Votes: 3
Popularity: 0.001423
First Submitted: 2021-10-02 23:22 (UTC)
Last Updated: 2021-10-06 19:10 (UTC)

Latest Comments

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!

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.

jholmer commented on 2021-10-04 14:28 (UTC)

Thanks, fixed

sandsmark commented on 2021-10-04 12:54 (UTC) (edited on 2021-10-04 12:55 (UTC) by sandsmark)

To fix build (and not bypass checksumming):

diff --git a/PKGBUILD b/PKGBUILD
  index 7bcdf39..9c92e9b 100644
  --- a/PKGBUILD
  +++ b/PKGBUILD
  @@ -14,8 +14,8 @@ makedepends=('git'
   )
   provides=("vapoursynth-plugin-${_plug}")
   conflicts=("vapoursynth-plugin-${_plug}")
  -source=("${_plug}::git+https://github.com/vapoursynth/vs-miscfilters-obsolete.git")
  -sha256sums=('SKIP')
  +source=("${_plug}::git+https://github.com/vapoursynth/vs-miscfilters-obsolete.git" 'https://raw.githubusercontent.com/vapoursynth/vapoursynth/R56/src/core/filtershared.h')
  +sha256sums=('SKIP' '4e80389d055b636d29b8cc9ad9916547f2aab206b2535b59c1d571da1e52be71')

   pkgver() {
     cd "${_plug}"
  @@ -25,7 +25,7 @@ pkgver() {
   prepare() {
     mkdir -p build
     mkdir -p include
  -  curl -o "include/filtershared.h" https://raw.githubusercontent.com/vapoursynth/vapoursynth/R56/src/core/filtershared.h
  +  cp filtershared.h "include/filtershared.h"
   }

   build() {