oneVPL: update to 2.14.0, rename to libvpl

Intel's oneVPL repo has been named to libvpl and referenced as
such for a bit. The newest release is libvpl with the version
scheme changing to a minor.major.bug numbering instead of the
previous yyyy.x.z versioning.
This commit is contained in:
zlice 2024-07-27 10:18:14 -04:00 committed by oreo639
parent 9c35ee2331
commit 93ae54879e
6 changed files with 54 additions and 35 deletions

View file

@ -4512,7 +4512,7 @@ libgrass_gproj.8.3.so grass-8.3.0_1
libgrass_imagery.8.3.so grass-8.3.0_1
libgrass_raster.8.3.so grass-8.3.0_1
libgrass_vector.8.3.so grass-8.3.0_1
libvpl.so.2 oneVPL-2023.3.1_1
libvpl.so.2 libvpl-2.14.0_1
libusrsctp.so.2 usrsctp-0.9.5.0_1
libdatachannel.so.0.20 libdatachannel-0.20.2_1
libgeotiff.so.5 libgeotiff-1.7.1_1

1
srcpkgs/libvpl-devel Symbolic link
View file

@ -0,0 +1 @@
libvpl

1
srcpkgs/libvpl-examples Symbolic link
View file

@ -0,0 +1 @@
libvpl

View file

@ -1,4 +1,4 @@
--- a/dispatcher/pkgconfig/vpl.pc.in 2023-07-21 23:28:38.000000000 +0200
--- a/libvpl/pkgconfig/vpl.pc.in 2023-07-21 23:28:38.000000000 +0200
+++ - 2023-11-14 10:16:46.665168740 +0100
@@ -1,6 +1,6 @@
-prefix=@pc_rel_prefix@

40
srcpkgs/libvpl/template Normal file
View file

@ -0,0 +1,40 @@
# Template file for 'libvpl'
pkgname=libvpl
version=2.14.0
revision=1
build_style=cmake
configure_args="-DBUILD_EXAMPLES=ON"
hostmakedepends="pkg-config"
makedepends="libva-devel libX11-devel"
short_desc="Intel oneAPI Video Processing Library"
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
license="MIT"
homepage="https://github.com/intel/libvpl"
changelog="https://github.com/intel/libvpl/blob/master/CHANGELOG.md"
distfiles="https://github.com/intel/libvpl/archive/refs/tags/v${version}.tar.gz"
checksum=7c6bff1c1708d910032c2e6c44998ffff3f5fdbf06b00972bc48bf2dd9e5ac06
post_install() {
vlicense LICENSE
}
libvpl-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove etc/vpl/vars.sh
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/cmake
vmove usr/lib/*.so
}
}
libvpl-examples_package() {
short_desc+=" - examples"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/bin
vmove usr/share/vpl/examples
}
}

View file

@ -1,43 +1,20 @@
# Template file for 'oneVPL'
pkgname=oneVPL
version=2023.3.1
revision=2
build_style=cmake
hostmakedepends="pkg-config"
makedepends="libva-devel libX11-devel"
short_desc="Intel oneAPI Video Processing Library"
revision=3
metapackage=yes
short_desc="Intel oneAPI Video Processing Library (transitional dummy package)"
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
license="MIT"
homepage="https://github.com/oneapi-src/oneVPL"
changelog="https://github.com/oneapi-src/oneVPL/blob/master/CHANGELOG.md"
distfiles="https://github.com/oneapi-src/oneVPL/archive/refs/tags/v$version.tar.gz"
checksum=914530a80bdb155d3a4d50916ff34451da48584269e37075a48bd74a74e3d847
post_install() {
vlicense LICENSE
}
license="Public Domain"
homepage="https://github.com/intel/libvpl"
changelog="https://github.com/intel/libvpl/blob/master/CHANGELOG.md"
oneVPL-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove etc/vpl/vars.sh
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/cmake
vmove "usr/lib/*.so"
}
metapackage=yes
depends="libvpl-devel>=0"
}
oneVPL-examples_package() {
short_desc+=" - examples"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/bin/sample_decode
vmove usr/bin/sample_encode
vmove usr/bin/sample_multi_transcode
vmove usr/bin/sample_vpp
vmove usr/bin/vpl-inspect
vmove usr/share/vpl/examples
}
metapackage=yes
depends="libvpl-examples>=0"
}