Hello community,

here is the log from the commit of package python-pyfakefs for openSUSE:Factory 
checked in at 2018-12-24 11:47:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyfakefs (Old)
 and      /work/SRC/openSUSE:Factory/.python-pyfakefs.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pyfakefs"

Mon Dec 24 11:47:17 2018 rev:5 rq:660559 version:3.5.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyfakefs/python-pyfakefs.changes  
2018-12-21 08:22:34.641504921 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pyfakefs.new.28833/python-pyfakefs.changes   
    2018-12-24 11:47:18.537138201 +0100
@@ -1,0 +2,6 @@
+Thu Dec 20 21:11:36 UTC 2018 - Karol Babioch <[email protected]>
+
+- Update to version 3.5.5
+  * Removed permission warnings (shebang line vs. executable bit)
+
+-------------------------------------------------------------------

Old:
----
  python-pyfakefs-3.5.4.tar.gz

New:
----
  python-pyfakefs-3.5.5.tar.gz

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

Other differences:
------------------
++++++ python-pyfakefs.spec ++++++
--- /var/tmp/diff_new_pack.Xd1wbU/_old  2018-12-24 11:47:19.061137741 +0100
+++ /var/tmp/diff_new_pack.Xd1wbU/_new  2018-12-24 11:47:19.061137741 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pyfakefs
-Version:        3.5.4
+Version:        3.5.5
 Release:        0
 Summary:        Fake file system that mocks the Python file system modules
 License:        Apache-2.0

++++++ python-pyfakefs-3.5.4.tar.gz -> python-pyfakefs-3.5.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/CHANGES.md 
new/pyfakefs-3.5.5/CHANGES.md
--- old/pyfakefs-3.5.4/CHANGES.md       2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/CHANGES.md       2018-12-20 19:06:46.000000000 +0100
@@ -1,6 +1,12 @@
 # pyfakefs Release Notes
 The release versions are PyPi releases.
 
+## [Version 3.5.5](https://pypi.python.org/pypi/pyfakefs/3.5.5)
+
+#### Fixes
+  * removed shebang from test files to avoid packaging warnings 
+   (see [#461](../../issues/461))
+
 ## [Version 3.5.4](https://pypi.python.org/pypi/pyfakefs/3.5.4)
 
 #### New Features
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/docs/conf.py 
new/pyfakefs-3.5.5/docs/conf.py
--- old/pyfakefs-3.5.4/docs/conf.py     2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/docs/conf.py     2018-12-20 19:06:46.000000000 +0100
@@ -66,9 +66,9 @@
 # built documents.
 #
 # The short X.Y version.
-version = '3.5.4'
+version = '3.5.5'
 # The full version, including alpha/beta/rc tags.
-release = '3.5.4'
+release = '3.5.5'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/fake_filesystem.py 
new/pyfakefs-3.5.5/pyfakefs/fake_filesystem.py
--- old/pyfakefs-3.5.4/pyfakefs/fake_filesystem.py      2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/fake_filesystem.py      2018-12-20 
19:06:46.000000000 +0100
@@ -119,7 +119,7 @@
 
 __pychecker__ = 'no-reimportself'
 
-__version__ = '3.5.4'
+__version__ = '3.5.5'
 
 PERM_READ = 0o400  # Read permission bit.
 PERM_WRITE = 0o200  # Write permission bit.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/all_tests.py 
new/pyfakefs-3.5.5/pyfakefs/tests/all_tests.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/all_tests.py      2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/all_tests.py      2018-12-20 
19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2009 Google Inc. All Rights Reserved.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +12,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"""A test suite that runs all tests for pyfakefs at once."""
+"""A test suite that runs all tests for pyfakefs at once.
+Includes tests with external pathlib2 and scandir packages if installed."""
 
 import sys
 import unittest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyfakefs-3.5.4/pyfakefs/tests/all_tests_without_extra_packages.py 
new/pyfakefs-3.5.5/pyfakefs/tests/all_tests_without_extra_packages.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/all_tests_without_extra_packages.py       
2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/all_tests_without_extra_packages.py       
2018-12-20 19:06:46.000000000 +0100
@@ -1,3 +1,18 @@
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""A test suite that runs all tests for pyfakefs at once.
+Excludes tests using external pathlib2 and scandir packages."""
+
 import sys
 import unittest
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/example_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/example_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/example_test.py   2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/example_test.py   2018-12-20 
19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2014 Altera Corporation. All Rights Reserved.
 # Author: John McGehee
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_glob_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_glob_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_glob_test.py      
2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_glob_test.py      
2018-12-20 19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2009 Google Inc. All Rights Reserved.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_shutil_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_shutil_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_shutil_test.py    
2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_shutil_test.py    
2018-12-20 19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2009 Google Inc. All Rights Reserved.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_test.py   2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_test.py   2018-12-20 
19:06:46.000000000 +0100
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 # Copyright 2009 Google Inc. All Rights Reserved.
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_unittest_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_unittest_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_unittest_test.py  
2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_unittest_test.py  
2018-12-20 19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2014 Altera Corporation. All Rights Reserved.
 # Copyright 2015-2017 John McGehee
 # Author: John McGehee
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_vs_real_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_vs_real_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_filesystem_vs_real_test.py   
2018-12-19 20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_filesystem_vs_real_test.py   
2018-12-20 19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2009 Google Inc. All Rights Reserved.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/fake_open_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_open_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_open_test.py 2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_open_test.py 2018-12-20 
19:06:46.000000000 +0100
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # Copyright 2009 Google Inc. All Rights Reserved.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/fake_os_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_os_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_os_test.py   2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_os_test.py   2018-12-20 
19:06:46.000000000 +0100
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # Copyright 2009 Google Inc. All Rights Reserved.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/fake_pathlib_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_pathlib_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_pathlib_test.py      2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_pathlib_test.py      2018-12-20 
19:06:46.000000000 +0100
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
 # -*- coding: utf-8 -*-
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/fake_stat_time_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_stat_time_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_stat_time_test.py    2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_stat_time_test.py    2018-12-20 
19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfakefs-3.5.4/pyfakefs/tests/fake_tempfile_test.py 
new/pyfakefs-3.5.5/pyfakefs/tests/fake_tempfile_test.py
--- old/pyfakefs-3.5.4/pyfakefs/tests/fake_tempfile_test.py     2018-12-19 
20:07:15.000000000 +0100
+++ new/pyfakefs-3.5.5/pyfakefs/tests/fake_tempfile_test.py     2018-12-20 
19:06:46.000000000 +0100
@@ -1,5 +1,3 @@
-#! /usr/bin/env python
-#
 # Copyright 2009 Google Inc. All Rights Reserved.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");


Reply via email to