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 CF05C138334 for ; Sun, 3 Mar 2019 21:07:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B62EBE0894; Sun, 3 Mar 2019 21:07:50 +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 88A8FE088B for ; Sun, 3 Mar 2019 21:07:50 +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 47983335D0D for ; Sun, 3 Mar 2019 21:07:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A9B6542 for ; Sun, 3 Mar 2019 21:07:47 +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: <1551647256.896e7ca00924b2f727656776a4b8050383f49f2a.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libglvnd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libglvnd/libglvnd-9999.ebuild X-VCS-Directories: media-libs/libglvnd/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 896e7ca00924b2f727656776a4b8050383f49f2a X-VCS-Branch: master Date: Sun, 3 Mar 2019 21:07:47 +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: 0728f6f9-24b6-49c7-afca-7bf7a11f941f X-Archives-Hash: a4d57192a699bdb48b59503738298b27 commit: 896e7ca00924b2f727656776a4b8050383f49f2a Author: Matt Turner gentoo org> AuthorDate: Sun Mar 3 19:56:53 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Mar 3 21:07:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896e7ca0 media-libs/libglvnd: EAPI 7 and run tests Signed-off-by: Matt Turner gentoo.org> media-libs/libglvnd/libglvnd-9999.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/media-libs/libglvnd/libglvnd-9999.ebuild b/media-libs/libglvnd/libglvnd-9999.ebuild index 9f9f724cecc..f62514e3058 100644 --- a/media-libs/libglvnd/libglvnd-9999.ebuild +++ b/media-libs/libglvnd/libglvnd-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 2018-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 EGIT_REPO_URI="https://github.com/NVIDIA/${PN}.git" @@ -52,3 +52,7 @@ multilib_src_install() { default find "${D}" -name '*.la' -delete || die } + +multilib_src_test() { + emake check +}