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 6643A1382C5 for ; Thu, 4 Jan 2018 10:37:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2096E07EE; Thu, 4 Jan 2018 10:37:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 813FBE07EE for ; Thu, 4 Jan 2018 10:37:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B4A7B335C0C for ; Thu, 4 Jan 2018 10:37:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7938A199 for ; Thu, 4 Jan 2018 10:37:33 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1515062240.158f19e4ea24315601e245376031c7aa3edaa2f7.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/trinity/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/trinity/Manifest dev-util/trinity/trinity-1.8.ebuild X-VCS-Directories: dev-util/trinity/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 158f19e4ea24315601e245376031c7aa3edaa2f7 X-VCS-Branch: master Date: Thu, 4 Jan 2018 10:37:33 +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: f662e5d3-1d6c-4b93-8ae1-ab8857d9eb0f X-Archives-Hash: 8b69ab40bb0b670113ba3319ace6625b commit: 158f19e4ea24315601e245376031c7aa3edaa2f7 Author: Pacho Ramos gentoo org> AuthorDate: Thu Jan 4 10:34:20 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Jan 4 10:37:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=158f19e4 dev-util/trinity: Version bump Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-util/trinity/Manifest | 1 + dev-util/trinity/trinity-1.8.ebuild | 41 +++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/dev-util/trinity/Manifest b/dev-util/trinity/Manifest index 5e658d2441c..8e0ae95bb9f 100644 --- a/dev-util/trinity/Manifest +++ b/dev-util/trinity/Manifest @@ -1 +1,2 @@ DIST trinity-1.7.tar.xz 195488 BLAKE2B a2efd5fa2dd9ae40e943d96b2ae9232e292bb5cd41a350813a137a5910cf308a06d4e0b1be37e2ab8dc6325443101b6d956a593a778d9a7128e086ebbf6f2b61 SHA512 bb702ec79494591e04c74279e39d6dd0c5779f7cb2696c306c94bee3a8aefb524e369674daadf02f70b58dbb19ad5699d2c331bc4c9089046d2214403a95ba87 +DIST trinity-1.8.tar.xz 213984 BLAKE2B 56f664023e2bc3648e941e4a3cb20e450cdcad3556289e201513d1755267eb013da2be035e81c87b3f1d1b0b1e12cb041c6bb345f7a84ee4c5c12f20a8e87f55 SHA512 686076dab2346cf9b5d8a20b14db31f460a352fa72eeadbe005a7423941918f5afef08b4987bb68cbbf4218d0cb620adb85f8036294d8df5ab5262e0031a44e4 diff --git a/dev-util/trinity/trinity-1.8.ebuild b/dev-util/trinity/trinity-1.8.ebuild new file mode 100644 index 00000000000..1072988366e --- /dev/null +++ b/dev-util/trinity/trinity-1.8.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="A Linux system call fuzz tester" +HOMEPAGE="http://codemonkey.org.uk/projects/trinity/" +SRC_URI="http://codemonkey.org.uk/projects/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +# We need newer headers to avoid compilation failures in the BPF stuff. +DEPEND="app-arch/xz-utils + >=sys-kernel/linux-headers-4.8 +" + +src_configure() { + tc-export CC + default +} + +src_compile() { + # Enable a verbose (i.e. not quiet) build. + emake V=1 +} + +src_install() { + dobin "${PN}" + dodoc Documentation/* + einstalldocs + + if use examples ; then + exeinto "/usr/share/doc/${PF}/scripts" + doexe scripts/* + docompress -x "/usr/share/doc/${PF}/scripts" + fi +}