Update to version 0.8.1
This commit is contained in:
parent
1ba0c143b1
commit
d6b211ce72
2
.gitignore
vendored
2
.gitignore
vendored
@ -27,3 +27,5 @@ libssh-0.4.4.tar.gz.asc
|
||||
/libssh-0.7.5.tar.xz
|
||||
/libssh-0.8.0.tar.xz
|
||||
/libssh-0.8.0.tar.xz.asc
|
||||
/libssh-0.8.1.tar.xz
|
||||
/libssh-0.8.1.tar.xz.asc
|
||||
|
24
libssh.spec
24
libssh.spec
@ -1,5 +1,5 @@
|
||||
Name: libssh
|
||||
Version: 0.8.0
|
||||
Version: 0.8.1
|
||||
Release: 1%{?dist}
|
||||
Summary: A library implementing the SSH protocol
|
||||
License: LGPLv2+
|
||||
@ -56,9 +56,18 @@ popd
|
||||
%install
|
||||
make DESTDIR=%{buildroot} install/fast -C obj
|
||||
|
||||
## unpackaged files
|
||||
# static libs forced on using WITH_TESTING
|
||||
rm -fv %{buildroot}%{_libdir}/libssh.a
|
||||
#
|
||||
# Workaround for the removal of libssh_threads.so
|
||||
#
|
||||
# This will allow libraries which link against libssh_threads.so or packages
|
||||
# requiring it to continue working.
|
||||
#
|
||||
pushd %{buildroot}%{_libdir}
|
||||
for i in libssh.so.4*;
|
||||
do
|
||||
ln -s "${i}" "${i%libssh*}libssh_threads${i##*libssh}"
|
||||
done;
|
||||
popd
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
@ -71,6 +80,7 @@ popd
|
||||
%doc AUTHORS BSD ChangeLog README
|
||||
%license COPYING
|
||||
%{_libdir}/libssh.so.4*
|
||||
%{_libdir}/libssh_threads.so.4*
|
||||
|
||||
%files devel
|
||||
%doc obj/doc/html
|
||||
@ -82,6 +92,12 @@ popd
|
||||
%{_libdir}/libssh.so
|
||||
|
||||
%changelog
|
||||
* 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/
|
||||
- resolves: #1615248 - pkg-config --modversion
|
||||
- resolves: #1615132 - library initialization
|
||||
|
||||
* Fri Aug 10 2018 Andreas Schneider <asn@redhat.com> - 0.8.0-1
|
||||
- Update to version 0.8.0
|
||||
https://www.libssh.org/2018/08/10/libssh-0-8-0/
|
||||
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (libssh-0.8.0.tar.xz) = 63512871f77a3dee52ace4434844647d5715c08f7803e2ffee3b0aa1effe287452e7601df56f7628608d3d58b6cb48d5c909501457e7a3ead5414b7b260070f4
|
||||
SHA512 (libssh-0.8.0.tar.xz.asc) = e52fc20c5423f79ce120f743a831891e410f20d9ebdf2703a8643df69a643411e76e81d4c4d3cdb39930165ef6586d01233a30cf77db7b22b16cce6e5d8ef64e
|
||||
SHA512 (libssh-0.8.1.tar.xz) = 6630d0b101dc109116ba7a6cffb00db1bc9b5bc6004c843c5361d3d97c6cf4c323129ebf3bbf25ab2fc1961b74520490d7a16999504849c07b26a25679724b93
|
||||
SHA512 (libssh-0.8.1.tar.xz.asc) = 0549344fe547a2655507d2085a039310228ab225d697a35b54427625b69cb44c865ee105b66d0db0255dcde5bb8aa9abee80a9483cefff670db18fac34a9b8f3
|
||||
|
Loading…
Reference in New Issue
Block a user