media-libs/nv-codec-headers: drop 12.2.72.0

Dead branch, upstream hasn't released a new version and there
is no need for it with nvidia 550.x being gone.

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens
2026-07-14 20:23:57 -04:00
parent 08324fc185
commit 3df902305b
2 changed files with 0 additions and 38 deletions

View File

@@ -1,3 +1,2 @@
DIST nv-codec-headers-12.1.14.0.tar.gz 77418 BLAKE2B e9e9bb25da88108c8d9168c7d810f12ea3759b1e42e8a2115e5fc45164b1de18d59e30ed3b8a368945fd1a3774c4ad418a90b616cc9ac29cc7912a5e03a0876c SHA512 2b70becf2896a2bb1d1fe06a7e12245c69c34eb67592bb30fa64784063de0b952f9b066ab74c01aec4caca301fe7a3ecc615eeec919f23f6a5fafeff2ada6c18
DIST nv-codec-headers-12.2.72.0.tar.gz 78822 BLAKE2B a04e093cc1da8204855b875047ed4b65a0b93391b01f08cdfce1bc5621359c2ec3edf9d91919fc73cb87c31a75e2b781fb3b2bfcc60dd59ebcc50f21da91d2d7 SHA512 67faadacf781bb60e7cca69aaa50c56ac7f7250f1eb41b6d21d392222dee56043fdf8354339e3bd8aaad5a997f48e494a7a0054a2516ed0021b4526f5669b36e
DIST nv-codec-headers-13.0.19.0.tar.gz 81250 BLAKE2B de73304485de0266f41ba4600691de6718049be98db58d4387089c5e622078d47a1303b8b55e05155ca3e1a565246635b599aaa8ff737911bf203183df98f013 SHA512 6e278c35737be5eea05582c4b47f8e36c58a8922983e5565b58357105d7fac2d7ba500e475a8bec598c0e6bca93eb4a0ed2867ddd198aa9f2a8c656eaa962dac

View File

@@ -1,37 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# ideally only stabilize versions that work for all non-masked nvidia-drivers
NV_MIN_VERSION=550.54.14 # see README
DESCRIPTION="FFmpeg version of headers required to interface with Nvidias codec APIs"
HOMEPAGE="https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git"
SRC_URI="https://github.com/FFmpeg/nv-codec-headers/releases/download/n${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr LIBDIR=share install
einstalldocs
}
pkg_postinst() {
# prefer not to depend on nvidia-drivers given this package is depended
# on as header-only and drivers are optfeature'ish which can be better
# for e.g. binhosts to provide support (binding operators also not really
# suitable in DEPEND-only wrt rebuilds, rebuilds are not currently needed
# to work with *newer* drivers, and would be annoying for users switching
# driver versions only to troubleshoot non-nvenc issues)
if ! has_version ">=x11-drivers/nvidia-drivers-${NV_MIN_VERSION}"; then
ewarn
ewarn "Be warned that packages built using this version of ${PN}"
ewarn "will require x11-drivers/nvidia-drivers of version ${NV_MIN_VERSION} or"
ewarn "higher for NVDEC/NVENC to function properly. If switch to an older"
ewarn "${PN} version, remember to rebuild packages that are using"
ewarn "this such as ffmpeg or mpv."
fi
}