forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST creduce-2.4.0.tar.gz 677706 SHA256 0b4c5184b7bdc369a476c0eb4d41f1618f66e82d7ebeafa9492c0355ce63ed35 SHA512 75a603a8e2a967edfd12f9423f08b716a292f75e72ce770b083f4f9458510c3aaa16a91102c75f0ca098d08bb898fde998cae81e17c680dab330164fcffb5b33 WHIRLPOOL 676d20f68ff540abaeb7d64adf4fdfba7d2b164832481029b8a2cc0d95fe55d407ec7ffd7e5a85117cb3194264a70ecb79dbc95b7d5ddf1d62b901fcc6124a6a | ||
DIST creduce-2.5.0.tar.gz 742516 SHA256 2dcd784e1d27df60f4ea1d92c4c556c02da4152db353d544dce8b7813fa443e4 SHA512 5292381ddf5e2b061bcfb1a3f52cd25cab3ab5985faade7c779c41be19b5cf7309fbcfff1428f026bfcee5da7c6f898b0b8fa48d03ef83acd64000c3ece2189d WHIRLPOOL b73c5f091caa697de9bba5f069e33b796a9a02efe5c5e3c0536ba94f9e454270d1750c93a27a953ac58ff6e8fd816f78b60205a01b24dd4140e927b6e1a33e33 | ||
DIST creduce-2.6.0.tar.gz 763886 SHA256 cdacc1046ca3ae2b0777b8f235428e7976b0fb97c2f69979c8accd8d2cc0c55d SHA512 e2a08127d2aea29b6934792eff4ff0d9f10952ca520671c60ef4b24a48522b19c48336d4b9d0b8e8c633dd8832b2a56d3d0daa311478e474e974c60a0ae381f1 WHIRLPOOL 882065bed157f441df9628a9e691f69c47495ba54b43580d7c5eb442d7ba58e65d674655ee8e013203adfab581b49f973e3ada3147d3e4b9fb707572b49be652 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="6" | ||
|
||
: ${CMAKE_MAKEFILE_GENERATOR=ninja} | ||
inherit cmake-utils | ||
|
||
DESCRIPTION="C-Reduce - a plugin-based C program reducer" | ||
HOMEPAGE="http://embed.cs.utah.edu/creduce/" | ||
SRC_URI="http://embed.cs.utah.edu/creduce/${P}.tar.gz" | ||
|
||
LICENSE="creduce" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
COMMON_DEPEND=" | ||
>=dev-lang/perl-5.10.0 | ||
>=sys-devel/clang-3.9:=" | ||
RDEPEND="${COMMON_DEPEND} | ||
dev-perl/Benchmark-Timer | ||
dev-perl/Exporter-Lite | ||
dev-perl/File-Which | ||
dev-perl/Getopt-Tabular | ||
dev-perl/Regexp-Common | ||
dev-perl/Sys-CPU | ||
dev-util/astyle | ||
dev-util/indent" | ||
DEPEND="${COMMON_DEPEND}" |