Accepting request 36827 from network:synchronization:files
Copy from network:synchronization:files/libssh based on submit request 36827 from user jmcdough OBS-URL: https://build.opensuse.org/request/show/36827 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libssh?expand=0&rev=10
This commit is contained in:
parent
44eecad548
commit
467a207bea
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:72df16f0b5ede081a388278ce50785e68dc7395f608ed13cf37ffa3d5e112041
|
||||
size 192122
|
3
libssh-0.4.2.tar.bz2
Normal file
3
libssh-0.4.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ccbf1ae436caa04cfc3a43c544e92c2285257132b5306a8361e66365162f8c5
|
||||
size 185270
|
@ -1,8 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 25 15:47:54 UTC 2009 - tittiatcoke@gmail.com
|
||||
Mon Mar 15 19:40:44 CET 2010 - anschneider@exsuse.de
|
||||
|
||||
- Update to version 0.3.92 (0.4 RC2)
|
||||
* Added pcap dumping support.
|
||||
- Update to version 0.4.2
|
||||
* Added owner and group information in sftp attributes.
|
||||
* Added missing SSH_OPTIONS_FD option.
|
||||
* Added printout of owner and group in the sftp example.
|
||||
* Added a prepend function for ssh_list.
|
||||
* Added send back replies to openssh's keepalives.
|
||||
* Fixed documentation in scp code
|
||||
* Fixed longname parsing, this only workings with readdir.
|
||||
* Fixed and added support for several identity files.
|
||||
* Fixed sftp_parse_longname() on Windows.
|
||||
* Fixed a race condition bug in ssh_scp_close()
|
||||
* Remove config support for SSHv1 Cipher variable.
|
||||
* Rename ssh_list_add to ssh_list_append.
|
||||
* Rename ssh_list_get_head to ssh_list_pop_head
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 15 12:41:47 CET 2010 - anschneider@exsuse.de
|
||||
|
||||
- Fixed Requires.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 13 15:29:14 CET 2010 - anschneider@exsuse.de
|
||||
|
||||
- Update to version 0.4.1
|
||||
* Added support for aes128-ctr, aes192-ctr and aes256-ctr encryption.
|
||||
* Added an example for exec.
|
||||
* Added private key type detection feature in privatekey_from_file().
|
||||
* Fixed zlib compression fallback.
|
||||
* Fixed kex bug that client preference should be prioritary
|
||||
* Fixed known_hosts file set by the user.
|
||||
* Fixed a memleak in channel_accept().
|
||||
* Fixed underflow when leave_function() are unbalanced
|
||||
* Fixed memory corruption in handle_channel_request_open().
|
||||
* Fixed closing of a file handle case of errors in privatekey_from_file().
|
||||
* Fixed ssh_get_user_home_dir() to be thread safe.
|
||||
* Fixed the doxygen documentation.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 10 23:43:19 CET 2009 - anschneider@exsuse.de
|
||||
|
||||
- Update to version 0.4.0
|
||||
* Added scp support.
|
||||
* Added support for sending signals (RFC 4254, section 6.9).
|
||||
* Added MSVC support.
|
||||
@ -17,7 +56,6 @@ Wed Nov 25 15:47:54 UTC 2009 - tittiatcoke@gmail.com
|
||||
* Added full poll() support and poll-emulation for win32.
|
||||
* Added missing 64bit functions in sftp.
|
||||
* Added support for ~/ and SSH_DIR/ in filenames instead of %s/.
|
||||
* Added more examples.
|
||||
* Fixed Fix channel_get_exit_status bug.
|
||||
* Fixed calltrace logging to make it optional.
|
||||
* Fixed compilation on Solaris.
|
||||
@ -25,7 +63,6 @@ Wed Nov 25 15:47:54 UTC 2009 - tittiatcoke@gmail.com
|
||||
* Fixed libssh compilation without server support.
|
||||
* Fixed possible memory corruptions (ticket #14).
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 14 10:20:52 CEST 2009 - anschneider@exsuse.de
|
||||
|
||||
|
17
libssh.spec
17
libssh.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libssh (Version 0.3.92)
|
||||
# spec file for package libssh (Version 0.4.2)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -21,14 +21,14 @@ Url: http://www.libssh.org
|
||||
|
||||
Name: libssh
|
||||
BuildRequires: cmake doxygen openssl-devel
|
||||
License: LGPL v2.1 or later
|
||||
License: LGPLv2.1+
|
||||
Group: System/Libraries
|
||||
Version: 0.3.92
|
||||
Version: 0.4.2
|
||||
Release: 1
|
||||
Summary: SSH library
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%define debug_package_requires libssh3 = %{version}-%{release}
|
||||
%define debug_package_requires libssh4 = %{version}-%{release}
|
||||
|
||||
%description
|
||||
The ssh library was designed to be used by programmers needing a
|
||||
@ -52,7 +52,7 @@ Authors:
|
||||
Nick Zitzmann <seiryu@comcast.net>
|
||||
|
||||
%package -n libssh4
|
||||
License: LGPL v2.1 or later
|
||||
License: LGPLv2.1+
|
||||
Group: System/Libraries
|
||||
Summary: SSH library
|
||||
|
||||
@ -78,7 +78,7 @@ Authors:
|
||||
Nick Zitzmann <seiryu@comcast.net>
|
||||
|
||||
%package devel
|
||||
License: LGPL v2.1 or later
|
||||
License: LGPLv2.1+
|
||||
Group: Development/Libraries/C and C++
|
||||
Summary: SSH library development headers
|
||||
Requires: libssh4 = %{version}
|
||||
@ -95,7 +95,7 @@ Authors:
|
||||
Nick Zitzmann <seiryu@comcast.net>
|
||||
|
||||
%package devel-doc
|
||||
License: LGPL v2.1 or later
|
||||
License: LGPLv2.1+
|
||||
Group: Development/Languages/C and C++
|
||||
Summary: SSH library api documentation
|
||||
|
||||
@ -127,6 +127,7 @@ cmake \
|
||||
-DLIB_SUFFIX=64 \
|
||||
%endif
|
||||
%{_builddir}/%{name}-%{version}
|
||||
|
||||
%__make %{?jobs:-j%jobs} VERBOSE=1
|
||||
%__make doc
|
||||
popd build
|
||||
|
Loading…
Reference in New Issue
Block a user