diff options
author | Gustavo Felisberto <humpback@gentoo.org> | 2007-10-10 13:51:28 +0000 |
---|---|---|
committer | Gustavo Felisberto <humpback@gentoo.org> | 2007-10-10 13:51:28 +0000 |
commit | 4659a2af32ba0e392bf838d0cf3c54f6dadbbc7b (patch) | |
tree | 1c74c2be8ec6dced7318c1b2f146ded388272810 /net-misc | |
parent | added local flags: cblas for sci-libs/gsl, int64 for sci-libs/mkl, server for... (diff) | |
download | gentoo-2-4659a2af32ba0e392bf838d0cf3c54f6dadbbc7b.tar.gz gentoo-2-4659a2af32ba0e392bf838d0cf3c54f6dadbbc7b.tar.bz2 gentoo-2-4659a2af32ba0e392bf838d0cf3c54f6dadbbc7b.zip |
new revision that fixes #168584
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/ssh/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/ssh/files/digest-ssh-3.2.9.1-r2 (renamed from net-misc/ssh/files/digest-ssh-3.2.9.1-r1) | 0 | ||||
-rw-r--r-- | net-misc/ssh/files/sshfilexfers.diff | 21 | ||||
-rw-r--r-- | net-misc/ssh/ssh-3.2.9.1-r2.ebuild (renamed from net-misc/ssh/ssh-3.2.9.1-r1.ebuild) | 6 |
4 files changed, 32 insertions, 3 deletions
diff --git a/net-misc/ssh/ChangeLog b/net-misc/ssh/ChangeLog index d1b3bc15f54a..832ad1fe5415 100644 --- a/net-misc/ssh/ChangeLog +++ b/net-misc/ssh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/ssh # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ssh/ChangeLog,v 1.15 2007/07/22 08:14:11 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ssh/ChangeLog,v 1.16 2007/10/10 13:51:28 humpback Exp $ + +*ssh-3.2.9.1-r2 (10 Oct 2007) + + 10 Oct 2007; Gustavo Felisberto <humpback@gentoo.org> + +files/sshfilexfers.diff, -ssh-3.2.9.1-r1.ebuild, +ssh-3.2.9.1-r2.ebuild: + Removed older version and added new revision that fixes #168584. 22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; ssh-3.2.9.1-r1.ebuild: diff --git a/net-misc/ssh/files/digest-ssh-3.2.9.1-r1 b/net-misc/ssh/files/digest-ssh-3.2.9.1-r2 index a642df21236c..a642df21236c 100644 --- a/net-misc/ssh/files/digest-ssh-3.2.9.1-r1 +++ b/net-misc/ssh/files/digest-ssh-3.2.9.1-r2 diff --git a/net-misc/ssh/files/sshfilexfers.diff b/net-misc/ssh/files/sshfilexfers.diff new file mode 100644 index 000000000000..cb6133c7bebf --- /dev/null +++ b/net-misc/ssh/files/sshfilexfers.diff @@ -0,0 +1,21 @@ +--- lib/sshfilexfer/sshfilexfers.c.orig 2003-12-03 15:17:22.000000000 +0200 ++++ lib/sshfilexfer/sshfilexfers.c 2006-02-22 10:44:25.000000000 +0200 +@@ -5,7 +5,7 @@ + Authors: Tatu Ylonen <ylo@ssh.com> + Sami Lehtinen <sjl@ssh.com> + +- Copyright (c) 1998-2001 SSH Communications Security Corp, Finland ++ Copyright (c) 1998-2001, 2006 SSH Communications Security Corp, Finland + All rights reserved + + Generic file transfer module, server side. +@@ -115,7 +115,8 @@ + if (server->log_facility >= 0) \ + { \ + char *msg = ssh_debug_format varcall; \ +- ssh_log_event(det_fac(category, server->log_facility), severity, msg); \ ++ ssh_log_event(det_fac(category, server->log_facility), severity, \ ++ "%s", msg); \ + ssh_xfree(msg); \ + } \ + } while (0) diff --git a/net-misc/ssh/ssh-3.2.9.1-r1.ebuild b/net-misc/ssh/ssh-3.2.9.1-r2.ebuild index 17ac058a7044..82b5dbef4646 100644 --- a/net-misc/ssh/ssh-3.2.9.1-r1.ebuild +++ b/net-misc/ssh/ssh-3.2.9.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ssh/ssh-3.2.9.1-r1.ebuild,v 1.5 2007/07/22 08:14:11 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ssh/ssh-3.2.9.1-r2.ebuild,v 1.1 2007/10/10 13:51:28 humpback Exp $ inherit eutils pam @@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.ssh.com/pub/ssh/${P}.tar.gz" LICENSE="ssh" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" IUSE="X ipv6 crypt openssh" RDEPEND="X? ( x11-libs/libSM @@ -29,6 +29,8 @@ src_unpack() { unpack ${A} cd "${WORKDIR}" epatch "${FILESDIR}"/patch-readline.diff + cd "${S}" + epatch "${FILESDIR}"/sshfilexfers.diff } src_compile() { |