diff options
author | Peter Volkov <pva@gentoo.org> | 2011-08-03 22:32:00 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2011-08-03 22:32:00 +0000 |
commit | 3827c0f38a54c9104b1940a4236147123f6d4827 (patch) | |
tree | f0d40fc4944adb5443477b4dca56f4437f462e1e /net-analyzer | |
parent | Version bump, security bug #377623. (diff) | |
download | gentoo-2-3827c0f38a54c9104b1940a4236147123f6d4827.tar.gz gentoo-2-3827c0f38a54c9104b1940a4236147123f6d4827.tar.bz2 gentoo-2-3827c0f38a54c9104b1940a4236147123f6d4827.zip |
Version bump.
(Portage version: 2.1.10.10/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/httping/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/httping/files/httping-1.5.1-bind.patch | 21 | ||||
-rw-r--r-- | net-analyzer/httping/httping-1.5.1-r1.ebuild | 41 | ||||
-rw-r--r-- | net-analyzer/httping/httping-1.5.2.ebuild (renamed from net-analyzer/httping/httping-1.5.1.ebuild) | 2 |
4 files changed, 9 insertions, 64 deletions
diff --git a/net-analyzer/httping/ChangeLog b/net-analyzer/httping/ChangeLog index 6a6884ec8f50..02079544ffc9 100644 --- a/net-analyzer/httping/ChangeLog +++ b/net-analyzer/httping/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/httping # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.69 2011/08/03 11:27:32 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.70 2011/08/03 22:31:59 pva Exp $ + +*httping-1.5.2 (03 Aug 2011) + + 03 Aug 2011; Peter Volkov <pva@gentoo.org> -httping-1.5.1.ebuild, + -httping-1.5.1-r1.ebuild, -files/httping-1.5.1-bind.patch, + +httping-1.5.2.ebuild: + Version bump. *httping-1.5.1-r1 (03 Aug 2011) diff --git a/net-analyzer/httping/files/httping-1.5.1-bind.patch b/net-analyzer/httping/files/httping-1.5.1-bind.patch deleted file mode 100644 index f7f7cc73f09d..000000000000 --- a/net-analyzer/httping/files/httping-1.5.1-bind.patch +++ /dev/null @@ -1,21 +0,0 @@ -Patch from upstream developer Folkert van Heusden, to fix bind (-y) issue. -https://bugs.gentoo.org/show_bug.cgi?id=367537 - ---- httping-1.5.1/main.c 2011-07-27 23:33:34.000000000 +0400 -+++ httping-1.5.1/main.c 2011-08-01 09:30:11.000000000 +0400 -@@ -350,6 +350,7 @@ - { - bind_to = (struct sockaddr_in *)&bind_to_6; - memset(&bind_to_6, 0x00, sizeof(bind_to_6)); -+ bind_to_6.sin6_family = AF_INET6; - - if (inet_pton(AF_INET6, optarg, &(bind_to_6.sin6_addr)) != 1) - { -@@ -360,6 +361,7 @@ - { - bind_to = (struct sockaddr_in *)&bind_to_4; - memset(&bind_to_4, 0x00, sizeof(bind_to_4)); -+ bind_to_4.sin_family = AF_INET; - - if (inet_pton(AF_INET, optarg, &(bind_to_4.sin_addr)) != 1) - { diff --git a/net-analyzer/httping/httping-1.5.1-r1.ebuild b/net-analyzer/httping/httping-1.5.1-r1.ebuild deleted file mode 100644 index 8b8e70d01fb0..000000000000 --- a/net-analyzer/httping/httping-1.5.1-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.5.1-r1.ebuild,v 1.1 2011/08/03 11:27:32 pva Exp $ - -EAPI="4" - -inherit eutils flag-o-matic toolchain-funcs - -MY_P="${P/_beta1/beta}" - -DESCRIPTION="http protocol ping-like program" -HOMEPAGE="http://www.vanheusden.com/httping/" -SRC_URI="http://www.vanheusden.com/${PN}/${MY_P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="debug ssl" - -RDEPEND=">=sys-libs/ncurses-5 - ssl? ( dev-libs/openssl )" -DEPEND="${RDEPEND}" - -S="${WORKDIR}"/${MY_P} - -src_prepare() { - epatch ${FILESDIR}/${P}-bind.patch -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - $(use ssl && echo SSL=yes || echo SSL=no) \ - $(use debug && echo DEBUG=yes || echo DEBUG=no) -} - -src_install() { - dobin httping - doman httping.1 - dodoc readme.txt -} diff --git a/net-analyzer/httping/httping-1.5.1.ebuild b/net-analyzer/httping/httping-1.5.2.ebuild index 63aa21d2808e..c6a8365e8cda 100644 --- a/net-analyzer/httping/httping-1.5.1.ebuild +++ b/net-analyzer/httping/httping-1.5.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.5.1.ebuild,v 1.1 2011/07/28 07:09:46 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.5.2.ebuild,v 1.1 2011/08/03 22:31:59 pva Exp $ EAPI="4" |