forked from pool/python-pywinrm
Accepting request 745108 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/745108 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pywinrm?expand=0&rev=3
This commit is contained in:
19
LICENSE
19
LICENSE
@@ -1,19 +0,0 @@
|
|||||||
Copyright (c) 2013 Alexey Diyan
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
@@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Nov 3 14:20:27 UTC 2019 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 0.4.0
|
||||||
|
* Ensure server_cert_validation=ignore supersedes
|
||||||
|
ca_trust_path/env overrides.
|
||||||
|
* Added deprecated warnings if CA trusts defined by environment
|
||||||
|
variables are used.
|
||||||
|
* Set minimum version of requests-credssp to support Kerberos
|
||||||
|
auth over CredSSP and other changes.
|
||||||
|
* Added proxy support where it can be defined within the
|
||||||
|
application, with the ability to specify the proxy within the
|
||||||
|
application.
|
||||||
|
* Fix for shell not setting all environment variables.
|
||||||
|
* Fix session clixml encoding on Python 3.
|
||||||
|
* Protocol.close_shell(shell_id) will now close the session(and
|
||||||
|
TCP connections) to the Windows machine. close_session option
|
||||||
|
has been added in case of leaving the session alone.
|
||||||
|
* Add a function to send input to a running process.
|
||||||
|
- Use tarball from github instead of pypi
|
||||||
|
- Drop not longer needed file LICENSE (it's part of the upstream
|
||||||
|
tarball
|
||||||
|
- Add %{python_module kerberos} to BuildRequires since it's used
|
||||||
|
in some tests
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 4 12:53:23 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
Tue Dec 4 12:53:23 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pywinrm
|
# spec file for package python-pywinrm
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,14 +18,14 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-pywinrm
|
Name: python-pywinrm
|
||||||
Version: 0.3.0
|
Version: 0.4.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python library for Windows Remote Management
|
Summary: Python library for Windows Remote Management
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: http://github.com/diyan/pywinrm/
|
URL: http://github.com/diyan/pywinrm/
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/pywinrm/pywinrm-%{version}.tar.gz
|
Source: https://github.com/diyan/pywinrm/archive/v%{version}.tar.gz#/pywinrm-%{version}.tar.gz
|
||||||
Source1: https://raw.githubusercontent.com/diyan/pywinrm/master/LICENSE
|
BuildRequires: %{python_module kerberos}
|
||||||
BuildRequires: %{python_module mock}
|
BuildRequires: %{python_module mock}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module requests >= 2.9.1}
|
BuildRequires: %{python_module requests >= 2.9.1}
|
||||||
@@ -56,8 +56,6 @@ Microsoft's WinRM http://msdn.microsoft.com/en-us/library/aa384426.aspx
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n pywinrm-%{version}
|
%setup -q -n pywinrm-%{version}
|
||||||
# FIXME - License should be included in the pypi tarball
|
|
||||||
cp %{SOURCE1} .
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:799fc3e33fec8684443adf5778860388289102ea4fa1458f1bf307d167855573
|
|
||||||
size 25175
|
|
3
pywinrm-0.4.0.tar.gz
Normal file
3
pywinrm-0.4.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:84bc6975bdb4446211b5dfac9f23a223ebb97d6e7393772eec86ca314ee173c2
|
||||||
|
size 39798
|
Reference in New Issue
Block a user