Blame SPECS/libssh.spec

3ca3b4
Name:           libssh
b4bb98
Version:        0.9.6
a62de4
Release:        5%{?dist}
3ca3b4
Summary:        A library implementing the SSH protocol
3ca3b4
License:        LGPLv2+
3ca3b4
URL:            http://www.libssh.org
3ca3b4
3ca3b4
Source0:        https://www.libssh.org/files/0.9/%{name}-%{version}.tar.xz
3ca3b4
Source1:        https://www.libssh.org/files/0.9/%{name}-%{version}.tar.xz.asc
3ca3b4
Source2:        https://cryptomilk.org/gpgkey-8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D.gpg#/%{name}.keyring
3ca3b4
Source3:        libssh_client.config
3ca3b4
Source4:        libssh_server.config
3ca3b4
e9f2c7
Patch0:         loglevel.patch
e9f2c7
3ca3b4
BuildRequires:  cmake
3ca3b4
BuildRequires:  doxygen
3ca3b4
BuildRequires:  gcc-c++
3ca3b4
BuildRequires:  gnupg2
3ca3b4
BuildRequires:  openssl-devel
3ca3b4
BuildRequires:  pkgconfig
3ca3b4
BuildRequires:  zlib-devel
3ca3b4
BuildRequires:  krb5-devel
3ca3b4
BuildRequires:  libcmocka-devel
b4bb98
BuildRequires:  openssh-clients
b4bb98
BuildRequires:  openssh-server
b4bb98
BuildRequires:  pam_wrapper
b4bb98
BuildRequires:  socket_wrapper
b4bb98
BuildRequires:  nss_wrapper
b4bb98
BuildRequires:  uid_wrapper
b4bb98
BuildRequires:  nmap-ncat
3ca3b4
3ca3b4
Requires:       crypto-policies
3ca3b4
Requires:       %{name}-config = %{version}-%{release}
3ca3b4
3ca3b4
%ifarch aarch64 ppc64 ppc64le s390x x86_64
3ca3b4
Provides: libssh_threads.so()(64bit)
3ca3b4
Provides: libssh_threads.so.4()(64bit)
3ca3b4
%else
3ca3b4
Provides: libssh_threads.so
3ca3b4
Provides: libssh_threads.so.4
3ca3b4
%endif
3ca3b4
3ca3b4
%description
3ca3b4
The ssh library was designed to be used by programmers needing a working SSH
3ca3b4
implementation by the mean of a library. The complete control of the client is
3ca3b4
made by the programmer. With libssh, you can remotely execute programs, transfer
3ca3b4
files, use a secure and transparent tunnel for your remote programs. With its
3ca3b4
Secure FTP implementation, you can play with remote files easily, without
3ca3b4
third-party programs others than libcrypto (from openssl).
3ca3b4
3ca3b4
%package devel
3ca3b4
Summary:        Development files for %{name}
3ca3b4
Requires:       %{name}%{?_isa} = %{version}-%{release}
3ca3b4
3ca3b4
%description devel
3ca3b4
The %{name}-devel package contains libraries and header files for developing
3ca3b4
applications that use %{name}.
3ca3b4
3ca3b4
%package config
3ca3b4
Summary:        Configuration files for %{name}
3ca3b4
BuildArch:      noarch
3ca3b4
Obsoletes:      %{name} < 0.9.0-1
3ca3b4
3ca3b4
%description config
3ca3b4
The %{name}-config package provides the default configuration files for %{name}.
3ca3b4
3ca3b4
%prep
3ca3b4
gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
3ca3b4
%autosetup -p1
3ca3b4
3ca3b4
%build
3ca3b4
if test ! -e "obj"; then
3ca3b4
  mkdir obj
3ca3b4
fi
3ca3b4
pushd obj
3ca3b4
3ca3b4
%cmake .. \
3ca3b4
    -DUNIT_TESTING=ON \
3ca3b4
    -DGLOBAL_CLIENT_CONFIG="%{_sysconfdir}/libssh/libssh_client.config" \
3ca3b4
    -DGLOBAL_BIND_CONFIG="%{_sysconfdir}/libssh/libssh_server.config"
