Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pyinstaller-hooks-contrib for
openSUSE:Factory checked in at 2022-12-06 14:22:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyinstaller-hooks-contrib (Old)
and /work/SRC/openSUSE:Factory/.python-pyinstaller-hooks-contrib.new.1835
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pyinstaller-hooks-contrib"
Tue Dec 6 14:22:52 2022 rev:3 rq:1040268 version:2022.13
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pyinstaller-hooks-contrib/python-pyinstaller-hooks-contrib.changes
2022-11-12 17:41:10.430169664 +0100
+++
/work/SRC/openSUSE:Factory/.python-pyinstaller-hooks-contrib.new.1835/python-pyinstaller-hooks-contrib.changes
2022-12-06 14:22:55.185423321 +0100
@@ -1,0 +2,6 @@
+Fri Dec 2 22:48:58 UTC 2022 - Yogalakshmi Arunachalam <[email protected]>
+
+- Update to version 2022.13
+ * Update pyproj hook for compatibility with pyproj v3.4.0. (#505)
+
+-------------------------------------------------------------------
Old:
----
pyinstaller-hooks-contrib-2022.12.tar.gz
New:
----
pyinstaller-hooks-contrib-2022.13.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pyinstaller-hooks-contrib.spec ++++++
--- /var/tmp/diff_new_pack.lHgCmR/_old 2022-12-06 14:22:55.665425953 +0100
+++ /var/tmp/diff_new_pack.lHgCmR/_new 2022-12-06 14:22:55.681426041 +0100
@@ -26,7 +26,7 @@
%bcond_with test
%endif
Name: python-pyinstaller-hooks-contrib%{psuffix}
-Version: 2022.12
+Version: 2022.13
Release: 0
Summary: Community maintained hooks for PyInstaller
License: Apache-2.0 OR GPL-2.0-only
++++++ pyinstaller-hooks-contrib-2022.12.tar.gz ->
pyinstaller-hooks-contrib-2022.13.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pyinstaller-hooks-contrib-2022.12/PKG-INFO
new/pyinstaller-hooks-contrib-2022.13/PKG-INFO
--- old/pyinstaller-hooks-contrib-2022.12/PKG-INFO 2022-11-05
12:25:21.953024400 +0100
+++ new/pyinstaller-hooks-contrib-2022.13/PKG-INFO 2022-11-08
16:03:44.886386000 +0100
@@ -1,14 +1,12 @@
Metadata-Version: 2.1
Name: pyinstaller-hooks-contrib
-Version: 2022.12
+Version: 2022.13
Summary: Community maintained hooks for PyInstaller
Home-page: https://github.com/pyinstaller/pyinstaller-hooks-contrib
+Download-URL: https://pypi.org/project/pyinstaller-hooks-contrib
Maintainer: Legorooj
Maintainer-email: [email protected]
-License: UNKNOWN
-Download-URL: https://pypi.org/project/pyinstaller-hooks-contrib
Keywords: pyinstaller development hooks
-Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Natural Language :: English
@@ -368,5 +366,3 @@
If you plan to contribute frequently or are interested in becoming a developer,
send an email to `[email protected]` to let us know.
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pyinstaller-hooks-contrib-2022.12/src/_pyinstaller_hooks_contrib/__init__.py
new/pyinstaller-hooks-contrib-2022.13/src/_pyinstaller_hooks_contrib/__init__.py
---
old/pyinstaller-hooks-contrib-2022.12/src/_pyinstaller_hooks_contrib/__init__.py
2022-11-05 12:25:11.000000000 +0100
+++
new/pyinstaller-hooks-contrib-2022.13/src/_pyinstaller_hooks_contrib/__init__.py
2022-11-08 16:03:35.000000000 +0100
@@ -10,6 +10,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# ------------------------------------------------------------------
-__version__ = '2022.12'
+__version__ = '2022.13'
__maintainer__ = 'Legorooj, bwoodsend'
__uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pyinstaller-hooks-contrib-2022.12/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py
new/pyinstaller-hooks-contrib-2022.13/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py
---
old/pyinstaller-hooks-contrib-2022.12/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py
2022-11-05 12:25:11.000000000 +0100
+++
new/pyinstaller-hooks-contrib-2022.13/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py
2022-11-08 16:03:35.000000000 +0100
@@ -12,7 +12,7 @@
import os
import sys
-from PyInstaller.utils.hooks import collect_data_files, is_module_satisfies
+from PyInstaller.utils.hooks import collect_data_files, is_module_satisfies,
copy_metadata
from PyInstaller.compat import is_win
@@ -56,3 +56,8 @@
from PyInstaller.utils.hooks import logger
logger.warning("Datas for pyproj not found
at:\n{}".format(src_proj_data))
# A runtime hook defines the path for `PROJ_LIB`
+
+# With pyproj 3.4.0, we need to collect package's metadata due to
`importlib.metadata.version(__package__)` call in
+# `__init__.py`. This change was reverted in subsequent releases of pyproj, so
we collect metadata only for 3.4.0.
+if is_module_satisfies("pyproj == 3.4.0"):
+ datas += copy_metadata("pyproj")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pyinstaller-hooks-contrib-2022.12/src/pyinstaller_hooks_contrib.egg-info/PKG-INFO
new/pyinstaller-hooks-contrib-2022.13/src/pyinstaller_hooks_contrib.egg-info/PKG-INFO
---
old/pyinstaller-hooks-contrib-2022.12/src/pyinstaller_hooks_contrib.egg-info/PKG-INFO
2022-11-05 12:25:21.000000000 +0100
+++
new/pyinstaller-hooks-contrib-2022.13/src/pyinstaller_hooks_contrib.egg-info/PKG-INFO
2022-11-08 16:03:44.000000000 +0100
@@ -1,14 +1,12 @@
Metadata-Version: 2.1
Name: pyinstaller-hooks-contrib
-Version: 2022.12
+Version: 2022.13
Summary: Community maintained hooks for PyInstaller
Home-page: https://github.com/pyinstaller/pyinstaller-hooks-contrib
+Download-URL: https://pypi.org/project/pyinstaller-hooks-contrib
Maintainer: Legorooj
Maintainer-email: [email protected]
-License: UNKNOWN
-Download-URL: https://pypi.org/project/pyinstaller-hooks-contrib
Keywords: pyinstaller development hooks
-Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Natural Language :: English
@@ -368,5 +366,3 @@
If you plan to contribute frequently or are interested in becoming a developer,
send an email to `[email protected]` to let us know.
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pyinstaller-hooks-contrib-2022.12/src/pyinstaller_hooks_contrib.egg-info/entry_points.txt
new/pyinstaller-hooks-contrib-2022.13/src/pyinstaller_hooks_contrib.egg-info/entry_points.txt
---
old/pyinstaller-hooks-contrib-2022.12/src/pyinstaller_hooks_contrib.egg-info/entry_points.txt
2022-11-05 12:25:21.000000000 +0100
+++
new/pyinstaller-hooks-contrib-2022.13/src/pyinstaller_hooks_contrib.egg-info/entry_points.txt
2022-11-08 16:03:44.000000000 +0100
@@ -1,4 +1,3 @@
[pyinstaller40]
hook-dirs = _pyinstaller_hooks_contrib.hooks:get_hook_dirs
tests = _pyinstaller_hooks_contrib.tests:get_test_dirs
-