commit python-pywinrm for openSUSE:Factory

2020-03-11 Thread root
Hello community,

here is the log from the commit of package python-pywinrm for openSUSE:Factory 
checked in at 2020-03-11 18:52:32

Comparing /work/SRC/openSUSE:Factory/python-pywinrm (Old)
 and  /work/SRC/openSUSE:Factory/.python-pywinrm.new.3160 (New)


Package is "python-pywinrm"

Wed Mar 11 18:52:32 2020 rev:4 rq:783702 version:0.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-pywinrm/python-pywinrm.changes
2019-11-27 13:51:05.684482010 +0100
+++ /work/SRC/openSUSE:Factory/.python-pywinrm.new.3160/python-pywinrm.changes  
2020-03-11 18:55:01.911666444 +0100
@@ -1,0 +2,6 @@
+Fri Feb 28 23:02:50 UTC 2020 - Dirk Mueller 
+
+- update to 0.4.1:
+  * python 3.8
+
+---

Old:

  pywinrm-0.4.0.tar.gz

New:

  pywinrm-0.4.1.tar.gz



Other differences:
--
++ python-pywinrm.spec ++
--- /var/tmp/diff_new_pack.CLDpKB/_old  2020-03-11 18:55:02.519666716 +0100
+++ /var/tmp/diff_new_pack.CLDpKB/_new  2020-03-11 18:55:02.519666716 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pywinrm
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-pywinrm
-Version:0.4.0
+Version:0.4.1
 Release:0
 Summary:Python library for Windows Remote Management
 License:MIT

++ pywinrm-0.4.0.tar.gz -> pywinrm-0.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pywinrm-0.4.0/CHANGELOG.md 
new/pywinrm-0.4.1/CHANGELOG.md
--- old/pywinrm-0.4.0/CHANGELOG.md  2019-11-03 04:57:21.0 +0100
+++ new/pywinrm-0.4.1/CHANGELOG.md  2019-11-04 19:03:10.0 +0100
@@ -1,5 +1,8 @@
 # Changelog
 
+### Version 0.4.1
+- HOT FIX: Fixing an issue with `requests_kerbose` not imported correctly from 
the changes in `0.4.0`.
+
 ### 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.
@@ -8,6 +11,7 @@
 - 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.
 
 ### Version 0.3.0
 - Added support for message encryption over HTTP when using 
NTLM/Kerberos/CredSSP
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pywinrm-0.4.0/setup.py new/pywinrm-0.4.1/setup.py
--- old/pywinrm-0.4.0/setup.py  2019-11-03 04:57:21.0 +0100
+++ new/pywinrm-0.4.1/setup.py  2019-11-04 19:03:10.0 +0100
@@ -1,6 +1,6 @@
-from setuptools import setup
+from setuptools import setup, find_packages
 
-__version__ = '0.4.0'
+__version__ = '0.4.1'
 project_name = 'pywinrm'
 
 # PyPi supports only reStructuredText, so pandoc should be installed
@@ -21,7 +21,7 @@
 author_email='alexey.di...@gmail.com',
 url='http://github.com/diyan/pywinrm/',
 license='MIT license',
