From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6B0CF15802D for ; Thu, 19 Dec 2024 15:08:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DC9FE0801; Thu, 19 Dec 2024 15:08:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8265FE0801 for ; Thu, 19 Dec 2024 15:08:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96AA833FDEE for ; Thu, 19 Dec 2024 15:08:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF9E71F7A for ; Thu, 19 Dec 2024 15:08:42 +0000 (UTC) From: "Nowa Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nowa Ammerlaan" Message-ID: <1734620829.147ead7f1d8d972815643ddc6d9375a5afd7d94b.nowa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvpl-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libvpl-tools/libvpl-tools-1.2.0.ebuild X-VCS-Directories: media-libs/libvpl-tools/ X-VCS-Committer: nowa X-VCS-Committer-Name: Nowa Ammerlaan X-VCS-Revision: 147ead7f1d8d972815643ddc6d9375a5afd7d94b X-VCS-Branch: master Date: Thu, 19 Dec 2024 15:08:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1eac3fc3-6700-43a5-9da3-aecca15c93a4 X-Archives-Hash: 75dd16fe3daefa23cb425524ff391cd5 commit: 147ead7f1d8d972815643ddc6d9375a5afd7d94b Author: Filip Kobierski pm me> AuthorDate: Sat Dec 14 15:10:43 2024 +0000 Commit: Nowa Ammerlaan gentoo org> CommitDate: Thu Dec 19 15:07:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=147ead7f media-libs/libvpl-tools: drop 1.2.0-r0 Closes: https://bugs.gentoo.org/936751 Signed-off-by: Filip Kobierski pm.me> Signed-off-by: Nowa Ammerlaan gentoo.org> media-libs/libvpl-tools/libvpl-tools-1.2.0.ebuild | 71 ----------------------- 1 file changed, 71 deletions(-) diff --git a/media-libs/libvpl-tools/libvpl-tools-1.2.0.ebuild b/media-libs/libvpl-tools/libvpl-tools-1.2.0.ebuild deleted file mode 100644 index 60f9e36be1fe..000000000000 --- a/media-libs/libvpl-tools/libvpl-tools-1.2.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Intel Video Processing Library tools" -HOMEPAGE="https://github.com/intel/libvpl-tools/" -SRC_URI="https://github.com/intel/libvpl-tools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="dri +drm opencl test +vaapi wayland X" -RESTRICT="!test? ( test )" - -REQUIRED_USE=" - dri? ( X ) - opencl? ( X ) - vaapi? ( drm ) - wayland? ( vaapi ) - X? ( vaapi ) -" - -RDEPEND=" - drm? ( x11-libs/libdrm[video_cards_intel] ) - opencl? ( virtual/opencl ) - vaapi? ( media-libs/libva[X?,wayland?,drm(+)?] ) - wayland? ( - dev-libs/wayland - ) - X? ( - x11-libs/libX11 - x11-libs/libxcb - ) - x11-libs/libpciaccess - >=media-libs/libvpl-2.11.0:= -" - -DEPEND="${RDEPEND} - wayland? ( - dev-libs/wayland-protocols - ) -" - -BDEPEND="virtual/pkgconfig" - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=ON - -DBUILD_TESTS="$(usex test)" - - -DBUILD_EXPERIMENTAL="$(usex X)" - -DTOOLS_ENABLE_X11="$(usex X)" - -DTOOLS_ENABLE_SCREEN_CAPTURE="$(usex X)" - -DTOOLS_ENABLE_RENDER="$(usex X)" - -DTOOLS_ENABLE_OPENCL="$(usex opencl)" - - -DENABLE_DRI3="$(usex dri)" - -DENABLE_DRM="$(usex drm)" - -DENABLE_VA="$(usex vaapi)" - -DENABLE_WAYLAND="$(usex wayland)" - -DENABLE_X11="$(usex X)" - - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr" - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc" - ) - cmake_src_configure -}