Hello community,

here is the log from the commit of package python-EasyProcess for 
openSUSE:Factory checked in at 2019-06-22 11:23:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-EasyProcess (Old)
 and      /work/SRC/openSUSE:Factory/.python-EasyProcess.new.4615 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-EasyProcess"

Sat Jun 22 11:23:16 2019 rev:16 rq:710347 version:0.2.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-EasyProcess/python-EasyProcess.changes    
2019-04-08 10:40:26.067296866 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-EasyProcess.new.4615/python-EasyProcess.changes
  2019-06-22 11:23:19.761331737 +0200
@@ -1,0 +2,6 @@
+Mon Jun 17 12:15:09 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 0.2.7:
+  * Small fixes only
+
+-------------------------------------------------------------------

Old:
----
  0.2.5.tar.gz

New:
----
  0.2.7.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-EasyProcess.spec ++++++
--- /var/tmp/diff_new_pack.eovKAw/_old  2019-06-22 11:23:21.069333163 +0200
+++ /var/tmp/diff_new_pack.eovKAw/_new  2019-06-22 11:23:21.101333198 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-EasyProcess
-Version:        0.2.5
+Version:        0.2.7
 Release:        0
 Summary:        Python subprocess interface
 License:        BSD-2-Clause

++++++ 0.2.5.tar.gz -> 0.2.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.5/MANIFEST.in 
new/EasyProcess-0.2.7/MANIFEST.in
--- old/EasyProcess-0.2.5/MANIFEST.in   2018-12-20 09:27:06.000000000 +0100
+++ new/EasyProcess-0.2.7/MANIFEST.in   2019-05-25 20:55:52.000000000 +0200
@@ -5,3 +5,6 @@
 include README*
 include setup.py
 prune docs/_build
+prune docs/.build
+prune docs/api
+graft tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.5/README.rst 
new/EasyProcess-0.2.7/README.rst
--- old/EasyProcess-0.2.5/README.rst    2018-12-20 09:27:06.000000000 +0100
+++ new/EasyProcess-0.2.7/README.rst    2019-05-25 20:55:52.000000000 +0200
@@ -19,7 +19,7 @@
  - shell is not supported
  - pipes are not supported
  - stdout/stderr is set only after the subprocess has finished
- - stop() does not kill whole subprocess tree 
+ - stop() does not kill whole subprocess tree
  - unicode support
  - supported python versions: 2.7, 3.4, 3.5, 3.6, 3.7
  - Method chaining_
@@ -31,7 +31,7 @@
  * sh (https://github.com/amoffat/sh)
  * envoy (https://github.com/kennethreitz/envoy)
  * plumbum (https://github.com/tomerfiliba/plumbum)
- 
+
 Basic usage
 ===========
 
@@ -130,19 +130,18 @@
 .. warning::
 
   ``echo`` is a shell command on Windows (there is no echo.exe),
-  but it is a program on Linux  
+  but it is a program on Linux.
 
 return_code
 -----------
 
-:attr:`EasyProcess.return_code` is None until 
-:func:`EasyProcess.stop` or :func:`EasyProcess.wait` 
-is called.
+`EasyProcess.return_code` is None until
+`EasyProcess.stop` or `EasyProcess.wait` is called.
 
 With
 ----
 
-By using :keyword:`with` statement the process is started 
+By using `with` statement the process is started
 and stopped automatically::
     
     from easyprocess import EasyProcess
@@ -196,7 +195,7 @@
     ==>
     p = EasyProcess("ls -l").call()
     retcode = p.return_code
-    print p.stdout
+    print(p.stdout)
 
 Replacing subprocess.call::
 
@@ -204,7 +203,7 @@
     ==>
     p = EasyProcess(["ls", "-l"]).call()
     retcode = p.return_code
-    print p.stdout
+    print(p.stdout)
 
  
 .. _subprocess: http://docs.python.org/library/subprocess.html
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.5/Vagrantfile 
new/EasyProcess-0.2.7/Vagrantfile
--- old/EasyProcess-0.2.5/Vagrantfile   2018-12-20 09:27:06.000000000 +0100
+++ new/EasyProcess-0.2.7/Vagrantfile   2019-05-25 20:55:52.000000000 +0200
@@ -43,13 +43,13 @@
   # backing providers for Vagrant. These expose provider-specific options.
   # Example for VirtualBox:
   #
-  # config.vm.provider "virtualbox" do |vb|
+   config.vm.provider "virtualbox" do |vb|
   #   # Display the VirtualBox GUI when booting the machine
   #   vb.gui = true
   #
-  #   # Customize the amount of memory on the VM:
-  #   vb.memory = "1024"
-  # end
+     # Customize the amount of memory on the VM:
+     vb.memory = "512"
+   end
   #
   # View the documentation for the provider you are using for more
   # information on available options.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/EasyProcess-0.2.5/easyprocess/about.py 
new/EasyProcess-0.2.7/easyprocess/about.py
--- old/EasyProcess-0.2.5/easyprocess/about.py  2018-12-20 09:27:06.000000000 
+0100
+++ new/EasyProcess-0.2.7/easyprocess/about.py  2019-05-25 20:55:52.000000000 
+0200
@@ -1 +1 @@
-__version__ = '0.2.5'
+__version__ = '0.2.7'


Reply via email to