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 2616D138330 for ; Wed, 5 Oct 2016 16:19:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A25A321C08A; Wed, 5 Oct 2016 16:19:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8938F21C08A for ; Wed, 5 Oct 2016 16:19:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34C4C341166 for ; Wed, 5 Oct 2016 16:19:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 544BD248B for ; Wed, 5 Oct 2016 16:19:51 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1475684381.fdab7fc15aa348d070a5b901c0cfb0d76975ec0d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lit/Manifest dev-python/lit/lit-3.9.0.ebuild X-VCS-Directories: dev-python/lit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fdab7fc15aa348d070a5b901c0cfb0d76975ec0d X-VCS-Branch: master Date: Wed, 5 Oct 2016 16:19:51 +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-Archives-Salt: da7f0bd7-2aae-4812-8006-152c9ba324f4 X-Archives-Hash: a86db6ae8e4fb532b0997c1da7f7d73e commit: fdab7fc15aa348d070a5b901c0cfb0d76975ec0d Author: Michał Górny gentoo org> AuthorDate: Wed Oct 5 15:47:07 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 5 16:19:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdab7fc1 dev-python/lit: Add 3.9.0 release dev-python/lit/Manifest | 1 + dev-python/lit/lit-3.9.0.ebuild | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/dev-python/lit/Manifest b/dev-python/lit/Manifest new file mode 100644 index 00000000..2f155b8 --- /dev/null +++ b/dev-python/lit/Manifest @@ -0,0 +1 @@ +DIST llvm-3.9.0.src.tar.xz 18235716 SHA256 66c73179da42cee1386371641241f79ded250e117a79f571bbd69e56daa48948 SHA512 f18ae32531218ab156c3e56c11826be0fd05f0799c82eaf2e6a043b38e1277560b4d921987513b88b11d97ea2619feaf277eec72181dd2ae4f4108c2836bf7b2 WHIRLPOOL a36c1bcee6e7995067a9a7a51e3fdb0f10d51d0239250eefab92ed2e46b024a203fa10a17a25a5aca69046bcb413628e288427f1a6690d0862e07cd95694c8a8 diff --git a/dev-python/lit/lit-3.9.0.ebuild b/dev-python/lit/lit-3.9.0.ebuild new file mode 100644 index 00000000..6e832f5 --- /dev/null +++ b/dev-python/lit/lit-3.9.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +inherit distutils-r1 + +MY_P=llvm-${PV} +DESCRIPTION="A stand-alone install of the LLVM suite testing tool" +HOMEPAGE="http://llvm.org/" +SRC_URI="http://llvm.org/releases/${PV}/${MY_P}.src.tar.xz" +EGIT_REPO_URI="http://llvm.org/git/llvm.git + https://github.com/llvm-mirror/llvm.git" + +LICENSE="UoI-NCSA" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +S=${WORKDIR}/${MY_P}.src/utils/lit + +# Tests require 'FileCheck' and 'not' utilities (from llvm) +DEPEND=" + test? ( + dev-python/psutil[${PYTHON_USEDEP}] + sys-devel/llvm )" + +# TODO: move the manpage generation here (from sys-devel/llvm) + +python_test() { + ./lit.py -sv tests || die +}