-packages=('winrm', 'winrm.tests', 'winrm.vendor.requests_kerberos'),
+packages=find_packages(),
 package_data={'winrm.tests': ['*.ps1']},
 install_requires=['xmltodict', 'requests>=2.9.1', 'requests_ntlm>=0.3.0', 
'six'],
 extras_require={
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pywinrm-0.4.0/winrm/transport.py 
new/pywinrm-0.4.1/winrm/transport.py
--- old/pywinrm-0.4.0/winrm/transport.py2019-11-03 04:57:21.0 
+0100
+++ new/pywinrm-0.4.1/winrm/transport.py2019-11-04 19:03:10.0 
+0100
@@ -23,7 +23,7 @@
 
 HAVE_KERBEROS = False
 try:
-from .vendor.requests_kerberos import HTTPKerberosAuth, REQUIRED
+from winrm.vendor.requests_kerberos import HTTPKerberosAuth, REQUIRED
 
 HAVE_KERBEROS = True
 except ImportError:




commit python-pywinrm for openSUSE:Factory

2019-11-27 Thread root
Hello community,

here is the log from the commit of package python-pywinrm for openSUSE:Factory 
checked in at 2019-11-27 13:51:03

Comparing /work/SRC/openSUSE:Factory/python-pywinrm (Old)
 and  /work/SRC/openSUSE:Factory/.python-pywinrm.new.26869 (New)


Package is "python-pywinrm"

Wed Nov 27 13:51:03 2019 rev:3 rq:745108 version:0.4.0

Changes:

--- /work/SRC/openSUSE:Factory/python-pywinrm/python-pywinrm.changes
2018-12-24 11:42:55.657370431 +0100
+++ /work/SRC/openSUSE:Factory/.python-pywinrm.new.26869/python-pywinrm.changes 
2019-11-27 13:51:05.684482010 +0100
@@ -1,0 +2,25 @@
+Sun Nov  3 14:20:27 UTC 2019 - Martin Hauke 
+
+- 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
+
+---

Old:

  LICENSE
  pywinrm-0.3.0.tar.gz

New:

  pywinrm-0.4.0.tar.gz



Other differences:
--
++ python-pywinrm.spec ++
--- /var/tmp/diff_new_pack.Ta0gvZ/_old  2019-11-27 13:51:06.436481386 +0100
+++ /var/tmp/diff_new_pack.Ta0gvZ/_new  2019-11-27 13:51:06.436481386 +0100
@@ -1,7 +1,7 @@
 #
 # 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
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,14 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-pywinrm
-Version:0.3.0
+Version:0.4.0
 Release:0
 Summary:Python library for Windows Remote Management
 License:MIT
 Group:  Development/Languages/Python
 URL:http://github.com/diyan/pywinrm/
-Source: 
https://files.pythonhosted.org/packages/source/p/pywinrm/pywinrm-%{version}.tar.gz
-Source1:https://raw.githubusercontent.com/diyan/pywinrm/master/LICENSE
+Source: 
https://github.com/diyan/pywinrm/archive/v%{version}.tar.gz#/pywinrm-%{version}.tar.gz
+BuildRequires:  %{python_module kerberos}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module requests >= 2.9.1}
@@ -56,8 +56,6 @@
 
 %prep
 %setup -q -n pywinrm-%{version}
-# FIXME - License should be included in the pypi tarball
-cp %{SOURCE1} .
 
 %build
 %python_build

++ pywinrm-0.3.0.tar.gz -> pywinrm-0.4.0.tar.gz ++
 2672 lines of diff (skipped)




commit python-pywinrm for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-pywinrm for openSUSE:Factory 
checked in at 2018-12-24 11:42:54

Comparing /work/SRC/openSUSE:Factory/python-pywinrm (Old)
 and  /work/SRC/openSUSE:Factory/.python-pywinrm.new.28833 (New)


Package is "python-pywinrm"

Mon Dec 24 11:42:54 2018 rev:2 rq:659627 version:0.3.0

Changes:

--- /work/SRC/openSUSE:Factory/python-pywinrm/python-pywinrm.changes
2018-04-13 12:36:12.537006239 +0200
+++ /work/SRC/openSUSE:Factory/.python-pywinrm.new.28833/python-pywinrm.changes 
2018-12-24 11:42:55.657370431 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:53:23 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-pywinrm.spec ++
--- /var/tmp/diff_new_pack.BzTRGX/_old  2018-12-24 11:42:56.097370041 +0100
+++ /var/tmp/diff_new_pack.BzTRGX/_new  2018-12-24 11:42:56.097370041 +0100
@@ -12,7 +12,8 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
@@ -25,7 +26,6 @@
 URL:http://github.com/diyan/pywinrm/
 Source: 
https://files.pythonhosted.org/packages/source/p/pywinrm/pywinrm-%{version}.tar.gz
 Source1:https://raw.githubusercontent.com/diyan/pywinrm/master/LICENSE
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module requests >= 2.9.1}




commit python-pywinrm for openSUSE:Factory

2018-04-13 Thread root
Hello community,

here is the log from the commit of package python-pywinrm for openSUSE:Factory 
checked in at 2018-04-13 12:36:09

Comparing /work/SRC/openSUSE:Factory/python-pywinrm (Old)
 and  /work/SRC/openSUSE:Factory/.python-pywinrm.new (New)


