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 07058138359 for ; Thu, 10 Sep 2020 00:42:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38B86E0918; Thu, 10 Sep 2020 00:42:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 20D41E0918 for ; Thu, 10 Sep 2020 00:42:24 +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 BCBD7340EE6 for ; Thu, 10 Sep 2020 00:42:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F83A33F for ; Thu, 10 Sep 2020 00:42:21 +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: <1599698532.c462ffd988d8cecbe687451ce70f6e596aee81a0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/ispc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/ispc/ispc-9999.ebuild X-VCS-Directories: dev-lang/ispc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c462ffd988d8cecbe687451ce70f6e596aee81a0 X-VCS-Branch: master Date: Thu, 10 Sep 2020 00:42:21 +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: 4e603ba0-9b8f-49c0-a4da-1c0d70b9fad7 X-Archives-Hash: 37cdce4114fad7b5996139ae277c4cca commit: c462ffd988d8cecbe687451ce70f6e596aee81a0 Author: Sebastian Parborg gmail com> AuthorDate: Sat Sep 5 21:43:22 2020 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 10 00:42:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c462ffd9 dev-lang/ispc: Update live ebuild Signed-off-by: Sebastian Parborg gmail.com> Signed-off-by: Sam James gentoo.org> dev-lang/ispc/ispc-9999.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild index c8398b962c6..f5ecbcdb7ea 100644 --- a/dev-lang/ispc/ispc-9999.ebuild +++ b/dev-lang/ispc/ispc-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit cmake toolchain-funcs python-any-r1 @@ -30,13 +30,15 @@ RDEPEND=" DEPEND=" ${RDEPEND} ${PYTHON_DEPS} + " +BDEPEND=" sys-devel/bison sys-devel/flex " PATCHES=( "${FILESDIR}/${PN}-1.13.0-cmake-gentoo-release.patch" - "${FILESDIR}/${PN}-1.13.0-llvm-10.patch" + "${FILESDIR}/${PN}-1.14.0-llvm-10.patch" "${FILESDIR}/${PN}-1.13.0-werror.patch" ) @@ -57,3 +59,7 @@ src_install() { doins -r "${BUILD_DIR}"/examples/* fi } + +src_test() { + ${EPYTHON} run_tests.py || die "Testing failed." +}