Accepting request 81084 from network:synchronization:files
- Build with OPENSSL_LOAD_CONF so we respect user's choice of which "openssl engine" to use for crypto (aes-ni,intel-accel) (forwarded request 81044 from elvigia) OBS-URL: https://build.opensuse.org/request/show/81084 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libssh?expand=0&rev=19
This commit is contained in:
parent
4f5f8fe42a
commit
efa891377e
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:88285ac57c5484c7502be4288186d1fe7b35b6b842826f8d92e7e97e241d07dd
|
|
||||||
size 234827
|
|
3
libssh-0.5.1.tar.bz2
Normal file
3
libssh-0.5.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3da3635742cf8dda08677d0397b64bc87ebdb69fdf9a2081c08045825a368f16
|
||||||
|
size 235773
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 6 03:36:48 UTC 2011 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- Build with OPENSSL_LOAD_CONF so we respect user's choice
|
||||||
|
of which "openssl engine" to use for crypto (aes-ni,intel-accel)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 9 15:12:39 UTC 2011 - asn@cryptomilk.org
|
||||||
|
|
||||||
|
- Update to version 0.5.1
|
||||||
|
* Added checks for NULL pointers in string.c.
|
||||||
|
* Set the channel max packet size to 32768.
|
||||||
|
* Don't (de)compress empty buffers.
|
||||||
|
* Fixed ssh_scp_write so it works when doing recursive copy.
|
||||||
|
* Fixed another source of endless wait.
|
||||||
|
* Fixed an endless loop in case of a channel_open error.
|
||||||
|
* Fixed session timeout handling.
|
||||||
|
* Fixed ssh_channel_from_local() loop.
|
||||||
|
* Fixed permissions of scp example when we copy a file.
|
||||||
|
* Workaround ssh_get_user_home_dir on LDAP users.
|
||||||
|
* Added pkg-config support for libssh_threads.
|
||||||
|
* Fixed compilation without server and sftp modes.
|
||||||
|
* Fix static .lib overwriting on Windows.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 31 14:32:09 UTC 2011 - asn@cryptomilk.org
|
Tue May 31 14:32:09 UTC 2011 - asn@cryptomilk.org
|
||||||
|
|
||||||
|
25
libssh.spec
25
libssh.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libssh
|
# spec file for package libssh (Version 0.4.7)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -23,8 +23,8 @@ Name: libssh
|
|||||||
BuildRequires: cmake doxygen gcc-c++ openssl-devel
|
BuildRequires: cmake doxygen gcc-c++ openssl-devel
|
||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Version: 0.5.0
|
Version: 0.5.1
|
||||||
Release: 1
|
Release: 0
|
||||||
Summary: SSH library
|
Summary: SSH library
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -119,7 +119,7 @@ if test ! -e "build"; then
|
|||||||
fi
|
fi
|
||||||
pushd build
|
pushd build
|
||||||
cmake \
|
cmake \
|
||||||
-DCMAKE_C_FLAGS:STRING="%{optflags}" \
|
-DCMAKE_C_FLAGS:STRING="%{optflags} -DOPENSSL_LOAD_CONF" \
|
||||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||||
-DCMAKE_SKIP_RPATH=ON \
|
-DCMAKE_SKIP_RPATH=ON \
|
||||||
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
||||||
@ -162,9 +162,24 @@ popd build
|
|||||||
%{_libdir}/libssh.so
|
%{_libdir}/libssh.so
|
||||||
%{_libdir}/libssh_threads.so
|
%{_libdir}/libssh_threads.so
|
||||||
%{_libdir}/pkgconfig/libssh.pc
|
%{_libdir}/pkgconfig/libssh.pc
|
||||||
|
%{_libdir}/pkgconfig/libssh_threads.pc
|
||||||
|
|
||||||
%files devel-doc
|
%files devel-doc
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc build/doc/html
|
%doc build/doc/html
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 07 2008 aj@suse.de
|
||||||
|
- Disable parallel build since it breaks the build.
|
||||||
|
* Tue Sep 30 2008 ro@suse.de
|
||||||
|
- add rpmlintrc (desired package name is already taken by another
|
||||||
|
package)
|
||||||
|
* Tue Sep 30 2008 ro@suse.de
|
||||||
|
- fix debug package requires
|
||||||
|
* Tue Sep 30 2008 ro@suse.de
|
||||||
|
- fixed filelist
|
||||||
|
* Thu Aug 21 2008 anschneider@suse.de
|
||||||
|
- Map the permissions field to the type field for sftp v3.
|
||||||
|
- Add errno mapping for sftp functions
|
||||||
|
* Wed Aug 20 2008 anschneider@suse.de
|
||||||
|
- initial libssh2 package
|
||||||
|
Loading…
Reference in New Issue
Block a user