From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id DD6AB158200 for ; Sun, 14 Sep 2025 17:08:43 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id CB357340F04 for ; Sun, 14 Sep 2025 17:08:43 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 2566E110572; Sun, 14 Sep 2025 17:08:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 14F2E110571 for ; Sun, 14 Sep 2025 17:08:39 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB787340F08 for ; Sun, 14 Sep 2025 17:08:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AFCA3935 for ; Sun, 14 Sep 2025 17:08:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1757869660.8d47468f5d613f162ef194eb37fd2027e1b0932a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/virglrenderer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/virglrenderer/virglrenderer-1.1.1.ebuild X-VCS-Directories: media-libs/virglrenderer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8d47468f5d613f162ef194eb37fd2027e1b0932a X-VCS-Branch: master Date: Sun, 14 Sep 2025 17:08:37 +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: 9b197ba4-0507-413f-8c3b-5080848df24a X-Archives-Hash: 1969c70ad599783dda4d6338294afc16 commit: 8d47468f5d613f162ef194eb37fd2027e1b0932a Author: Alfred Wingate protonmail com> AuthorDate: Sun Sep 14 13:25:31 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 14 17:07:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d47468f media-libs/virglrenderer: drop 1.1.1 Signed-off-by: Alfred Wingate protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43782 Signed-off-by: Sam James gentoo.org> .../virglrenderer/virglrenderer-1.1.1.ebuild | 46 ---------------------- 1 file changed, 46 deletions(-) diff --git a/media-libs/virglrenderer/virglrenderer-1.1.1.ebuild b/media-libs/virglrenderer/virglrenderer-1.1.1.ebuild deleted file mode 100644 index 27c8eca53c2a..000000000000 --- a/media-libs/virglrenderer/virglrenderer-1.1.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://anongit.freedesktop.org/git/virglrenderer.git" - inherit git-r3 -else - MY_P="${PN}-${P}" - SRC_URI="https://gitlab.freedesktop.org/virgl/${PN}/-/archive/${P}/${MY_P}.tar.bz2" - S="${WORKDIR}/${MY_P}" - - KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86" -fi - -DESCRIPTION="Library used implement a virtual 3D GPU used by qemu" -HOMEPAGE="https://virgil3d.github.io/" - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs test" -# Most of the testsuite cannot run in our sandboxed environment, just don't -# deal with it for now. -RESTRICT="!test? ( test ) test" - -RDEPEND=" - >=x11-libs/libdrm-2.4.121 - media-libs/libepoxy -" -DEPEND=" - ${RDEPEND} - sys-kernel/linux-headers -" - -src_configure() { - local emesonargs=( - # TODO: Wire up drm-renderers= (msm, amdgpu-experimental as of 1.1.1) - -Ddefault_library=$(usex static-libs both shared) - $(meson_use test tests) - ) - - meson_src_configure -}