3ca3b4
3ca3b4
3ca3b4
%make_build VERBOSE=1
3ca3b4
make docs
3ca3b4
3ca3b4
popd
3ca3b4
3ca3b4
%install
3ca3b4
make DESTDIR=%{buildroot} install/fast -C obj
3ca3b4
install -d -m755 %{buildroot}%{_sysconfdir}/libssh
3ca3b4
install -m644 %{SOURCE3} %{buildroot}%{_sysconfdir}/libssh/libssh_client.config
3ca3b4
install -m644 %{SOURCE4} %{buildroot}%{_sysconfdir}/libssh/libssh_server.config
3ca3b4
3ca3b4
#
3ca3b4
# Workaround for the removal of libssh_threads.so
3ca3b4
#
3ca3b4
# This will allow libraries which link against libssh_threads.so or packages
3ca3b4
# requiring it to continue working.
3ca3b4
#
3ca3b4
pushd %{buildroot}%{_libdir}
3ca3b4
for i in libssh.so.4*;
3ca3b4
do
3ca3b4
    _target="${i}"
3ca3b4
    _link_name="${i%libssh*}libssh_threads${i##*libssh}"
3ca3b4
    if [ -L "${i}" ]; then
3ca3b4
        _target="$(readlink ${i})"
3ca3b4
    fi
3ca3b4
    ln -s "${_target}" "${_link_name}"
3ca3b4
done;
3ca3b4
popd
3ca3b4
3ca3b4
%ldconfig_scriptlets
3ca3b4
3ca3b4
%check
3ca3b4
pushd obj
3ca3b4
ctest --output-on-failure
3ca3b4
popd
3ca3b4
3ca3b4
%files
3ca3b4
%doc AUTHORS BSD ChangeLog README
3ca3b4
%license COPYING
3ca3b4
%{_libdir}/libssh.so.4*
3ca3b4
%{_libdir}/libssh_threads.so.4*
3ca3b4
3ca3b4
%files devel
3ca3b4
%doc obj/doc/html
3ca3b4
%{_includedir}/libssh/
3ca3b4
# own this to avoid dep on cmake -- rex
3ca3b4
%dir  %{_libdir}/cmake/
3ca3b4
%{_libdir}/cmake/libssh/
3ca3b4
%{_libdir}/pkgconfig/libssh.pc
3ca3b4
%{_libdir}/libssh.so
3ca3b4
3ca3b4
%files config
3ca3b4
%attr(0755,root,root) %dir %{_sysconfdir}/libssh
3ca3b4
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/libssh/libssh_client.config
3ca3b4
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/libssh/libssh_server.config
3ca3b4
3ca3b4
%changelog
a62de4
* Mon Dec 05 2022 Stanislav Zidek <szidek@redhat.com> - 0.9.6-5
a62de4
- Fix CI configuration for new TMT
a62de4
- Resolves: rhbz#2149910
a62de4
e9f2c7
* Mon Nov 28 2022 Norbert Pocs <npocs@redhat.com> - 0.9.6-4
e9f2c7
- Make VERBOSE and lower log levels less verbose
e9f2c7
- Resolves: rhbz#2091512
e9f2c7
b4bb98
* Fri Nov 05 2021 Norbert Pocs <npocs@redhat.com> - 0.9.6-3
b4bb98
- Remove STI tests
b4bb98
b4bb98
* Thu Oct 21 2021 Norbert Pocs <npocs@redhat.com> - 0.9.6-2
b4bb98
- Remove bad patch causing errors
b4bb98
- Adding BuildRequires for openssh (SSHD support)
b4bb98
b4bb98
* Thu Oct 14 2021 Norbert Pocs <npocs@redhat.com> - 0.9.6-1
b4bb98
- Fix CVE-2021-3634: Fix possible heap-buffer overflow when
b4bb98
  rekeying with different key exchange mechanism
