Compare commits

...

11 Commits
master ... f29

Author SHA1 Message Date
Anderson Toshiyuki Sasaki 5efc946926 Update to libssh-0.8.7 2019-02-25 11:42:55 +01:00
Anderson Toshiyuki Sasaki c75ab28b54 Fix rsa-sha2 extension handling
Related: #1666342
2019-01-16 15:41:19 +01:00
Anderson Toshiyuki Sasaki f96fbfb53b Update to libssh-0.8.6 2019-01-04 14:33:24 +01:00
Andreas Schneider bb319e48eb Update to libssh-0.8.5 2018-10-29 12:43:59 +01:00
Andreas Schneider 6831537349 Update to version 0.8.4
Fixes CVE-2018-10933
2018-10-16 15:14:47 +02:00
Anderson Toshiyuki Sasaki 6921879de8 Fixed errors found by static code analysis 2018-10-01 18:26:05 +02:00
Anderson Toshiyuki Sasaki 8608d3c503 Add missing libssh_threads.so link to libssh-devel 2018-09-27 15:31:11 +02:00
Andreas Schneider 7e80b32388 Update to version 0.8.3 2018-09-21 11:03:24 +02:00
Andreas Schneider 86d85e84c0 Update to version 0.8.2 2018-08-30 10:09:52 +02:00
Andreas Schneider f90a8004db Fix link creation or RPM doesn't install it 2018-08-16 16:18:22 +02:00
Andreas Schneider 062452ed81 Add missing so version for libssh_threads.so.4 2018-08-16 16:18:21 +02:00
3 changed files with 68 additions and 10 deletions

12
.gitignore vendored
View File

@ -29,3 +29,15 @@ libssh-0.4.4.tar.gz.asc
/libssh-0.8.0.tar.xz.asc
/libssh-0.8.1.tar.xz
/libssh-0.8.1.tar.xz.asc
/libssh-0.8.2.tar.xz
/libssh-0.8.2.tar.xz.asc
/libssh-0.8.3.tar.xz
/libssh-0.8.3.tar.xz.asc
/libssh-0.8.4.tar.xz
/libssh-0.8.4.tar.xz.asc
/libssh-0.8.5.tar.xz
/libssh-0.8.5.tar.xz.asc
/libssh-0.8.6.tar.xz
/libssh-0.8.6.tar.xz.asc
/libssh-0.8.7.tar.xz
/libssh-0.8.7.tar.xz.asc

View File

@ -1,6 +1,6 @@
Name: libssh
Version: 0.8.1
Release: 2%{?dist}
Version: 0.8.7
Release: 1%{?dist}
Summary: A library implementing the SSH protocol
License: LGPLv2+
URL: http://www.libssh.org
@ -20,9 +20,9 @@ BuildRequires: krb5-devel
BuildRequires: libcmocka-devel
%ifarch aarch64 ppc64 ppc64le s390x x86_64
Provides: libssh_threads.so()(64bit)
Provides: libssh_threads.so.4()(64bit)
%else
Provides: libssh_threads.so
Provides: libssh_threads.so.4
%endif
%description
@ -55,7 +55,7 @@ pushd obj
-DUNIT_TESTING=ON
%make_build VERBOSE=1
make doc
make docs
popd
@ -69,9 +69,14 @@ make DESTDIR=%{buildroot} install/fast -C obj
# requiring it to continue working.
#
pushd %{buildroot}%{_libdir}
for i in libssh.so.4*;
for i in libssh.so*;
do
ln -s "${i}" "${i%libssh*}libssh_threads${i##*libssh}"
_target="${i}"
_link_name="${i%libssh*}libssh_threads${i##*libssh}"
if [ -L "${i}" ]; then
_target="$(readlink ${i})"
fi
ln -s "${_target}" "${_link_name}"
done;
popd
@ -96,14 +101,55 @@ popd
%{_libdir}/cmake/libssh/
%{_libdir}/pkgconfig/libssh.pc
%{_libdir}/libssh.so
%{_libdir}/libssh_threads.so
%changelog
* Mon Feb 25 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.7-1
- Update to version 0.8.7
https://www.libssh.org/2019/02/25/libssh-0-8-7/
* Tue Jan 15 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.6-2
- Fix rsa-sha2 extension handling (#1666342)
* Thu Jan 03 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.6-1
- Update to version 0.8.6
https://www.libssh.org/2018/12/24/libssh-0-8-6-xmas-edition/
* Mon Oct 29 2018 Andreas Schneider <asn@redhat.com> - 0.8.5-1
- Update to version 0.8.5
https://www.libssh.org/2018/10/29/libssh-0-8-5-and-libssh-0-7-7/
* Tue Oct 16 2018 Andreas Schneider <asn@redhat.com> - 0.8.4-1
- Update to version 0.8.4
https://www.libssh.org/2018/10/16/libssh-0-8-4-and-0-7-6-security-and-bugfix-release
- Fixes CVE-2018-10933
* Mon Oct 01 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-3
- Fixed errors found by static code analysis
* Tue Sep 25 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-2
- Add missing libssh_threads.so link to libssh-devel package
* Fri Sep 21 2018 Andreas Schneider <asn@redhat.com> - 0.8.3-1
- Update to version 0.8.3
https://www.libssh.org/2018/09/21/libssh-0-8-3/
* Thu Aug 30 2018 Andreas Schneider <asn@redhat.com> - 0.8.2-1
- Update to version 0.8.2
https://www.libssh.org/2018/08/30/libssh-0-8-2
* Thu Aug 16 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-4
- Fix link creation or RPM doesn't install it
* Wed Aug 15 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-3
- Add missing so version for libssh_threads.so.4
* Tue Aug 14 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-2
- Add Provides for libssh_threads.so to unbreak applications
* Mon Aug 13 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-1
- Update to version 0.8.1
https://www.libssh.org/2018/08/13/libssh-0-8-1/
https://www.libssh.org/2018/08/13/libssh-0-8-1
- resolves: #1615248 - pkg-config --modversion
- resolves: #1615132 - library initialization

View File

@ -1,2 +1,2 @@
SHA512 (libssh-0.8.1.tar.xz) = 6630d0b101dc109116ba7a6cffb00db1bc9b5bc6004c843c5361d3d97c6cf4c323129ebf3bbf25ab2fc1961b74520490d7a16999504849c07b26a25679724b93
SHA512 (libssh-0.8.1.tar.xz.asc) = 0549344fe547a2655507d2085a039310228ab225d697a35b54427625b69cb44c865ee105b66d0db0255dcde5bb8aa9abee80a9483cefff670db18fac34a9b8f3
SHA512 (libssh-0.8.7.tar.xz) = 13c3dccad81d521edf29c8a5e2c5f7fdd90507a0eda652b2b040a0a17bab88860873e089a46e181907ea3f449ca1847b1c84453b1960f456e391eefe5be983c5
SHA512 (libssh-0.8.7.tar.xz.asc) = c7c33fba67216d429269d8fe0353eb85e0e4bc6848d006cb349720ecf7bf1699da495098b0d5441aaef057fe0fda0c5cb0cf95d3834f5ef7e57de90919793b3f