diff options
author | Colin Watson <cjwatson@debian.org> | 2011-01-24 12:43:25 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2011-01-24 12:43:25 +0000 |
commit | 626f1d986ff72aa514da63e34744e1de9cf21b9a (patch) | |
tree | d215a5280bc2e57251e4a9e08bfd3674ad824a94 /contrib/caldera/openssh.spec | |
parent | 6ed622cb6fe8f71bbe0d998cdd12280410bfb420 (diff) | |
parent | 0970072c89b079b022538e3c366fbfa2c53fc821 (diff) |
* New upstream release (http://www.openssh.org/txt/release-5.7):
- Implement Elliptic Curve Cryptography modes for key exchange (ECDH)
and host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA
offer better performance than plain DH and DSA at the same equivalent
symmetric key length, as well as much shorter keys.
- sftp(1)/sftp-server(8): add a protocol extension to support a hard
link operation. It is available through the "ln" command in the
client. The old "ln" behaviour of creating a symlink is available
using its "-s" option or through the preexisting "symlink" command.
- scp(1): Add a new -3 option to scp: Copies between two remote hosts
are transferred through the local host (closes: #508613).
- ssh(1): "atomically" create the listening mux socket by binding it on
a temporary name and then linking it into position after listen() has
succeeded. This allows the mux clients to determine that the server
socket is either ready or stale without races (closes: #454784).
Stale server sockets are now automatically removed (closes: #523250).
- ssh(1): install a SIGCHLD handler to reap expired child process
(closes: #594687).
- ssh(1)/ssh-agent(1): honour $TMPDIR for client xauth and ssh-agent
temporary directories (closes: #357469, although only if you arrange
for ssh-agent to actually see $TMPDIR since the setgid bit will cause
it to be stripped off).
Diffstat (limited to 'contrib/caldera/openssh.spec')
-rw-r--r-- | contrib/caldera/openssh.spec | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/contrib/caldera/openssh.spec b/contrib/caldera/openssh.spec index 515fe334d..23397b04d 100644 --- a/contrib/caldera/openssh.spec +++ b/contrib/caldera/openssh.spec | |||
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | #old cvs stuff. please update before use. may be deprecated. | 17 | #old cvs stuff. please update before use. may be deprecated. |
18 | %define use_stable 1 | 18 | %define use_stable 1 |
19 | %define version 5.6p1 | 19 | %define version 5.7p1 |
20 | %if %{use_stable} | 20 | %if %{use_stable} |
21 | %define cvs %{nil} | 21 | %define cvs %{nil} |
22 | %define release 1 | 22 | %define release 1 |
@@ -57,7 +57,7 @@ BuildRequires : XFree86-imake | |||
57 | # %{use_stable}==0: :pserver:cvs@bass.directhit.com:/cvs/openssh_cvs | 57 | # %{use_stable}==0: :pserver:cvs@bass.directhit.com:/cvs/openssh_cvs |
58 | Source0: see-above:/.../openssh-%{version}.tar.gz | 58 | Source0: see-above:/.../openssh-%{version}.tar.gz |
59 | %if %{use_stable} | 59 | %if %{use_stable} |
60 | Source1: see-above:/.../openssh-%{version}.tar.gz.sig | 60 | Source1: see-above:/.../openssh-%{version}.tar.gz.asc |
61 | %endif | 61 | %endif |
62 | Source2: http://www.jmknoble.net/software/%{xsa}/%{askpass}.tar.gz | 62 | Source2: http://www.jmknoble.net/software/%{xsa}/%{askpass}.tar.gz |
63 | Source3: http://www.openssh.com/faq.html | 63 | Source3: http://www.openssh.com/faq.html |
@@ -182,7 +182,7 @@ CFLAGS="$RPM_OPT_FLAGS" \ | |||
182 | --with-privsep-path=%{_var}/empty/sshd \ | 182 | --with-privsep-path=%{_var}/empty/sshd \ |
183 | #leave this line for easy edits. | 183 | #leave this line for easy edits. |
184 | 184 | ||
185 | %__make CFLAGS="$RPM_OPT_FLAGS" | 185 | %__make |
186 | 186 | ||
187 | cd %{askpass} | 187 | cd %{askpass} |
188 | %configure \ | 188 | %configure \ |
@@ -356,7 +356,11 @@ fi | |||
356 | 356 | ||
357 | 357 | ||
358 | %ChangeLog | 358 | %ChangeLog |
359 | * Tue Jan 18 2011 Tim Rice <tim@multitalents.net> | ||
360 | - Use CFLAGS from Makefile instead of RPM so build completes. | ||
361 | - Signatures were changed to .asc since 4.1p1. | ||
362 | |||
359 | * Mon Jan 01 1998 ... | 363 | * Mon Jan 01 1998 ... |
360 | Template Version: 1.31 | 364 | Template Version: 1.31 |
361 | 365 | ||
362 | $Id: openssh.spec,v 1.71 2010/08/08 16:32:09 djm Exp $ | 366 | $Id: openssh.spec,v 1.73 2011/01/22 09:23:33 djm Exp $ |