diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /media-libs/libvpl | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'media-libs/libvpl')
| -rw-r--r-- | media-libs/libvpl/Manifest | 3 | ||||
| -rw-r--r-- | media-libs/libvpl/files/libvpl-2.13.0_do-not-fortify-source.patch | 23 | ||||
| -rw-r--r-- | media-libs/libvpl/libvpl-2.14.0.ebuild | 53 | ||||
| -rw-r--r-- | media-libs/libvpl/libvpl-2.15.0.ebuild | 53 | ||||
| -rw-r--r-- | media-libs/libvpl/libvpl-2.16.0.ebuild | 54 | ||||
| -rw-r--r-- | media-libs/libvpl/metadata.xml | 16 |
6 files changed, 0 insertions, 202 deletions
diff --git a/media-libs/libvpl/Manifest b/media-libs/libvpl/Manifest deleted file mode 100644 index fab5b8167f39..000000000000 --- a/media-libs/libvpl/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST libvpl-2.14.0.tar.gz 12958172 BLAKE2B 2aa47e076da70969233a47e79a3c92bb1c406221f8cf335f55745f7b3a25ea688d6a07d413a80afbab67d8576b7480472a319acdff452bec9a62ef67103f589f SHA512 7557f4054b84ba4425e6a50c4abd24594ef7c9a21c27137a971987634cdf5ed54e82c76d92b6740f3183a49b92edb6a5848f584c619bd30b2fbd821706bba1e4 -DIST libvpl-2.15.0.tar.gz 12969762 BLAKE2B e60f97e42fbd90f1f78cfe1219e632f4dd9bcbf5889be968c5d6107bd3a4b1b258fa494dfa2f3fe606a99ff70fabd3537311e8a6ebda1f2b49b585f0d87e4ea0 SHA512 daf7c3d5722515ed2346e252b39f117c0c3f24f6c80ab3492bd7107b2207c49c0d2247cc2d043298f43045884247024a109c698751fcbd88eb5ab54a4122c26d -DIST libvpl-2.16.0.tar.gz 12968334 BLAKE2B fcbd1e702a767f1ec3083ae9350f599355c902e6fa224b72771b472e6f5351dc78f364cda2f8eb408f351d7abdd24ddb0ff78864aed9b45a61cc0f00ab3c9f4d SHA512 bda6e8387f1e86eee86357a967ae58d9e87e2cada50317913ee8452e116220c5837643ea62c0b04baf9783daeca76d12ca63a34ce6acd6fb3ea2511bb47696bc diff --git a/media-libs/libvpl/files/libvpl-2.13.0_do-not-fortify-source.patch b/media-libs/libvpl/files/libvpl-2.13.0_do-not-fortify-source.patch deleted file mode 100644 index 94fd05d1a7e8..000000000000 --- a/media-libs/libvpl/files/libvpl-2.13.0_do-not-fortify-source.patch +++ /dev/null @@ -1,23 +0,0 @@ -From: Filip Kobierski <fkobi@pm.me> - ---- - cmake/CompileOptions.cmake | 3 --- - 1 file changed, 3 deletions(-) - -diff --git a/cmake/CompileOptions.cmake b/cmake/CompileOptions.cmake -index 02926c4..bba557d 100644 ---- a/cmake/CompileOptions.cmake -+++ b/cmake/CompileOptions.cmake -@@ -51,9 +51,6 @@ else() - add_compile_options("-Werror=format-security") - if(NOT MINGW) - string(TOLOWER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) -- if(NOT CMAKE_BUILD_TYPE MATCHES debug) -- add_definitions("-D_FORTIFY_SOURCE=2") -- endif() - endif() - if(NOT MINGW) - add_compile_options("-fstack-protector-strong") --- -2.45.2 - diff --git a/media-libs/libvpl/libvpl-2.14.0.ebuild b/media-libs/libvpl/libvpl-2.14.0.ebuild deleted file mode 100644 index ad892e99fa25..000000000000 --- a/media-libs/libvpl/libvpl-2.14.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake-multilib optfeature flag-o-matic - -DESCRIPTION="Intel Video Processing Library dispatcher" -HOMEPAGE="https://github.com/intel/libvpl" -SRC_URI="https://github.com/intel/libvpl/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/2" -KEYWORDS="amd64" - -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - x11-libs/libpciaccess[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-2.13.0_do-not-fortify-source.patch ) - -src_prepare() { - filter-lto - cmake_src_prepare -} - -multilib_src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DBUILD_TESTS="$(usex test)" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr" - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" - ) - cmake_src_configure -} - -multilib_src_install() { - cmake_src_install - # Remove these license files - rm -r "${ED}/usr/share/vpl/licensing" || die -} - -pkg_postinst() { - optfeature_header "This package provides only the dispatcher, to use it install one or more implementations" - optfeature "CPUs" media-libs/oneVPL-cpu - optfeature "Intel GPUs newer then, and including, Intel Xe" media-libs/vpl-gpu-rt - optfeature "Intel GPUs older then Intel Xe" media-libs/intel-mediasdk -} diff --git a/media-libs/libvpl/libvpl-2.15.0.ebuild b/media-libs/libvpl/libvpl-2.15.0.ebuild deleted file mode 100644 index ad892e99fa25..000000000000 --- a/media-libs/libvpl/libvpl-2.15.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake-multilib optfeature flag-o-matic - -DESCRIPTION="Intel Video Processing Library dispatcher" -HOMEPAGE="https://github.com/intel/libvpl" -SRC_URI="https://github.com/intel/libvpl/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/2" -KEYWORDS="amd64" - -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - x11-libs/libpciaccess[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-2.13.0_do-not-fortify-source.patch ) - -src_prepare() { - filter-lto - cmake_src_prepare -} - -multilib_src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DBUILD_TESTS="$(usex test)" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr" - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" - ) - cmake_src_configure -} - -multilib_src_install() { - cmake_src_install - # Remove these license files - rm -r "${ED}/usr/share/vpl/licensing" || die -} - -pkg_postinst() { - optfeature_header "This package provides only the dispatcher, to use it install one or more implementations" - optfeature "CPUs" media-libs/oneVPL-cpu - optfeature "Intel GPUs newer then, and including, Intel Xe" media-libs/vpl-gpu-rt - optfeature "Intel GPUs older then Intel Xe" media-libs/intel-mediasdk -} diff --git a/media-libs/libvpl/libvpl-2.16.0.ebuild b/media-libs/libvpl/libvpl-2.16.0.ebuild deleted file mode 100644 index 5a8c1e9f87e4..000000000000 --- a/media-libs/libvpl/libvpl-2.16.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 2022-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake-multilib optfeature flag-o-matic - -DESCRIPTION="Intel Video Processing Library dispatcher" -HOMEPAGE="https://github.com/intel/libvpl" -SRC_URI="https://github.com/intel/libvpl/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0/2" -KEYWORDS="~amd64" - -IUSE="examples test" -RESTRICT="!test? ( test )" - -RDEPEND=" - x11-libs/libpciaccess[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}"/${PN}-2.13.0_do-not-fortify-source.patch ) - -src_prepare() { - filter-lto - cmake_src_prepare -} - -multilib_src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DBUILD_TESTS="$(usex test)" - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr" - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" - -DINSTALL_EXAMPLES="$(usex examples)" - ) - cmake_src_configure -} - -multilib_src_install() { - cmake_src_install - # Remove these license files - rm -r "${ED}/usr/share/vpl/licensing" || die -} - -pkg_postinst() { - optfeature_header "This package provides only the dispatcher, to use it install one or more implementations" - optfeature "CPUs" media-libs/oneVPL-cpu - optfeature "Intel GPUs newer then, and including, Intel Xe" media-libs/vpl-gpu-rt - optfeature "Intel GPUs older then Intel Xe" media-libs/intel-mediasdk -} diff --git a/media-libs/libvpl/metadata.xml b/media-libs/libvpl/metadata.xml deleted file mode 100644 index 6a94d10f5b12..000000000000 --- a/media-libs/libvpl/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>media-video@gentoo.org</email> - </maintainer> - <maintainer type="person"> - <email>nowa@gentoo.org</email> - <name>Nowa Ammerlaan</name> - </maintainer> - <upstream> - <bugs-to>https://github.com/intel/libvpl/issues</bugs-to> - <changelog>https://github.com/intel/libvpl/blob/main/CHANGELOG.md</changelog> - <remote-id type="github">intel/libvpl</remote-id> - </upstream> -</pkgmetadata> |
