e461438f7a
- Update to version 1.2.9 * Added libssh2_session_set_timeout() and libssh2_session_get_timeout() to make blocking calls get a timeout * userauth_keyboard_interactive: fix buffer overflow OBS-URL: https://build.opensuse.org/request/show/79178 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libssh2_org?expand=0&rev=23
106 lines
3.0 KiB
RPMSpec
106 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package libssh2_org (Version 1.2.7)
|
|
#
|
|
# 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
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Summary: A library implementing the SSH2 protocol
|
|
|
|
Name: libssh2_org
|
|
Version: 1.2.9
|
|
Release: 1
|
|
License: BSD3c
|
|
Url: http://www.libssh2.org/
|
|
%define pkg_name libssh2
|
|
Group: Development/Libraries/C and C++
|
|
Source: http://heanet.dl.sourceforge.net/sourceforge/libssh2/%{pkg_name}-%{version}.tar.bz2
|
|
Source2: baselibs.conf
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: zlib-devel
|
|
#for the test suite
|
|
BuildRequires: openssh
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION,
|
|
SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and
|
|
SECSH-PUBLICKEY.
|
|
|
|
%define debug_package_requires libssh2-1 = %{version}-%{release}
|
|
|
|
%package -n libssh2-1
|
|
License: BSD3c
|
|
Summary: A library implementing the SSH2 protocol
|
|
Group: Development/Libraries/C and C++
|
|
|
|
%description -n libssh2-1
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION,
|
|
SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and
|
|
SECSH-PUBLICKEY.
|
|
|
|
%package -n libssh2-devel
|
|
License: BSD3c
|
|
Summary: A library implementing the SSH2 protocol
|
|
Group: Development/Libraries/C and C++
|
|
Requires: glibc-devel
|
|
Requires: libssh2-1 = %{version}
|
|
|
|
%description -n libssh2-devel
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION,
|
|
SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and
|
|
SECSH-PUBLICKEY.
|
|
|
|
%prep
|
|
%setup -q -n %{pkg_name}-%{version}
|
|
|
|
%build
|
|
%configure --enable-hidden-symbols \
|
|
--disable-static --with-pic \
|
|
--disable-rpath --with-libz=%{_prefix} \
|
|
--with-openssl=%{_prefix}
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install DESTDIR=%{buildroot}
|
|
rm -f %{buildroot}%{_libdir}/*.la
|
|
|
|
%check
|
|
make check
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%post -n libssh2-1 -p /sbin/ldconfig
|
|
|
|
%postun -n libssh2-1 -p /sbin/ldconfig
|
|
|
|
%files -n libssh2-1
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libssh2.so.1*
|
|
|
|
%files -n libssh2-devel
|
|
%defattr(-,root,root)
|
|
%doc NEWS
|
|
%{_libdir}/libssh2.so
|
|
%{_includedir}/*.h
|
|
%{_mandir}/man3/*
|
|
%{_libdir}/pkgconfig/libssh2.pc
|
|
|
|
%changelog
|