123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
- %define srcname paramiko
- Name: python-paramiko
- Version: 1.7.6
- Release: 3%{?_dist_release}
- Summary: A SSH2 protocol library for python
- Summary(ja): python 用 SSH2 プロトコルライブラリ
- Group: Development/Libraries
- # No version specified.
- License: LGPLv2+
- URL: http://www.lag.net/paramiko/
- Source0: http://www.lag.net/paramiko/download/%{srcname}-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: python-setuptools
- BuildRequires: python-devel
- Requires: python-crypto >= 1.9
- %description
- Paramiko (a combination of the esperanto words for "paranoid" and "friend") is
- a module for python 2.3 or greater that implements the SSH2 protocol for secure
- (encrypted and authenticated) connections to remote machines. Unlike SSL (aka
- TLS), the SSH2 protocol does not require heirarchical certificates signed by a
- powerful central authority. You may know SSH2 as the protocol that replaced
- telnet and rsh for secure access to remote shells, but the protocol also
- includes the ability to open arbitrary channels to remote services across an
- encrypted tunnel. (This is how sftp works, for example.)
- %prep
- %setup -q -n %{srcname}-%{version}
- %{__chmod} a-x demos/*
- %{__sed} -i -e '/^#!/,1d' demos/* paramiko/rng*
- %build
- CFLAGS="$RPM_OPT_FLAGS" %{__python} -c 'import setuptools; execfile("setup.py")' build
- %install
- rm -rf $RPM_BUILD_ROOT
- %{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root %{buildroot}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %doc LICENSE PKG-INFO README docs/ demos/
- %{python_sitelib}/*
- %changelog
- * Tue Feb 02 2010 Shu KONNO <owa@bg.wakwak.com> 1.7.6-3
- - rebuild with python-2.6
- * Thu Nov 5 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.7.6-2
- - added BuildRequires: python-devel
- * Tue Nov 3 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.7.6-1
- - new upstream release
- * Wed Jul 29 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.7.5-1
- - initial build for VineSeed
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.4-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Mon Feb 16 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.4-4
- - Add demos as documentation. BZ#485742
- * Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.7.4-3
- - Rebuild for Python 2.6
- * Wed Sep 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.7.4-2
- - fix license tag
- * Sun Jul 6 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.4-1
- - Update to 1.7.4
- * Mon Mar 24 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.3-1
- - Update to 1.7.3.
- * Tue Jan 22 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.2-1
- - Update to 1.7.2.
- - Remove upstreamed patch.
- * Mon Jan 14 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-3
- - Update to latest Python packaging guidelines.
- - Apply patch that fixes insecure use of RandomPool.
- * Thu Jul 19 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-2
- - Bump rev
- * Thu Jul 19 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-1
- - Update to 1.7.1
- * Sat Dec 09 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 1.6.4-1
- - Update to 1.6.4
- - Upstream is now shipping tarballs
- - Bump for python 2.5 in devel
- * Mon Oct 9 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.2-1
- - Update to 1.6.2
- * Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> 1.6.1-3
- - Rebuild for FC6
- * Fri Aug 11 2006 Shahms E. King <shahms@shahms.com> 1.6.1-2
- - Include, don't ghost .pyo files per new guidelines
- * Tue Aug 08 2006 Shahms E. King <shahms@shahms.com> 1.6.1-1
- - Update to new upstream version
- * Fri Jun 02 2006 Shahms E. King <shahms@shahms.com> 1.6-1
- - Update to new upstream version
- - ghost the .pyo files
- * Fri May 05 2006 Shahms E. King <shahms@shahms.com> 1.5.4-2
- - Fix source line and rebuild
- * Fri May 05 2006 Shahms E. King <shahms@shahms.com> 1.5.4-1
- - Update to new upstream version
- * Wed Apr 12 2006 Shahms E. King <shahms@shahms.com> 1.5.3-1
- - Initial package
|