From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3CC481381F3 for ; Thu, 9 May 2013 17:39:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B009EE07FA; Thu, 9 May 2013 17:39:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30FBEE07FA for ; Thu, 9 May 2013 17:39:52 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EDD133DE9F for ; Thu, 9 May 2013 17:39:51 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2274) id 14AE42171D; Thu, 9 May 2013 17:39:49 +0000 (UTC) From: "Tim Harder (radhermit)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, radhermit@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/httping: ChangeLog httping-2.3.1.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog httping-2.3.1.ebuild X-VCS-Directories: net-analyzer/httping X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130509173950.14AE42171D@flycatcher.gentoo.org> Date: Thu, 9 May 2013 17:39:49 +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: e69fd616-959a-4524-a07e-e00e9d4e080a X-Archives-Hash: a6b848337ee2a8c7a8e8232ede9bf488 radhermit 13/05/09 17:39:49 Modified: ChangeLog Added: httping-2.3.1.ebuild Log: Version bump. (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3) Revision Changes Path 1.102 net-analyzer/httping/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.102&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?rev=1.102&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/ChangeLog?r1=1.101&r2=1.102 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v retrieving revision 1.101 retrieving revision 1.102 diff -u -r1.101 -r1.102 --- ChangeLog 7 May 2013 14:45:54 -0000 1.101 +++ ChangeLog 9 May 2013 17:39:49 -0000 1.102 @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/httping # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.101 2013/05/07 14:45:54 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.102 2013/05/09 17:39:49 radhermit Exp $ + +*httping-2.3.1 (09 May 2013) + + 09 May 2013; Tim Harder +httping-2.3.1.ebuild: + Version bump. *httping-2.3 (07 May 2013) 1.1 net-analyzer/httping/httping-2.3.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/httping/httping-2.3.1.ebuild?rev=1.1&content-type=text/plain Index: httping-2.3.1.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.3.1.ebuild,v 1.1 2013/05/09 17:39:49 radhermit Exp $ EAPI=5 inherit eutils toolchain-funcs DESCRIPTION="http protocol ping-like program" HOMEPAGE="http://www.vanheusden.com/httping/" SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="debug fftw ncurses ssl tfo" RDEPEND=" fftw? ( sci-libs/fftw:3.0 ) ncurses? ( >=sys-libs/ncurses-5 ) ssl? ( dev-libs/openssl ) " DEPEND="${RDEPEND}" # This would bring in test? ( dev-util/cppcheck ) but unlike # upstream we should only care about compile/run time testing RESTRICT="test" src_prepare() { epatch "${FILESDIR}"/${PN}-2.2.1-flags.patch } src_configure() { # not an autotools script echo > makefile.inc || die } src_compile() { emake \ CC="$(tc-getCC)" \ FW=$(usex fftw) \ DEBUG=$(usex debug) \ NC=$(usex ncurses) \ SSL=$(usex ssl) \ TFO=$(usex tfo) } src_install() { dobin httping doman httping.1 }