forked from pool/python-paramiko
Accepting request 515893 from home:tbechtold:branches:devel:languages:python
- update to 2.2.1: * Missed a spot * Update .travis.yml * Whitespace * Having this in a mini-toctree made the nav look funny and is also just unintuitive * Changelog re #471, re #65 * these are bytes * changelog: update for #990 and #993 * ecdh kex support * flake8/whitespace * Trailing comma * Add test for posix-rename@openssh.com extension for SFTP client * Changelog re #921 * Add a note about new Python-level deps to changelog re: Ed25519 support * Add method for "posix-rename@openssh.com" extension for SFTP client. * Add IOError in posix-rename@openssh.com test for python 2 support. * this isnt bytes * Added a auth_timeout to handle situations where SSH server stops responding during auth. * small cleanups * More changelog flimflammery * Added changelog entry * python 3 compatibility * Incorrect comparison, should be <= * DDD re #857 * Improve __hash__ functions * Hrm that should always have been an h1 * No idea how this got past all the earlier flake8 work... * comments * Fixed test to support python 2.6 * Note ecdh-sha2 preferred-kex placement in changelog entry for #951, re #983 OBS-URL: https://build.opensuse.org/request/show/515893 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-paramiko?expand=0&rev=64
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-paramiko
|
||||
Version: 2.1.3
|
||||
Version: 2.2.1
|
||||
Release: 0
|
||||
Url: http://www.paramiko.org/
|
||||
Summary: SSH2 protocol library
|
||||
@@ -28,15 +28,20 @@ License: LGPL-2.1+
|
||||
Group: Development/Languages/Python
|
||||
Source: https://files.pythonhosted.org/packages/source/p/paramiko/paramiko-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: %{python_module PyNaCl >= 1.0.1}
|
||||
BuildRequires: %{python_module bcrypt >= 3.1.3}
|
||||
BuildRequires: %{python_module cryptography >= 1.1}
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module pyasn1 >= 0.1.7}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-PyNaCl >= 1.0.1
|
||||
Requires: python-bcrypt >= 3.1.3
|
||||
Requires: python-cryptography >= 1.1
|
||||
Requires: python-pyasn1 >= 0.1.7
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -45,8 +50,23 @@ Emphasis is on using SSH2 as an alternative to SSL for making secure
|
||||
connections between python scripts. All major ciphers and hash methods
|
||||
are supported. SFTP client and server mode are both supported too.
|
||||
|
||||
%package -n python-paramiko-doc
|
||||
Summary: Documentation for %{name}
|
||||
Group: Documentation/Other
|
||||
Provides: %{python_module paramiko-doc = %{version}}
|
||||
|
||||
%description -n python-paramiko-doc
|
||||
This is a library for making SSH2 connections (client or server).
|
||||
Emphasis is on using SSH2 as an alternative to SSL for making secure
|
||||
connections between python scripts. All major ciphers and hash methods
|
||||
are supported. SFTP client and server mode are both supported too.
|
||||
|
||||
This package contains the documentation.
|
||||
|
||||
%prep
|
||||
%setup -q -n paramiko-%{version}
|
||||
# Fix non-executable script rpmlint issue:
|
||||
find demos -name "*.py" -exec sed -i "/#\!\/usr\/bin\/.*/d" {} \;
|
||||
|
||||
%build
|
||||
%python_build
|
||||
@@ -64,7 +84,9 @@ export LANG=en_US.UTF-8
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root)
|
||||
%doc LICENSE README.rst
|
||||
%doc demos/
|
||||
%{python_sitelib}/*
|
||||
|
||||
%files -n python-paramiko-doc
|
||||
%doc LICENSE demos/
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user