Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/creduce/
Date: Wed, 02 Nov 2016 23:01:45
Message-Id: 1478127694.8a9eb917978e35cb5d5e4456e411fc8c7a73c02a.mgorny@gentoo
1 commit: 8a9eb917978e35cb5d5e4456e411fc8c7a73c02a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 22:27:28 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 23:01:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a9eb917
7
8 dev-util/creduce: Add a live ebuild
9
10 dev-util/creduce/creduce-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++
11 1 file changed, 38 insertions(+)
12
13 diff --git a/dev-util/creduce/creduce-9999.ebuild b/dev-util/creduce/creduce-9999.ebuild
14 new file mode 100644
15 index 00000000..16015dd
16 --- /dev/null
17 +++ b/dev-util/creduce/creduce-9999.ebuild
18 @@ -0,0 +1,38 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="6"
24 +
25 +EGIT_REPO_URI="https://github.com/csmith-project/creduce
26 + git://github.com/csmith-project/creduce"
27 +
28 +inherit autotools git-r3
29 +
30 +DESCRIPTION="C-Reduce - a plugin-based C program reducer"
31 +HOMEPAGE="http://embed.cs.utah.edu/creduce/"
32 +SRC_URI=""
33 +
34 +LICENSE="creduce"
35 +SLOT="0"
36 +KEYWORDS=""
37 +IUSE=""
38 +
39 +COMMON_DEPEND="
40 + >=dev-lang/perl-5.10.0
41 + >=sys-devel/clang-3.9:="
42 +RDEPEND="${COMMON_DEPEND}
43 + dev-perl/Benchmark-Timer
44 + dev-perl/Exporter-Lite
45 + dev-perl/File-Which
46 + dev-perl/Getopt-Tabular
47 + dev-perl/Regexp-Common
48 + dev-perl/Sys-CPU
49 + dev-util/astyle
50 + dev-util/indent"
51 +DEPEND="${COMMON_DEPEND}"
52 +
53 +src_prepare() {
54 + default
55 + eautoreconf
56 +}