Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-identify for openSUSE:Factory
checked in at 2023-12-08 22:32:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-identify (Old)
and /work/SRC/openSUSE:Factory/.python-identify.new.25432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-identify"
Fri Dec 8 22:32:15 2023 rev:12 rq:1131748 version:2.5.33
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-identify/python-identify.changes
2023-11-26 19:38:46.413397148 +0100
+++
/work/SRC/openSUSE:Factory/.python-identify.new.25432/python-identify.changes
2023-12-08 22:32:48.877680357 +0100
@@ -1,0 +2,8 @@
+Thu Dec 7 22:52:23 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 2.5.33:
+ * add .avsc detection
+ * Identify Vagrantfile as Ruby
+ * Identify .salt-lint as YAML
+
+-------------------------------------------------------------------
Old:
----
identify-2.5.31.tar.gz
New:
----
identify-2.5.33.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-identify.spec ++++++
--- /var/tmp/diff_new_pack.UZPNps/_old 2023-12-08 22:32:49.777713473 +0100
+++ /var/tmp/diff_new_pack.UZPNps/_new 2023-12-08 22:32:49.781713620 +0100
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-identify
-Version: 2.5.31
+Version: 2.5.33
Release: 0
Summary: File identification library for Python
License: MIT
@@ -33,7 +33,7 @@
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires(post): update-alternatives
-Requires(postun): update-alternatives
+Requires(postun):update-alternatives
Recommends: python-editdistance
BuildArch: noarch
%python_subpackages
++++++ identify-2.5.31.tar.gz -> identify-2.5.33.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/identify-2.5.31/.pre-commit-config.yaml
new/identify-2.5.33/.pre-commit-config.yaml
--- old/identify-2.5.31/.pre-commit-config.yaml 2023-10-28 19:19:41.000000000
+0200
+++ new/identify-2.5.33/.pre-commit-config.yaml 2023-12-07 05:26:31.000000000
+0100
@@ -37,6 +37,6 @@
- id: flake8
exclude: ^identify/vendor/licenses\.py$
- repo: https://github.com/pre-commit/mirrors-mypy
- rev: v1.6.1
+ rev: v1.7.1
hooks:
- id: mypy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/identify-2.5.31/identify/extensions.py
new/identify-2.5.33/identify/extensions.py
--- old/identify-2.5.31/identify/extensions.py 2023-10-28 19:19:41.000000000
+0200
+++ new/identify-2.5.33/identify/extensions.py 2023-12-07 05:26:31.000000000
+0100
@@ -7,6 +7,7 @@
'apinotes': {'text', 'apinotes'},
'asar': {'binary', 'asar'},
'avif': {'binary', 'image', 'avif'},
+ 'avsc': {'text', 'avro-schema'},
'bash': {'text', 'shell', 'bash'},
'bat': {'text', 'batch'},
'bats': {'text', 'shell', 'bash', 'bats'},
@@ -196,6 +197,7 @@
'py': {'text', 'python'},
'pyi': {'text', 'pyi'},
'pyproj': {'text', 'xml', 'pyproj'},
+ 'pyt': {'text', 'python'},
'pyx': {'text', 'cython'},
'pyz': {'binary', 'pyz'},
'pyzw': {'binary', 'pyz'},
@@ -328,6 +330,7 @@
'.prettierignore': {'text', 'gitignore', 'prettierignore'},
'.pypirc': EXTENSIONS['ini'] | {'pypirc'},
'.rstcheck.cfg': EXTENSIONS['ini'],
+ '.salt-lint': EXTENSIONS['yaml'] | {'salt-lint'},
'.yamllint': EXTENSIONS['yaml'] | {'yamllint'},
'.zlogin': EXTENSIONS['zsh'],
'.zlogout': EXTENSIONS['zsh'],
@@ -371,6 +374,7 @@
'setup.cfg': EXTENSIONS['ini'],
'sys.config': EXTENSIONS['erl'],
'sys.config.src': EXTENSIONS['erl'],
+ 'Vagrantfile': EXTENSIONS['rb'],
'WORKSPACE': EXTENSIONS['bzl'],
'wscript': EXTENSIONS['py'],
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/identify-2.5.31/setup.cfg
new/identify-2.5.33/setup.cfg
--- old/identify-2.5.31/setup.cfg 2023-10-28 19:19:41.000000000 +0200
+++ new/identify-2.5.33/setup.cfg 2023-12-07 05:26:31.000000000 +0100
@@ -1,6 +1,6 @@
[metadata]
name = identify
-version = 2.5.31
+version = 2.5.33
description = File identification library for Python
long_description = file: README.md
long_description_content_type = text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/identify-2.5.31/tests/identify_test.py
new/identify-2.5.33/tests/identify_test.py
--- old/identify-2.5.31/tests/identify_test.py 2023-10-28 19:19:41.000000000
+0200
+++ new/identify-2.5.33/tests/identify_test.py 2023-12-07 05:26:31.000000000
+0100
@@ -151,6 +151,7 @@
@pytest.mark.parametrize(
('filename', 'expected'),
(
+ ('.salt-lint', {'text', 'salt-lint', 'yaml'}),
('test.py', {'text', 'python'}),
('test.mk', {'text', 'makefile'}),
('Makefile', {'text', 'makefile'}),
@@ -170,6 +171,7 @@
('build.jenkinsfile', {'text', 'groovy', 'jenkins'}),
('meson.build', {'text', 'meson'}),
('meson_options.txt', {'text', 'plain-text', 'meson'}),
+ ('Vagrantfile', {'text', 'ruby'}),
# does not set binary / text
('f.plist', {'plist'}),