2007-11-28 01:23:22 +00:00
|
|
|
Name: libssh2
|
2011-09-08 09:14:41 +00:00
|
|
|
Version: 1.3.0
|
2012-01-13 08:29:01 +00:00
|
|
|
Release: 2%{?dist}
|
2007-11-28 01:23:22 +00:00
|
|
|
Summary: A library implementing the SSH2 protocol
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: BSD
|
2010-01-14 17:14:53 +00:00
|
|
|
URL: http://www.libssh2.org
|
2010-01-14 16:22:26 +00:00
|
|
|
Source0: http://libssh2.org/download/libssh2-%{version}.tar.gz
|
2007-11-28 01:23:22 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildRequires: openssl-devel
|
2010-01-14 16:22:26 +00:00
|
|
|
BuildRequires: zlib-devel
|
2007-11-28 01:23:22 +00:00
|
|
|
|
2010-01-19 06:18:57 +00:00
|
|
|
# tests
|
|
|
|
BuildRequires: openssh-server
|
|
|
|
|
2007-11-28 01:23:22 +00:00
|
|
|
%description
|
|
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
|
|
Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25),
|
|
|
|
SECSH-CONNECTION(23), SECSH-ARCH(20), SECSH-FILEXFER(06)*,
|
|
|
|
SECSH-DHGEX(04), and SECSH-NUMBERS(10).
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2010-01-20 17:44:18 +00:00
|
|
|
Requires: pkgconfig
|
2007-11-28 01:23:22 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
2010-01-14 16:22:26 +00:00
|
|
|
%package docs
|
2007-11-28 01:23:22 +00:00
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description docs
|
|
|
|
The %{name}-docs package contains man pages and examples for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
# make sure things are UTF-8...
|
|
|
|
for i in ChangeLog NEWS ; do
|
|
|
|
iconv --from=ISO-8859-1 --to=UTF-8 $i > new
|
|
|
|
mv new $i
|
|
|
|
done
|
|
|
|
|
2010-10-12 21:37:04 +00:00
|
|
|
# make it possible to launch OpenSSH server for testing purposes
|
|
|
|
chcon -t initrc_exec_t tests/ssh2.sh || :
|
|
|
|
chcon -Rt etc_t tests/etc || :
|
|
|
|
chcon -t sshd_key_t tests/etc/{host,user} || :
|
|
|
|
|
2007-11-28 01:23:22 +00:00
|
|
|
%build
|
|
|
|
%configure --disable-static --enable-shared
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
make install DESTDIR=%{buildroot} INSTALL="install -p"
|
2010-01-14 16:22:26 +00:00
|
|
|
find %{buildroot} -name '*.la' -exec rm -f {} +
|
2007-11-28 01:23:22 +00:00
|
|
|
|
|
|
|
# clean things up a bit for packaging
|
|
|
|
( cd example && make clean )
|
2010-03-13 05:15:12 +00:00
|
|
|
find example/ -type d -name .deps -exec rm -rf {} +
|
2007-11-28 01:23:22 +00:00
|
|
|
find example/ -type f '(' -name '*.am' -o -name '*.in' ')' -exec rm -v {} +
|
|
|
|
|
2010-10-12 21:37:04 +00:00
|
|
|
# avoid multilib conflict on libssh2-docs
|
|
|
|
mv -v example/Makefile example/Makefile.%{_arch}
|
|
|
|
|
2007-11-28 01:23:22 +00:00
|
|
|
%check
|
2010-01-19 06:18:57 +00:00
|
|
|
# sshd/loopback test fails under local build, with selinux enforcing
|
|
|
|
%{?_without_sshd_tests:echo "Skipping sshd tests" ; echo "exit 0" > tests/ssh2.sh }
|
2011-06-25 13:20:10 +00:00
|
|
|
# sshd/loopback test fails in the sparc buildsystem
|
|
|
|
%ifarch %{sparc}
|
|
|
|
echo "exit 0" > tests/ssh2.sh
|
|
|
|
%endif
|
2010-01-19 06:18:57 +00:00
|
|
|
(cd tests && make check)
|
2007-11-28 01:23:22 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS ChangeLog COPYING README NEWS
|
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files docs
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc COPYING HACKING example/
|
|
|
|
%{_mandir}/man?/*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2010-01-14 16:22:26 +00:00
|
|
|
%doc COPYING
|
2007-11-28 01:23:22 +00:00
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.so
|
2010-01-14 17:21:15 +00:00
|
|
|
%{_libdir}/pkgconfig/*
|
2007-11-28 01:23:22 +00:00
|
|
|
|
|
|
|
%changelog
|
2012-01-13 08:29:01 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-08 09:14:41 +00:00
|
|
|
* Thu Sep 08 2011 Kamil Dudka <kdudka@redhat.com> 1.3.0-1
|
|
|
|
- update to 1.3.0
|
|
|
|
|
2011-06-25 13:20:10 +00:00
|
|
|
* Sat Jun 25 2011 Dennis Gilmore <dennis@ausil.us> - 1.2.7-2
|
|
|
|
- sshd/loopback test fails in the sparc buildsystem
|
|
|
|
|
2010-10-12 21:37:04 +00:00
|
|
|
* Tue Oct 12 2010 Kamil Dudka <kdudka@redhat.com> 1.2.7-1
|
|
|
|
- update to 1.2.7 (#632916)
|
|
|
|
- avoid multilib conflict on libssh2-docs
|
|
|
|
- avoid build failure in mock with SELinux in the enforcing mode (#558964)
|
|
|
|
|
2010-03-13 05:15:12 +00:00
|
|
|
* Fri Mar 12 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.4-1
|
|
|
|
- update to 1.2.4
|
|
|
|
- drop old patch0
|
|
|
|
- be more aggressive about keeping .deps from intruding into -docs
|
|
|
|
|
2010-01-20 17:44:18 +00:00
|
|
|
* Wed Jan 20 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-5
|
|
|
|
- pkgconfig dep should be with -devel, not -docs
|
|
|
|
|
2010-01-19 06:18:57 +00:00
|
|
|
* Mon Jan 18 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-4
|
|
|
|
- enable tests; conditionalize sshd test, which fails with a funky SElinux
|
|
|
|
error when run locally
|
|
|
|
|
2010-01-19 05:34:11 +00:00
|
|
|
* Mon Jan 18 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-3
|
|
|
|
- patch w/1aba38cd7d2658146675ce1737e5090f879f306; not yet in a GA release
|
|
|
|
|
2010-01-14 17:21:15 +00:00
|
|
|
* Thu Jan 14 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-2
|
|
|
|
- correct bad file entry under -devel
|
|
|
|
|
2010-01-14 17:14:53 +00:00
|
|
|
* Thu Jan 14 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.2.2-1
|
|
|
|
- update to 1.2.2
|
|
|
|
- drop old patch now in upstream
|
|
|
|
- add new pkgconfig file to -devel
|
|
|
|
|
2009-09-22 03:56:35 +00:00
|
|
|
* Mon Sep 21 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.2-2
|
|
|
|
- patch based on 683aa0f6b52fb1014873c961709102b5006372fc
|
|
|
|
- disable tests (*sigh*)
|
|
|
|
|
|
|
|
* Tue Aug 25 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.2-1
|
|
|
|
- update to 1.2
|
|
|
|
|
2009-08-21 14:22:18 +00:00
|
|
|
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.0-4
|
|
|
|
- rebuilt with new openssl
|
|
|
|
|
2009-07-25 08:41:56 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 19:06:30 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-17 04:43:59 +00:00
|
|
|
* Mon Feb 16 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.0-1
|
|
|
|
- update to 1.0
|
|
|
|
|
2009-01-17 14:32:48 +00:00
|
|
|
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 0.18-8
|
|
|
|
- rebuild with new openssl
|
|
|
|
|
2008-02-18 23:06:21 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.18-7
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-12-05 17:46:05 +00:00
|
|
|
* Wed Dec 05 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-6
|
|
|
|
- rebuild for new openssl...
|
|
|
|
|
2007-11-28 01:25:14 +00:00
|
|
|
* Tue Nov 27 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-5
|
|
|
|
- bump
|
|
|
|
|
2007-11-28 01:23:22 +00:00
|
|
|
* Tue Nov 27 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-4
|
|
|
|
- add INSTALL arg to make install vs env. var
|
|
|
|
|
|
|
|
* Mon Nov 26 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-3
|
|
|
|
- run tests; don't package test
|
|
|
|
|
|
|
|
* Sun Nov 18 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-2
|
|
|
|
- split docs into -docs (they seemed... large.)
|
|
|
|
|
|
|
|
* Tue Nov 13 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.18-1
|
|
|
|
- update to 0.18
|
|
|
|
|
|
|
|
* Sun Oct 14 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.17-1
|
|
|
|
- update to 0.17
|
|
|
|
- many spec file changes
|
|
|
|
|
|
|
|
* Wed May 23 2007 Sindre Pedersen Bjørdal <foolish[AT]guezz.net> - 0.15-0.2.20070506
|
|
|
|
- Fix release tag
|
|
|
|
- Move manpages to -devel package
|
|
|
|
- Add Examples dir to -devel package
|
|
|
|
|
|
|
|
* Sun May 06 2007 Sindre Pedersen Bjørdal <foolish[AT]guezz.net> - 0.15-0.20070506.1
|
|
|
|
- Initial build
|