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 3C209139085 for ; Thu, 26 Jan 2017 19:01:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63F34141FC; Thu, 26 Jan 2017 19:01:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 43C0C141FC for ; Thu, 26 Jan 2017 19:01:40 +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 8369934163E for ; Thu, 26 Jan 2017 19:01:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2E07309E for ; Thu, 26 Jan 2017 19:01:37 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1485457279.ecabd5fedb55fabbed1ce071bdba30f4abb27d39.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kcov/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kcov/kcov-9999.ebuild X-VCS-Directories: dev-util/kcov/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: ecabd5fedb55fabbed1ce071bdba30f4abb27d39 X-VCS-Branch: master Date: Thu, 26 Jan 2017 19:01:37 +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: 1f155790-0c5b-4df0-a029-8ca87e55c952 X-Archives-Hash: f907bea40c4444f355ba504dc4458434 commit: ecabd5fedb55fabbed1ce071bdba30f4abb27d39 Author: Austin English gentoo org> AuthorDate: Thu Jan 26 18:57:05 2017 +0000 Commit: Austin English gentoo org> CommitDate: Thu Jan 26 19:01:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecabd5fe dev-util/kcov: add 9999 ebuild Package-Manager: Portage-2.3.2, Repoman-2.3.1 dev-util/kcov/kcov-9999.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-util/kcov/kcov-9999.ebuild b/dev-util/kcov/kcov-9999.ebuild new file mode 100644 index 00000000..b4cf68c --- /dev/null +++ b/dev-util/kcov/kcov-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Kcov is a code coverage tester for compiled languages, Python and Bash" +HOMEPAGE="https://github.com/SimonKagstrom/kcov" +LICENSE="GPL-2" +SLOT="0" + +if [ "${PV}" -eq 9999 ]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/SimonKagstrom/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/SimonKagstrom/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +RDEPEND=" + dev-libs/elfutils + net-misc/curl + sys-devel/binutils:* + sys-libs/zlib" +DEPEND="${RDEPEND}"