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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 99E931382C5 for ; Fri, 4 Jun 2021 01:14:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E82BBE0898; Fri, 4 Jun 2021 01:14:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C662DE0893 for ; Fri, 4 Jun 2021 01:14:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6C2C340F3E for ; Fri, 4 Jun 2021 01:14:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61E2F7B2 for ; Fri, 4 Jun 2021 01:14:35 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1622769255.314ab3c52435ecd859b551e730eecec3af16d92b.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libvdpau/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libvdpau/libvdpau-1.4.ebuild x11-libs/libvdpau/libvdpau-99999.ebuild X-VCS-Directories: x11-libs/libvdpau/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 314ab3c52435ecd859b551e730eecec3af16d92b X-VCS-Branch: master Date: Fri, 4 Jun 2021 01:14:35 +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: 8fd18828-633b-474c-98b5-463c127df171 X-Archives-Hash: 2ea4e2b049a4f3906c999914af11b964 commit: 314ab3c52435ecd859b551e730eecec3af16d92b Author: Matt Turner gentoo org> AuthorDate: Fri May 28 01:38:06 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jun 4 01:14:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314ab3c5 x11-libs/libvdpau: Switch to meson-multilib Signed-off-by: Matt Turner gentoo.org> x11-libs/libvdpau/libvdpau-1.4.ebuild | 14 +++----------- x11-libs/libvdpau/libvdpau-99999.ebuild | 14 +++----------- 2 files changed, 6 insertions(+), 22 deletions(-) diff --git a/x11-libs/libvdpau/libvdpau-1.4.ebuild b/x11-libs/libvdpau/libvdpau-1.4.ebuild index a531acdf58b..ab328e5779f 100644 --- a/x11-libs/libvdpau/libvdpau-1.4.ebuild +++ b/x11-libs/libvdpau/libvdpau-1.4.ebuild @@ -3,7 +3,7 @@ EAPI=7 VIRTUALX_REQUIRED="test" -inherit flag-o-matic meson virtualx multilib-minimal +inherit flag-o-matic meson-multilib virtualx DESCRIPTION="VDPAU wrapper and trace libraries" HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU" @@ -38,20 +38,12 @@ src_prepare() { multilib_src_configure() { append-cppflags -D_GNU_SOURCE local emesonargs=( - -Ddri2=$(usex dri true false) - -Ddocumentation=$(usex doc true false) + $(meson_use dri dri2) + $(meson_native_use_bool doc documentation) ) meson_src_configure } -multilib_src_compile() { - meson_src_compile -} multilib_src_test() { virtx meson_src_test } - -multilib_src_install() { - meson_src_install - find "${ED}" -name '*.la' -delete || die -} diff --git a/x11-libs/libvdpau/libvdpau-99999.ebuild b/x11-libs/libvdpau/libvdpau-99999.ebuild index c5bd93bb1cb..2817d03b963 100644 --- a/x11-libs/libvdpau/libvdpau-99999.ebuild +++ b/x11-libs/libvdpau/libvdpau-99999.ebuild @@ -3,7 +3,7 @@ EAPI=7 VIRTUALX_REQUIRED="test" -inherit flag-o-matic git-r3 meson virtualx multilib-minimal +inherit flag-o-matic git-r3 meson-multilib virtualx DESCRIPTION="VDPAU wrapper and trace libraries" HOMEPAGE="https://www.freedesktop.org/wiki/Software/VDPAU" @@ -38,20 +38,12 @@ src_prepare() { multilib_src_configure() { append-cppflags -D_GNU_SOURCE local emesonargs=( - -Ddri2=$(usex dri true false) - -Ddocumentation=$(usex doc true false) + $(meson_use dri dri2) + $(meson_native_use_bool doc documentation) ) meson_src_configure } -multilib_src_compile() { - meson_src_compile -} multilib_src_test() { virtx meson_src_test } - -multilib_src_install() { - meson_src_install - find "${ED}" -name '*.la' -delete || die -}