mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-10 11:50:52 +00:00
bump(main/vapoursynth): 73
- Fixes https://github.com/termux/termux-packages/issues/27404 - A strange error occurred `setuptools.errors.InvalidConfigError: No configuration found for dynamic 'license'.`, it seems to be OK if the code related to the error is just removed.
This commit is contained in:
@@ -2,10 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://www.vapoursynth.com/
|
||||
TERMUX_PKG_DESCRIPTION="Video processing framework with simplicity in mind"
|
||||
TERMUX_PKG_LICENSE="LGPL-2.1-or-later"
|
||||
TERMUX_PKG_MAINTAINER="@termux"
|
||||
TERMUX_PKG_VERSION="72"
|
||||
TERMUX_PKG_REVISION=1
|
||||
TERMUX_PKG_SRCURL=https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R${TERMUX_PKG_VERSION}.tar.gz
|
||||
TERMUX_PKG_SHA256=650f77feebfd08842b521273f59e0c88f7ba9d7cb5f151d89b79b8dfdd4ce633
|
||||
TERMUX_PKG_VERSION="73"
|
||||
TERMUX_PKG_SRCURL="https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R${TERMUX_PKG_VERSION}.tar.gz"
|
||||
TERMUX_PKG_SHA256=1bb8ffe31348eaf46d8f541b138f0136d10edaef0c130c1e5a13aa4a4b057280
|
||||
TERMUX_PKG_DEPENDS="libzimg, python"
|
||||
TERMUX_PKG_PYTHON_COMMON_DEPS="Cython"
|
||||
TERMUX_PKG_BUILD_IN_SRC=true
|
||||
|
||||
19
packages/vapoursynth/fix-license-error.patch
Normal file
19
packages/vapoursynth/fix-license-error.patch
Normal file
@@ -0,0 +1,19 @@
|
||||
Prevents:
|
||||
setuptools.errors.InvalidConfigError: No configuration found for dynamic 'license'.
|
||||
Seems to be OK to do because not only does
|
||||
$TERMUX_PREFIX/lib/python3.12/site-packages/vapoursynth-0.0.0.dist-info/licenses/COPYING.LESSER
|
||||
still appear, but also Termux still adds
|
||||
$TERMUX_PREFIX/share/doc/vapoursynth/copyright
|
||||
to the package anyway
|
||||
|
||||
--- a/pyproject.toml
|
||||
+++ b/pyproject.toml
|
||||
@@ -10,7 +10,7 @@ authors = [
|
||||
requires-python = ">=3.8"
|
||||
description = "A frameserver for the 21st century"
|
||||
keywords = ["frameserver", "video", "audio"]
|
||||
-dynamic = ["version", "license"]
|
||||
+dynamic = ["version"]
|
||||
readme = "README.md"
|
||||
|
||||
[project.urls]
|
||||
Reference in New Issue
Block a user