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 635901396D0 for ; Sun, 24 Sep 2017 19:40:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCAF82BC029; Sun, 24 Sep 2017 19:40:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 9BD8C2BC029 for ; Sun, 24 Sep 2017 19:40:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 46B183416A1 for ; Sun, 24 Sep 2017 19:40:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A51079084 for ; Sun, 24 Sep 2017 19:40:13 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1506282009.a6fb7126f78de2fbd1cc2a3021fd82cd967a2a4d.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tsung/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/tsung/Manifest net-analyzer/tsung/tsung-1.7.0.ebuild X-VCS-Directories: net-analyzer/tsung/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: a6fb7126f78de2fbd1cc2a3021fd82cd967a2a4d X-VCS-Branch: master Date: Sun, 24 Sep 2017 19:40:13 +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: db8d2ee4-7d43-4343-91e1-d67edbfafdbc X-Archives-Hash: 3dc90068066d10e4bcb6c8d4e54b99c5 commit: a6fb7126f78de2fbd1cc2a3021fd82cd967a2a4d Author: Patrick Lauer gentoo org> AuthorDate: Sun Sep 24 19:38:34 2017 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Sep 24 19:40:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6fb7126 net-analyzer/tsung: Bump Package-Manager: Portage-2.3.10, Repoman-2.3.3 net-analyzer/tsung/Manifest | 1 + net-analyzer/tsung/tsung-1.7.0.ebuild | 38 +++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/net-analyzer/tsung/Manifest b/net-analyzer/tsung/Manifest index 193a1644a2e..fdf769f42fa 100644 --- a/net-analyzer/tsung/Manifest +++ b/net-analyzer/tsung/Manifest @@ -1 +1,2 @@ DIST tsung-1.6.0.tar.gz 1585794 SHA256 56846c3a90fd7037d9a76330cb8f3052238344491e2fe6ef1ebdb0b620eb3d84 SHA512 c66a84fc9b6781398ed4dee67f076fcddca28c5156782c05d6f5d7ce3e5e2ed6dbdb4076585f45a42aea65237b68aa08c8c80539706202a10cfec4e3ac8170cd WHIRLPOOL 3f083239c6c0950b6420dd7d401d0267f30655f5a3470f136326e6cc35414f779d58eb8e8aeac40eecb279976f5228369e5786e9df2b582e4ed75b45dc9fd35b +DIST tsung-1.7.0.tar.gz 1572265 SHA256 6394445860ef34faedf8c46da95a3cb206bc17301145bc920151107ffa2ce52a SHA512 67490a95fb54f5196ae0302190190a6b8e79bbeba9a7c1932d83a949504489d4cc3ce048380c0cb09c6cae4c1e203d52de9ea0e2f4e7c3d7438b836aef532dac WHIRLPOOL f9175aebcff944b13550a11d10cd20cae8a0a1afadf6b40ab30aad6b02894008db0b340ff48f32ef76c0856be9921c4fcf2d877120937d1fe1ab869efe36825c diff --git a/net-analyzer/tsung/tsung-1.7.0.ebuild b/net-analyzer/tsung/tsung-1.7.0.ebuild new file mode 100644 index 00000000000..d2d90fd44c2 --- /dev/null +++ b/net-analyzer/tsung/tsung-1.7.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +# Seems to be misconfigured +RESTRICT="test" + +inherit eutils + +DESCRIPTION="Erlang's multi-protocol distributed load testing tool" +HOMEPAGE="http://tsung.erlang-projects.org/" +SRC_URI="http://tsung.erlang-projects.org/dist/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnuplot" + +DEPEND="dev-lang/erlang" +RDEPEND=" + gnuplot? ( + sci-visualization/gnuplot + dev-perl/Template-Toolkit + ) + ${DEPEND} +" +src_configure() { + ./configure --prefix="/usr" || die "econf failed" +} + +src_compile() { + emake || die "Failed building" +} + +src_install() { + emake -j1 DESTDIR="${D}" install || die "Failed installing" +}