Hello community,

here is the log from the commit of package python-identify for openSUSE:Factory 
checked in at 2019-09-13 14:59:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-identify (Old)
 and      /work/SRC/openSUSE:Factory/.python-identify.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-identify"

Fri Sep 13 14:59:54 2019 rev:5 rq:730196 version:1.4.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-identify/python-identify.changes  
2019-07-31 14:28:04.238172150 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-identify.new.7948/python-identify.changes    
    2019-09-13 14:59:54.417281275 +0200
@@ -1,0 +2,6 @@
+Wed Sep 11 15:00:28 UTC 2019 - Tomáš Chvátal <tchva...@suse.com>
+
+- Update to 1.4.7:
+  * no upstream changelog
+
+-------------------------------------------------------------------

Old:
----
  identify-1.4.5.tar.gz

New:
----
  identify-1.4.7.tar.gz

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

Other differences:
------------------
++++++ python-identify.spec ++++++
--- /var/tmp/diff_new_pack.wc3ad5/_old  2019-09-13 14:59:54.825281292 +0200
+++ /var/tmp/diff_new_pack.wc3ad5/_new  2019-09-13 14:59:54.829281292 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-identify
-Version:        1.4.5
+Version:        1.4.7
 Release:        0
 Summary:        File identification library for Python
 License:        MIT

++++++ identify-1.4.5.tar.gz -> identify-1.4.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/identify-1.4.5/identify/extensions.py 
new/identify-1.4.7/identify/extensions.py
--- old/identify-1.4.5/identify/extensions.py   2019-06-15 16:59:33.000000000 
+0200
+++ new/identify-1.4.7/identify/extensions.py   2019-08-27 15:51:13.000000000 
+0200
@@ -90,6 +90,7 @@
     'nim': {'text', 'nim'},
     'nims': {'text', 'nim'},
     'nimble': {'text', 'nimble'},
+    'nix': {'text', 'nix'},
     'otf': {'binary', 'otf'},
     'p12': {'binary', 'p12'},
     'patch': {'text', 'diff'},
@@ -189,6 +190,7 @@
     '.npmignore': {'text', 'npmignore'},
     '.yamllint': {'text', 'yaml', 'yamllint'},
     'AUTHORS': EXTENSIONS['txt'],
+    'CMakeLists.txt': EXTENSIONS['cmake'],
     'COPYING': EXTENSIONS['txt'],
     'Dockerfile': {'text', 'dockerfile'},
     'Gemfile': EXTENSIONS['rb'],
@@ -199,6 +201,7 @@
     'NOTICE': EXTENSIONS['txt'],
     'PATENTS': EXTENSIONS['txt'],
     'Pipfile': EXTENSIONS['toml'],
+    'Pipfile.lock': EXTENSIONS['json'],
     'README': EXTENSIONS['txt'],
     'Rakefile': EXTENSIONS['rb'],
     'setup.cfg': EXTENSIONS['ini'],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/identify-1.4.5/identify/identify.py 
new/identify-1.4.7/identify/identify.py
--- old/identify-1.4.5/identify/identify.py     2019-06-15 16:59:33.000000000 
+0200
+++ new/identify-1.4.7/identify/identify.py     2019-08-27 15:51:13.000000000 
+0200
@@ -80,7 +80,7 @@
     ret = set()
 
     # Allow e.g. "Dockerfile.xenial" to match "Dockerfile"
-    for part in {filename} | set(filename.split('.')):
+    for part in [filename] + filename.split('.'):
         if part in extensions.NAMES:
             ret.update(extensions.NAMES[part])
             break
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/identify-1.4.5/setup.cfg new/identify-1.4.7/setup.cfg
--- old/identify-1.4.5/setup.cfg        2019-06-15 16:59:33.000000000 +0200
+++ new/identify-1.4.7/setup.cfg        2019-08-27 15:51:13.000000000 +0200
@@ -1,6 +1,6 @@
 [metadata]
 name = identify
-version = 1.4.5
+version = 1.4.7
 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-1.4.5/tests/identify_test.py 
new/identify-1.4.7/tests/identify_test.py
--- old/identify-1.4.5/tests/identify_test.py   2019-06-15 16:59:33.000000000 
+0200
+++ new/identify-1.4.7/tests/identify_test.py   2019-08-27 15:51:13.000000000 
+0200
@@ -118,6 +118,8 @@
         ('Dockerfile', {'text', 'dockerfile'}),
         ('Dockerfile.xenial', {'text', 'dockerfile'}),
         ('xenial.Dockerfile', {'text', 'dockerfile'}),
+        ('Pipfile', {'text', 'toml'}),
+        ('Pipfile.lock', {'text', 'json'}),
         ('mod/test.py', {'text', 'python'}),
         ('mod/Dockerfile', {'text', 'dockerfile'}),
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/identify-1.4.5/tox.ini new/identify-1.4.7/tox.ini
--- old/identify-1.4.5/tox.ini  2019-06-15 16:59:33.000000000 +0200
+++ new/identify-1.4.7/tox.ini  2019-08-27 15:51:13.000000000 +0200
@@ -12,11 +12,6 @@
     pre-commit install -f --install-hooks
     pre-commit run --all-files
 
-[testenv:venv]
-basepython = /usr/bin/python3.6
-envdir = venv
-commands =
-
 [flake8]
 max-line-length = 119
 


Reply via email to