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 2025-01-09 15:07:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyinstaller-hooks-contrib (Old)
and /work/SRC/openSUSE:Factory/.python-pyinstaller-hooks-contrib.new.1881
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pyinstaller-hooks-contrib"
Thu Jan 9 15:07:36 2025 rev:9 rq:1235754 version:2024.11
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pyinstaller-hooks-contrib/python-pyinstaller-hooks-contrib.changes
2024-01-31 23:54:31.054650756 +0100
+++
/work/SRC/openSUSE:Factory/.python-pyinstaller-hooks-contrib.new.1881/python-pyinstaller-hooks-contrib.changes
2025-01-09 15:08:09.754110646 +0100
@@ -1,0 +2,18 @@
+Tue Jan 7 09:49:19 UTC 2025 - Markéta Machová <[email protected]>
+
+- Update to 2024.11
+ * Update torch hook to suppress creation of symbolic links to the
+ top-level application directory
+ * Update sklearn.tree hook for compatibility with scikit-learn v1.6.0
+- Downloaded upstream conftest.py missing in the tarball
+
+-------------------------------------------------------------------
+Fri Dec 13 10:56:25 UTC 2024 - Markéta Machová <[email protected]>
+
+- update to 2024.10
+ * Add many hooks, updated many hooks.
+ * Released sdists and tagged GitHub source archives contain the
+ changelog entries for their current release.
+ * See the complete changelog in CHANGELOG.rst.
+
+-------------------------------------------------------------------
Old:
----
pyinstaller-hooks-contrib-2024.0.tar.gz
New:
----
conftest.py
pyinstaller_hooks_contrib-2024.11.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pyinstaller-hooks-contrib.spec ++++++
--- /var/tmp/diff_new_pack.Y60iac/_old 2025-01-09 15:08:10.446139424 +0100
+++ /var/tmp/diff_new_pack.Y60iac/_new 2025-01-09 15:08:10.450139590 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-pyinstaller-hooks-contrib
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -26,13 +26,16 @@
%endif
%{?sle15_python_module_pythons}
Name: python-pyinstaller-hooks-contrib%{psuffix}
-Version: 2024.0
+Version: 2024.11
Release: 0
Summary: Community maintained hooks for PyInstaller
License: Apache-2.0 OR GPL-2.0-only
URL: https://github.com/pyinstaller/pyinstaller-hooks-contrib
-Source:
https://files.pythonhosted.org/packages/source/p/pyinstaller-hooks-contrib/pyinstaller-hooks-contrib-%{version}.tar.gz
+Source:
https://files.pythonhosted.org/packages/source/p/pyinstaller_hooks_contrib/pyinstaller_hooks_contrib-%{version}.tar.gz
+# conftest.py not present in the tarball
+Source1:
https://raw.githubusercontent.com/pyinstaller/pyinstaller-hooks-contrib/refs/heads/master/tests/conftest.py
BuildRequires: %{python_module setuptools >= 30.3.0}
+BuildRequires: %{python_module pip}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
@@ -53,26 +56,28 @@
Community maintained hooks for PyInstaller
%prep
-%autosetup -p1 -n pyinstaller-hooks-contrib-%{version}
+%autosetup -p1 -n pyinstaller_hooks_contrib-%{version}
+cp %{SOURCE1} tests/
%build
-%python_build
+%pyproject_wheel
%install
%if !%{with test}
-%python_install
+%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%check
%if %{with test}
-%pytest src/_pyinstaller_hooks_contrib/tests
+# pytest-runner is dead in Python 3.13
+%pytest -k "not pytest_runner"
%endif
%if !%{with test}
%files %{python_files}
%doc README.md
-%license LICENSE LICENSE.APL.txt LICENSE.GPL.txt
+%license LICENSE
%{python_sitelib}/_pyinstaller_hooks_contrib
%{python_sitelib}/pyinstaller_hooks_contrib-%{version}*-info
%endif
++++++ conftest.py ++++++
# ------------------------------------------------------------------
# Copyright (c) 2020 PyInstaller Development Team.
#
# This file is distributed under the terms of the GNU General Public
# License (version 2.0 or later).
#
# The full license is available in LICENSE, distributed with
# this software.
#
# SPDX-License-Identifier: GPL-2.0-or-later
# ------------------------------------------------------------------
# Import all fixtures from PyInstaller into the tests.
from PyInstaller.utils.conftest import * # noqa: F401,F403