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 2025-06-03 19:10:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-identify (Old) and /work/SRC/openSUSE:Factory/.python-identify.new.16005 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-identify" Tue Jun 3 19:10:47 2025 rev:21 rq:1282362 version:2.6.12 Changes: -------- --- /work/SRC/openSUSE:Factory/python-identify/python-identify.changes 2025-04-29 16:40:51.631399993 +0200 +++ /work/SRC/openSUSE:Factory/.python-identify.new.16005/python-identify.changes 2025-06-03 19:10:48.906107026 +0200 @@ -1,0 +2,10 @@ +Tue Jun 3 07:34:40 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to 2.6.12 + * Identify common MSBuild files + * Drop ambiguous .proj extension +- from version 2.6.11 + * Add support for `.sqlfluff` + * Identify XSLT files + +------------------------------------------------------------------- Old: ---- identify-2.6.10.tar.gz New: ---- identify-2.6.12.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-identify.spec ++++++ --- /var/tmp/diff_new_pack.Xz2eC9/_old 2025-06-03 19:10:49.626136934 +0200 +++ /var/tmp/diff_new_pack.Xz2eC9/_new 2025-06-03 19:10:49.630137100 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-identify -Version: 2.6.10 +Version: 2.6.12 Release: 0 Summary: File identification library for Python License: MIT ++++++ identify-2.6.10.tar.gz -> identify-2.6.12.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/identify-2.6.10/identify/extensions.py new/identify-2.6.12/identify/extensions.py --- old/identify-2.6.10/identify/extensions.py 2025-04-19 17:14:19.000000000 +0200 +++ new/identify-2.6.12/identify/extensions.py 2025-05-23 22:37:37.000000000 +0200 @@ -43,7 +43,7 @@ 'cr': {'text', 'crystal'}, 'crt': {'text', 'pem'}, 'cs': {'text', 'c#'}, - 'csproj': {'text', 'xml', 'csproj'}, + 'csproj': {'text', 'xml', 'csproj', 'msbuild'}, 'csh': {'text', 'shell', 'csh'}, 'cson': {'text', 'cson'}, 'css': {'text', 'css'}, @@ -82,6 +82,7 @@ 'fish': {'text', 'fish'}, 'fits': {'binary', 'fits'}, 'fs': {'text', 'f#'}, + 'fsproj': {'text', 'xml', 'fsproj', 'msbuild'}, 'fsx': {'text', 'f#', 'f#script'}, 'gd': {'text', 'gdscript'}, 'gemspec': {'text', 'ruby'}, @@ -201,6 +202,7 @@ 'pp': {'text', 'puppet'}, 'prisma': {'text', 'prisma'}, 'properties': {'text', 'java-properties'}, + 'props': {'text', 'xml', 'msbuild'}, 'proto': {'text', 'proto'}, 'ps1': {'text', 'powershell'}, 'psd1': {'text', 'powershell'}, @@ -212,7 +214,7 @@ 'pxi': {'text', 'cython'}, 'py': {'text', 'python'}, 'pyi': {'text', 'pyi'}, - 'pyproj': {'text', 'xml', 'pyproj'}, + 'pyproj': {'text', 'xml', 'pyproj', 'msbuild'}, 'pyt': {'text', 'python'}, 'pyx': {'text', 'cython'}, 'pyz': {'binary', 'pyz'}, @@ -252,6 +254,7 @@ 'swiftdeps': {'text', 'swiftdeps'}, 'tac': {'text', 'twisted', 'python'}, 'tar': {'binary', 'tar'}, + 'targets': {'text', 'xml', 'msbuild'}, 'templ': {'text', 'templ'}, 'tex': {'text', 'tex'}, 'textproto': {'text', 'textproto'}, @@ -272,8 +275,8 @@ 'urdf': {'text', 'xml', 'urdf'}, 'v': {'text', 'verilog'}, 'vb': {'text', 'vb'}, - 'vbproj': {'text', 'xml', 'vbproj'}, - 'vcxproj': {'text', 'xml', 'vcxproj'}, + 'vbproj': {'text', 'xml', 'vbproj', 'msbuild'}, + 'vcxproj': {'text', 'xml', 'vcxproj', 'msbuild'}, 'vdx': {'text', 'vdx'}, 'vh': {'text', 'verilog'}, 'vhd': {'text', 'vhdl'}, @@ -301,6 +304,7 @@ 'xqy': {'text', 'xquery'}, 'xsd': {'text', 'xml', 'xsd'}, 'xsl': {'text', 'xml', 'xsl'}, + 'xslt': {'text', 'xml', 'xsl'}, 'yaml': {'text', 'yaml'}, 'yamlld': {'text', 'yaml', 'yamlld'}, 'yang': {'text', 'yang'}, @@ -352,6 +356,7 @@ '.pypirc': EXTENSIONS['ini'] | {'pypirc'}, '.rstcheck.cfg': EXTENSIONS['ini'], '.salt-lint': EXTENSIONS['yaml'] | {'salt-lint'}, + '.sqlfluff': EXTENSIONS['ini'], '.yamllint': EXTENSIONS['yaml'] | {'yamllint'}, '.zlogin': EXTENSIONS['zsh'], '.zlogout': EXTENSIONS['zsh'], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/identify-2.6.10/setup.cfg new/identify-2.6.12/setup.cfg --- old/identify-2.6.10/setup.cfg 2025-04-19 17:14:19.000000000 +0200 +++ new/identify-2.6.12/setup.cfg 2025-05-23 22:37:37.000000000 +0200 @@ -1,6 +1,6 @@ [metadata] name = identify -version = 2.6.10 +version = 2.6.12 description = File identification library for Python long_description = file: README.md long_description_content_type = text/markdown