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 04F6C138334 for ; Tue, 26 Nov 2019 03:59:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3A07E08F5; Tue, 26 Nov 2019 03:59:34 +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 DBA8CE08F5 for ; Tue, 26 Nov 2019 03:59:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6AE3134D3B4 for ; Tue, 26 Nov 2019 03:59:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC2F6895 for ; Tue, 26 Nov 2019 03:59:30 +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: <1574740752.c1b0a0094351c9e0652f8cbed678029df67c3be4.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libepoxy/libepoxy-9999.ebuild X-VCS-Directories: media-libs/libepoxy/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: c1b0a0094351c9e0652f8cbed678029df67c3be4 X-VCS-Branch: master Date: Tue, 26 Nov 2019 03:59:30 +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: cdd33629-1133-4b37-a845-2062859d76ce X-Archives-Hash: 75f9721936c4b011fccaad7413c106a7 commit: c1b0a0094351c9e0652f8cbed678029df67c3be4 Author: Matt Turner gentoo org> AuthorDate: Tue Nov 26 03:53:42 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Nov 26 03:59:12 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b0a009 media-libs/libepoxy: Bump to EAPI=7 Signed-off-by: Matt Turner gentoo.org> media-libs/libepoxy/libepoxy-9999.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild index 4c04916e719..2516bc11192 100644 --- a/media-libs/libepoxy/libepoxy-9999.ebuild +++ b/media-libs/libepoxy/libepoxy-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 EGIT_REPO_URI="https://github.com/anholt/${PN}.git" @@ -27,10 +27,9 @@ SLOT="0" IUSE="+egl test +X" RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )" -DEPEND="${PYTHON_DEPS} - ${RDEPEND} - >=dev-util/meson-0.47.0 - X? ( x11-libs/libX11[${MULTILIB_USEDEP}] ) +DEPEND="X? ( x11-libs/libX11[${MULTILIB_USEDEP}] ) + ${RDEPEND}" +BDEPEND="${PYTHON_DEPS} virtual/pkgconfig" src_unpack() { @@ -42,8 +41,8 @@ multilib_src_configure() { local emesonargs=( -Degl=$(usex egl) -Dglx=$(usex X) - -Dx11=$(usex X true false) - -Dtests=$(usex test true false) + $(meson_use X x11) + $(meson_use test tests) ) meson_src_configure }