Package is "python-pywinrm"

Fri Apr 13 12:36:09 2018 rev:1 rq:594235 version:0.3.0

Changes:

New Changes file:

--- /dev/null   2018-03-29 10:35:27.759803458 +0200
+++ /work/SRC/openSUSE:Factory/.python-pywinrm.new/python-pywinrm.changes   
2018-04-13 12:36:12.537006239 +0200
@@ -0,0 +1,45 @@
+---
+Thu Apr  5 20:24:54 UTC 2018 - mar...@gmx.de
+
+- Upgrade to version 0.3.0
+  * Added support for message encryption over HTTP when using 
NTLM/Kerberos/CredSSP
+  * Added parameter to disable TLSv1.2 when using CredSSP for Server 2008 
support
+  * Error detail from SOAP fault (if present) is now included with HTTP 500 
errors
+  * Fixed CA path override (incl envvar)
+  * Fixed Kerberos service override
+  * Try harder to suppress urllib3 InsecureRequestWarnings on various OSs
+  * Fixed timeout values to parse correctly if passed as strings
+  * Various updates to CI/tests
+- Convert to singlespec
+
+---
+Wed Mar  8 22:35:49 UTC 2017 - bo...@steki.net
+
+- upgraded to pypi released source 0.2.2
+  + Added support for CredSSP authenication (via requests-credssp)
+  + Improved README, see 'Valid transport options' section
+  + Run unit tests on Linux / Travis CI on Python 2.6-2.7, 3.3-3.6, PyPy2
+  + Run integration tests on Windows / AppVeyor on Python 2.7, 3.3-3.5
+  + Drop support for Python 3.0-3.2 due to lack of explicit unicode literal, 
see pep-0414
+  + Drop support for Python 2.6 on Windows
+  + Add support for Python 3.6-dev on Linux
+  + Force basic auth header to avoid additional HTTP request and reduce latency
+  + Python 2.7.9+. Allow server cert validation to be ignored using 
SSLContext.verify_mode
+  + Tests. Enable Python 3.4, 3.5 on Travis CI
+  + Use xmltodict instead of not supported xmlwitch
+  + Add certificate authentication support
+  + Setup PyPI classifiers
+  + Fix. Include UUID when sending request
+  + Fix. Python 2.6.6/CentOS. Use tuples instead of lists in setup.py
+  + Fix. Python 2.6. String formatting
+  + Handle unauthorized response and raise UnauthorizeError
+  + Convert different forms of short urls into full well-formed endpoint
+  + Add Session.run_ps() helper to execute PowerShell scripts
+  + Use pandoc for README.md to rst conversion for PyPI
+  
+
+---
+Wed Sep 10 12:35:17 UTC 2014 - bo...@steki.net
+
+- initial packaging 
+

New:

  LICENSE
  python-pywinrm.changes
  python-pywinrm.spec
  pywinrm-0.3.0.tar.gz



Other differences:
--
++ python-pywinrm.spec ++
#
# spec file for package python-pywinrm
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/


%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name:   python-pywinrm
Version:0.3.0
Release:0
Summary:Python library for Windows Remote Management
License:MIT
Group:  Development/Languages/Python
URL:http://github.com/diyan/pywinrm/
Source: 
https://files.pythonhosted.org/packages/source/p/pywinrm/pywinrm-%{version}.tar.gz
Source1:https://raw.githubusercontent.com/diyan/pywinrm/master/LICENSE
BuildRequires:  %{python_module devel}
BuildRequires:  %{python_module mock}
BuildRequires:  %{python_module pytest}
BuildRequires:  %{python_module requests >= 2.9.1}
BuildRequires:  %{python_module requests_ntlm >= 0.3.0}
BuildRequires:  %{python_module setuptools}
BuildRequires:  %{python_module six}
BuildRequires:  %{python_module xmltodict}
BuildRequires:  fdupes
BuildRequires:  python-rpm-macros
Requires:   python-requests >= 2.9.1
Requires:   python-requests_ntlm >= 0.3.0
Requires:   python-six
Requires:   python-xmltodict
Suggests:   python-requests-credssp >= 0.0.1
Suggests: