update
This commit is contained in:
+15
-1
@@ -22,7 +22,21 @@
|
||||
|
||||
所以不会出问题. 主要影响范围是打包者或上游硬编码插件安装路径为 `/usr/lib/vapoursynth` 的包, 其中包括少数 extra 仓库的包如 `extra/ffms2` 和众多 AUR 包.
|
||||
|
||||
- vapoursynth 不再在编译器 link libpython, 而必须在加载 libvsscript.so 时选择 python. 选哪个 python 由 `$HOME/.config/vapoursynth/vapoursynth.toml` 维护的映射关系决定, 格式类似:
|
||||
临时修复方法:
|
||||
|
||||
```bash
|
||||
old_dir="/usr/lib/vapoursynth"
|
||||
new_dir="$(python -c 'import vapoursynth;print(vapoursynth.get_plugin_dir())')"
|
||||
if [ "$(realpath "$old_dir" 2>/dev/null)" != "$(realpath "$new_dir")" ] && [ -d "$old_dir" ]; then
|
||||
for f in "$old_dir"/*.so; do
|
||||
if [ -L "$f" ]; then p="$(readlink -m "$f")"; elif [ -f "$f" ]; then p="$f"; else continue; fi
|
||||
ln -svr "$p" "$new_dir/$(basename "$f")"
|
||||
done
|
||||
fi
|
||||
unset old_dir new_dir f p
|
||||
```
|
||||
|
||||
- vapoursynth 不再在编译期链接 libpython, 而必须在加载 libvsscript.so 时选择 python. 选哪个 python 由 `$HOME/.config/vapoursynth/vapoursynth.toml` 维护的映射关系决定, 格式类似:
|
||||
|
||||
```toml
|
||||
"/usr/lib/python3.14/site-packages/vapoursynth/libvsscript.so" = ["/usr/bin/python","/usr/lib/libpython3.14.so.1.0"]
|
||||
|
||||
+1
-1
@@ -60,7 +60,7 @@ font-size=14
|
||||
如果想让 kmscon 在自动登录的同时启动非登陆 shell (例如 fish),可以将配置改为:
|
||||
|
||||
```conf
|
||||
login=/usr/bin/su - kolkas -s /usr/local/bin/fish-login-wrapper
|
||||
login=/usr/bin/su -s /usr/local/bin/fish-login-wrapper - kolkas
|
||||
```
|
||||
|
||||
其中 `fish-login-wrapper` 内容为:
|
||||
|
||||
+4
-3
@@ -295,9 +295,8 @@ lightdm
|
||||
linux-cachyos
|
||||
linux-cachyos-headers
|
||||
linux-firmware
|
||||
linux-lts
|
||||
linux-lts-headers
|
||||
linuxqq
|
||||
llama.cpp-cuda-git
|
||||
llmfit-bin
|
||||
localsend
|
||||
lolcat
|
||||
@@ -342,7 +341,7 @@ nvidia-utils
|
||||
nvme-cli
|
||||
nvtop
|
||||
nwg-look
|
||||
oavif
|
||||
oavif-git
|
||||
obs-studio
|
||||
obsidian
|
||||
okular
|
||||
@@ -379,6 +378,7 @@ python-chardet
|
||||
python-colorthief
|
||||
python-darkdetect
|
||||
python-fonttools
|
||||
python-huggingface-hub
|
||||
python-lxml
|
||||
python-opencv-cuda
|
||||
python-pygments
|
||||
@@ -583,6 +583,7 @@ zellij
|
||||
zen-browser-bin
|
||||
zenity
|
||||
zig
|
||||
zig0.15-bin
|
||||
zoxide
|
||||
zram-generator
|
||||
zsh
|
||||
|
||||
Reference in New Issue
Block a user