Hello community,
here is the log from the commit of package python-vim-vint for openSUSE:Factory
checked in at 2019-09-17 13:38:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-vim-vint (Old)
and /work/SRC/openSUSE:Factory/.python-vim-vint.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-vim-vint"
Tue Sep 17 13:38:55 2019 rev:3 rq:731250 version:0.3.21
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-vim-vint/python-vim-vint.changes
2019-03-19 10:00:34.211939366 +0100
+++
/work/SRC/openSUSE:Factory/.python-vim-vint.new.7948/python-vim-vint.changes
2019-09-17 13:38:56.429828209 +0200
@@ -1,0 +2,7 @@
+Mon Sep 16 10:46:25 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Updat eto 0.3.21:
+ * various bugfixes only
+- Drop upstream merged patch yaml5.patch
+
+-------------------------------------------------------------------
Old:
----
v0.3.19.tar.gz
yaml5.patch
New:
----
v0.3.21.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-vim-vint.spec ++++++
--- /var/tmp/diff_new_pack.5kCnju/_old 2019-09-17 13:38:56.941828127 +0200
+++ /var/tmp/diff_new_pack.5kCnju/_new 2019-09-17 13:38:56.945828127 +0200
@@ -18,15 +18,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-vim-vint
-Version: 0.3.19
+Version: 0.3.21
Release: 0
Summary: Lint tool for Vim script Language
License: MIT
Group: Development/Languages/Python
-Url: https://github.com/Kuniwak/vint
-Source: https://github.com/Kuniwak/vint/archive/v0.3.19.tar.gz
+URL: https://github.com/Kuniwak/vint
+Source: https://github.com/Kuniwak/vint/archive/v%{version}.tar.gz
Patch0: test-sys-executable.patch
-Patch1: yaml5.patch
BuildRequires: %{python_module PyYAML >= 3.11}
BuildRequires: %{python_module ansicolor >= 0.2.4}
BuildRequires: %{python_module chardet >= 2.3.0}
@@ -43,13 +42,12 @@
Requires: python-PyYAML >= 3.11
Requires: python-ansicolor >= 0.2.4
Requires: python-chardet >= 2.3.0
+BuildArch: noarch
%ifpython2
Requires: python-enum34 >= 1.0.4
Requires: python-pathlib >= 1.0.1
Requires: python-typing >= 3.6.2
%endif
-BuildArch: noarch
-
%python_subpackages
%description
@@ -58,7 +56,6 @@
%prep
%setup -q -n vint-%{version}
%patch0 -p1
-%patch1 -p1
sed -e 's/==/>=/g' \
-e 's/\~=/>=/g' \
-i setup.py \
++++++ v0.3.19.tar.gz -> v0.3.21.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/vint-0.3.19/VERSION.txt new/vint-0.3.21/VERSION.txt
--- old/vint-0.3.19/VERSION.txt 2018-06-29 04:51:48.000000000 +0200
+++ new/vint-0.3.21/VERSION.txt 2019-05-14 01:10:24.000000000 +0200
@@ -1 +1 @@
-0.3.19
+0.3.21
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/vint-0.3.19/requirements.txt
new/vint-0.3.21/requirements.txt
--- old/vint-0.3.19/requirements.txt 2018-06-29 04:51:48.000000000 +0200
+++ new/vint-0.3.21/requirements.txt 2019-05-14 01:10:24.000000000 +0200
@@ -1,3 +1,3 @@
-PyYAML ~= 3.11
-ansicolor ~= 0.2.4
+PyYAML >= 3.11
+ansicolor >= 0.2.4
chardet >= 2.3.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/vint-0.3.19/vint/linting/config/config_file_source.py
new/vint-0.3.21/vint/linting/config/config_file_source.py
--- old/vint-0.3.19/vint/linting/config/config_file_source.py 2018-06-29
04:51:48.000000000 +0200
+++ new/vint-0.3.21/vint/linting/config/config_file_source.py 2019-05-14
01:10:24.000000000 +0200
@@ -10,7 +10,8 @@
config_file_path = self.get_file_path(env)
with config_file_path.open() as file_obj:
- self._config_dict = self.convert_config_dict(yaml.load(file_obj))
+ config_yaml = yaml.safe_load(file_obj)
+ self._config_dict = self.convert_config_dict(config_yaml)
def convert_config_dict(self, yaml_dict):