b4bb98
- Rebase to version 0.9.6
b4bb98
- Rename SSHD_EXECUTABLE to SSH_EXECUTABLE in tests/torture.c
b4bb98
- Resolves: rhbz#1896651, rhbz#1994600
b4bb98
b4bb98
* Thu Oct 14 2021 Sahana Prasad <sahana@redhat.com> - 0.9.4-4
b4bb98
- Revert previous commit as it is incorrect.
b4bb98
b4bb98
* Thu Oct 14 2021 Norbert Pocs <npocs@redhat.com> - 0.9.6-1
b4bb98
- Fix CVE-2021-3634: Fix possible heap-buffer overflow when
b4bb98
  rekeying with different key exchange mechanism (#1978810)
b4bb98
872c22
* Wed Apr 21 2021 Sahana Prasad <sahana@redhat.com> - 0.9.4-3
872c22
- Fix CVE-2020-16135 NULL pointer dereference in sftpserver.c if
872c22
  ssh_buffer_new returns NULL (#1862646)
872c22
227ab1
* Wed Jun 24 2020 Anderson Sasaki <ansasaki@redhat.com> - 0.9.4-2
227ab1
- Do not return error when server properly closed the channel (#1849071)
227ab1
- Add a test for CVE-2019-14889
227ab1
- Do not parse configuration file in torture_knownhosts test
227ab1
3ca3b4
* Tue May 26 2020 Anderson Sasaki <ansasaki@redhat.com> - 0.9.4-1
3ca3b4
- Update to version 0.9.4
3ca3b4
  https://www.libssh.org/2020/04/09/libssh-0-9-4-and-libssh-0-8-9-security-release/
3ca3b4
- Fixed CVE-2019-14889 (#1781782)
3ca3b4
- Fixed CVE-2020-1730 (#1802422)
3ca3b4
- Create missing directories in the path provided for known_hosts files (#1733914)
3ca3b4
- Removed inclusion of OpenSSH server configuration file from
3ca3b4
  libssh_server.config (#1821339)
3ca3b4
3ca3b4
* Mon Aug 05 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-4
3ca3b4
- Skip 1024 bits RSA key generation test in FIPS mode (#1734485)
3ca3b4
3ca3b4
* Thu Jul 11 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-3
3ca3b4
- Add Obsoletes in libssh-config to avoid conflict with old libssh which
3ca3b4
  installed the configuration files.
3ca3b4
3ca3b4
* Wed Jul 10 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-2
3ca3b4
- Eliminate circular dependency with libssh-config subpackage
3ca3b4
3ca3b4
* Wed Jul 10 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-1
3ca3b4
- Update to version 0.9.0
3ca3b4
  https://www.libssh.org/2019/06/28/libssh-0-9-0/
3ca3b4
- Added explicit Requires for crypto-policies
3ca3b4
- Do not ignore known_hosts keys when SSH_OPTIONS_HOSTKEYS is set
3ca3b4
- Provide the configuration files in a separate libssh-config subpackage
3ca3b4
3ca3b4
* Mon Jun 17 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.91-0.1
3ca3b4
- Update to 0.9.0 pre release version (0.8.91)
3ca3b4
- Added default configuration files for client and server
3ca3b4
- Removed unused patch files left behind
3ca3b4
- Fixed issues found to run upstream test suite with SELinux
3ca3b4
3ca3b4
* Fri Dec 14 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.5-2
3ca3b4
- Fix more regressions introduced by the fixes for CVE-2018-10933
3ca3b4
3ca3b4
* Thu Nov 29 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.5-1
3ca3b4
- Update to version 0.8.5
3ca3b4
  * Fixed an issue where global known_hosts file was ignored (#1649321)
3ca3b4
  * Fixed ssh_get_fd() to return writable file descriptor (#1649319)
3ca3b4
  * Fixed regression introduced in known_hosts parsing (#1649315)
3ca3b4
  * Fixed a regression which caused only the first algorithm in known_hosts to
3ca3b4
    be considered (#1638790)
3ca3b4
3ca3b4
* Thu Nov 08 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-5
3ca3b4
- Fix regressions introduced by the fixes for CVE-2018-10933
3ca3b4
3ca3b4
* Wed Oct 17 2018 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.8.3-4
3ca3b4
- Fix for authentication bypass issue in server implementation (#1639926)
3ca3b4
3ca3b4
* Tue Oct 02 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-3
3ca3b4
- Fixed errors found by static code analysis (#1602594)
3ca3b4
3ca3b4
* Fri Sep 21 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-1
3ca3b4
- Update to version 0.8.3
3ca3b4
  * Added support for rsa-sha2 (#1610882)
3ca3b4
  * Added support to parse private keys in openssh container format (other than
3ca3b4
    ed25519) (#1622983)
3ca3b4
  * Added support for diffie-hellman-group18-sha512 and
3ca3b4
    diffie-hellman-group16-sha512 (#1610885)
3ca3b4
  * Added ssh_get_fingerprint_hash()
3ca3b4
  * Added ssh_pki_export_privkey_base64()
3ca3b4
  * Added support for Match keyword in config file
3ca3b4
  * Improved performance and reduced memory footprint for sftp
3ca3b4
  * Fixed ecdsa publickey auth
3ca3b4
  * Fixed reading a closed channel
3ca3b4
  * Added support to announce posix-rename@openssh.com and hardlink@openssh.com
3ca3b4
    in the sftp server
3ca3b4
  * Use -fstack-protector-strong if possible (#1624135)
3ca3b4
3ca3b4
* Wed Aug 15 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.1-4
3ca3b4
- Fix the creation of symbolic links for libssh_threads.so.4
3ca3b4
3ca3b4
* Wed Aug 15 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.1-3
3ca3b4
- Add missing Provides for libssh_threads.so.4
3ca3b4
3ca3b4
* Tue Aug 14 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.1-2
3ca3b4
- Add Provides for libssh_threads.so to unbreak applications
3ca3b4
- Fix ABIMap detection to not depend on python to build
3ca3b4
3ca3b4
* Mon Aug 13 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-1
3ca3b4
- Update to version 0.8.1
3ca3b4
  https://www.libssh.org/2018/08/13/libssh-0-8-1/
3ca3b4
3ca3b4
* Fri Aug 10 2018 Andreas Schneider <asn@redhat.com> - 0.8.0-1
3ca3b4
- Update to version 0.8.0
3ca3b4
  https://www.libssh.org/2018/08/10/libssh-0-8-0/
3ca3b4
3ca3b4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-9
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3ca3b4
3ca3b4
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.7.5-8
3ca3b4
- BR: gcc-c++, use %%make_build
3ca3b4
3ca3b4
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-7
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3ca3b4
- Related: bug#1614611
3ca3b4
3ca3b4
* Thu Feb 01 2018 Andreas Schneider <asn@redhat.com> - 0.7.5-6
3ca3b4
- resolves: #1540021 - Build against OpenSSL 1.1
3ca3b4
3ca3b4
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-5
3ca3b4
- Switch to %%ldconfig_scriptlets
3ca3b4
3ca3b4
* Fri Dec 29 2017 Andreas Schneider <asn@redhat.com> - 0.7.5-4
3ca3b4
- Fix parsing ssh_config
3ca3b4
3ca3b4
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-3
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3ca3b4
3ca3b4
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-2
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3ca3b4
3ca3b4
* Wed Apr 26 2017 Peter Robinson <pbrobinson@fedoraproject.org> 0.7.5-1
3ca3b4
- Update to version 0.7.5
3ca3b4
3ca3b4
* Sat Mar 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.7.4-2
3ca3b4
- BR: compat-openssl10-devel (f26+, #1423088)
3ca3b4
- use %%license
3ca3b4
- -devel: drop hardcoded pkgconfig dep (let autodeps handle it)
3ca3b4
- %%files: track library sonames, simplify -devel
3ca3b4
- %%install: use 'install/fast' target
3ca3b4
- .spec cosmetics, drop deprecated %%clean section
3ca3b4
3ca3b4
* Wed Feb 08 2017 Andreas Schneider <asn@redhat.com> - 0.7.4-1
3ca3b4
- Update to version 0.7.4
3ca3b4
  * Added id_ed25519 to the default identity list
3ca3b4
  * Fixed sftp EOF packet handling
3ca3b4
  * Fixed ssh_send_banner() to confirm with RFC 4253
3ca3b4
  * Fixed some memory leaks
3ca3b4
- resolves: #1419007
3ca3b4
3ca3b4
* Wed Feb 24 2016 Andreas Schneider <asn@redhat.com> - 0.7.3-1
3ca3b4
- resolves: #1311259 - Fix CVE-2016-0739
3ca3b4
- resolves: #1311332 - Update to version 0.7.3
3ca3b4
  * Fixed CVE-2016-0739
3ca3b4
  * Fixed ssh-agent on big endian
3ca3b4
  * Fixed some documentation issues
3ca3b4
- Enabled GSSAPI support
3ca3b4
3ca3b4
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.2-3
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3ca3b4
3ca3b4
* Thu Oct 22 2015 Andreas Schneider <asn@redhat.com> - 0.7.2-2
3ca3b4
- resolves: #1271230 - Fix ssh-agent support on big endian
3ca3b4
3ca3b4
* Wed Sep 30 2015 Andreas Schneider <asn@redhat.com> - 0.7.2-1
3ca3b4
- Update to version 0.7.2
3ca3b4
  * Fixed OpenSSL detection on Windows
3ca3b4
  * Fixed return status for ssh_userauth_agent()
3ca3b4
  * Fixed KEX to prefer hmac-sha2-256
3ca3b4
  * Fixed sftp packet handling
3ca3b4
  * Fixed return values of ssh_key_is_(public|private)
3ca3b4
  * Fixed bug in global success reply
3ca3b4
- resolves: #1267346
3ca3b4
3ca3b4
* Tue Jun 30 2015 Andreas Schneider <asn@redhat.com> - 0.7.1-1
3ca3b4
- Update to version 0.7.1
3ca3b4
  * Fixed SSH_AUTH_PARTIAL auth with auto public key
3ca3b4
  * Fixed memory leak in session options
3ca3b4
  * Fixed allocation of ed25519 public keys
3ca3b4
  * Fixed channel exit-status and exit-signal
3ca3b4
  * Reintroduce ssh_forward_listen()
3ca3b4
3ca3b4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-3
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3ca3b4
3ca3b4
* Thu May 21 2015 Orion Poplawski <orion@cora.nwra.com> - 0.7.0-2
3ca3b4
- Add patch to fix undefined symbol: ssh_forward_listen (bug #1221310)
3ca3b4
3ca3b4
* Mon May 11 2015 Andreas Schneider <asn@redhat.com> - 0.7.0-1
3ca3b4
- Update to version 0.7.0
3ca3b4
  * Added support for ed25519 keys
3ca3b4
  * Added SHA2 algorithms for HMAC
3ca3b4
  * Added improved and more secure buffer handling code
3ca3b4
  * Added callback for auth_none_function
3ca3b4
  * Added support for ECDSA private key signing
3ca3b4
  * Added more tests
3ca3b4
  * Fixed a lot of bugs
3ca3b4
  * Improved API documentation
3ca3b4
3ca3b4
* Thu Apr 30 2015 Andreas Schneider <asn@redhat.com> - 0.6.5-1
3ca3b4
- resolves: #1213775 - Security fix for CVE-2015-3146
3ca3b4
- resolves: #1218076 - Security fix for CVE-2015-3146
3ca3b4
3ca3b4
* Fri Dec 19 2014 - Andreas Schneider <asn@redhat.com> - 0.6.4-1
3ca3b4
- Security fix for CVE-2014-8132.
3ca3b4
3ca3b4
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-3
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3ca3b4
3ca3b4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-2
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3ca3b4
3ca3b4
* Tue Mar 04 2014 - Andreas Schneider <asn@redhat.com> - 0.6.3-1
3ca3b4
- Fix CVE-2014-0017.
3ca3b4
3ca3b4
* Mon Feb 10 2014 - Andreas Schneider <asn@redhat.com> - 0.6.1-1
3ca3b4
- Update to version 0.6.1.
3ca3b4
- resolves: #1056757 - Fix scp mode.
3ca3b4
- resolves: #1053305 - Fix known_hosts heuristic.
3ca3b4
3ca3b4
* Wed Jan 08 2014 - Andreas Schneider <asn@redhat.com> - 0.6.0-1
3ca3b4
- Update to 0.6.0
3ca3b4
3ca3b4
* Fri Jul 26 2013 - Andreas Schneider <asn@redhat.com> - 0.5.5-1
3ca3b4
- Update to 0.5.5.
3ca3b4
- Clenup the spec file.
3ca3b4
3ca3b4
* Thu Jul 18 2013 Simone Caronni <negativo17@gmail.com> - 0.5.4-5
3ca3b4
- Add EPEL 5 support.
3ca3b4
- Add Debian patches to enable Doxygen documentation.
3ca3b4
3ca3b4
* Tue Jul 16 2013 Simone Caronni <negativo17@gmail.com> - 0.5.4-4
3ca3b4
- Add patch for #982685.
3ca3b4
3ca3b4
* Mon Jun 10 2013 Simone Caronni <negativo17@gmail.com> - 0.5.4-3
3ca3b4
- Clean up SPEC file and fix rpmlint complaints.
3ca3b4
3ca3b4
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-2
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3ca3b4
3ca3b4
* Wed Jan 23 2013 Petr Lautrbach <plautrba@redhat.com> 0.5.4-1
3ca3b4
- update to security 0.5.4 release
3ca3b4
- CVE-2013-0176 (#894407)
3ca3b4
3ca3b4
* Tue Nov 20 2012 Petr Lautrbach <plautrba@redhat.com> 0.5.3-1
3ca3b4
- update to security 0.5.3 release (#878465)
3ca3b4
3ca3b4
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-2
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3ca3b4
3ca3b4
* Thu Feb 02 2012 Petr Lautrbach <plautrba@redhat.com> 0.5.2-1
3ca3b4
- update to 0.5.2 version (#730270)
3ca3b4
3ca3b4
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-2
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3ca3b4
3ca3b4
* Wed Jun  1 2011 Jan F. Chadima <jchadima@redhat.com> - 0.5.0-1
3ca3b4
- bounce versionn to 0.5.0 (#709785)
3ca3b4
- the support for protocol v1 is disabled
3ca3b4
3ca3b4
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.8-2
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3ca3b4
3ca3b4
* Wed Jan 19 2011 Jan F. Chadima <jchadima@redhat.com> - 0.4.8-1
3ca3b4
- bounce versionn to 0.4.8 (#670456)
3ca3b4
3ca3b4
* Mon Sep  6 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.6-1
3ca3b4
- bounce versionn to 0.4.6 (#630602)
3ca3b4
3ca3b4
* Thu Jun  3 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.4-1
3ca3b4
- bounce versionn to 0.4.4 (#598592)
3ca3b4
3ca3b4
* Wed May 19 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.3-1
3ca3b4
- bounce versionn to 0.4.3 (#593288)
3ca3b4
3ca3b4
* Tue Mar 16 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.2-1
3ca3b4
- bounce versionn to 0.4.2 (#573972)
3ca3b4
3ca3b4
* Tue Feb 16 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.1-1
3ca3b4
- bounce versionn to 0.4.1 (#565870)
3ca3b4
3ca3b4
* Fri Dec 11 2009 Jan F. Chadima <jchadima@redhat.com> - 0.4.0-1
3ca3b4
- bounce versionn to 0.4.0 (#541010)
3ca3b4
3ca3b4
* Thu Nov 26 2009 Jan F. Chadima <jchadima@redhat.com> - 0.3.92-2
3ca3b4
- typo in spec file
3ca3b4
3ca3b4
* Thu Nov 26 2009 Jan F. Chadima <jchadima@redhat.com> - 0.3.92-1
3ca3b4
- bounce versionn to 0.3.92 (0.4 beta2) (#541010)
3ca3b4
3ca3b4
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.2-4
3ca3b4
- rebuilt with new openssl
3ca3b4
3ca3b4
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
3ca3b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3ca3b4
3ca3b4
* Tue Jun 02 2009 Jan F. Chadima <jchadima@redhat.com> - 0.2-2
3ca3b4
- Small changes during review
3ca3b4
3ca3b4
* Mon Jun 01 2009 Jan F. Chadima <jchadima@redhat.com> - 0.2-1
3ca3b4
- Initial build
3ca3b4