Accepting request 703087 from Cloud:OpenStack:Factory

- update to v0.6.4:
  * Use os.path.expanduser() on paths read from ssh_config.
  * Proxycommand can be a list. Identityfile already performs ~ expansion in
  * Enhance Alcatel-Lucent -support
- add sphinx-use-imgmath-extension.patch

OBS-URL: https://build.opensuse.org/request/show/703087
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-ncclient?expand=0&rev=9
This commit is contained in:
Dominique Leuenberger 2019-05-15 10:35:29 +00:00 committed by Git OBS Bridge
parent 72c0262227
commit 34e1b56c3c
5 changed files with 30 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3ab58ee0d71069cb5b0e2f29a4e605d1d8417bd10af45b73ee3e817fe389fadc
size 88022

3
ncclient-0.6.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:47d5af7398f16d609eebd02be2ecbd997b364032b5dc6d4927c810ea24f39080
size 88691

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Apr 10 06:59:10 UTC 2019 - Dirk Mueller <dmueller@suse.com>
- update to v0.6.4:
* Use os.path.expanduser() on paths read from ssh_config.
* Proxycommand can be a list. Identityfile already performs ~ expansion in
* Enhance Alcatel-Lucent -support
- add sphinx-use-imgmath-extension.patch
-------------------------------------------------------------------
Wed Mar 20 09:16:40 UTC 2019 - Thomas Bechtold <tbechtold@suse.com>

View File

@ -19,20 +19,23 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-ncclient
Version: 0.6.3
Version: 0.6.4
Release: 0
Summary: Python library for NETCONF clients
License: Apache-2.0
Group: Development/Languages/Python
Url: http://ncclient.org
Source: https://files.pythonhosted.org/packages/source/n/ncclient/ncclient-%{version}.tar.gz
Patch0: sphinx-use-imgmath-extension.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-lxml >= 3.3.0
Requires: python-paramiko >= 1.15.0
%ifpython2
Requires: python-selectors2 >= 2.0.1
%endif
Requires: python-setuptools > 0.6
Requires: python-six
BuildArch: noarch
@ -51,7 +54,9 @@ and application development around the NETCONF protocol.
%package -n python-ncclient-doc
Summary: Python NETCONF protocol library - Documentation
Group: Documentation/HTML
BuildRequires: %{python_module Sphinx-latex}
BuildRequires: %{python_module Sphinx}
BuildRequires: texlive-dvipng
Provides: %{python_module python-ncclient-doc = %{version}}
%description -n python-ncclient-doc
@ -59,6 +64,7 @@ This package contains documentation files for %{name}.
%prep
%setup -q -n ncclient-%{version}
%patch0
%build
%python_build

View File

@ -0,0 +1,11 @@
--- docs/source/conf.py
+++ docs/source/conf.py
@@ -22,7 +22,7 @@
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig']
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.imgmath', 'sphinx.ext.ifconfig']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']