- Disable broken sklearn tests gh#pyinstaller/pyinstaller-hooks-contrib#547
- Update to version 2023.0 * Add hook for minecraft-launcher-lib (#536) * Add hook for nbt (#537) * Have fiona hook collect the package's data files (e.g., the projections database). (#541) * Update fiona hook for compatibility with fiona 1.9.0. (#541) - Update to version 2022.15 * Add a hook for easyocr, which imports recognition backends via imporlib.import_module() and has a number of datafiles for different languages. * Users can set which languages to include datafiles for with a hook option. (#530) * Add hook for charset-normalizer to fix ModuleNotFoundError: No module named 'charset_normalizer.md__mypyc'. (#534) * Update shapely hook for compatibility with shapely >= 2.0.0. (#527) * Added hooks-config.rst document which documents hook options. It is referred to from README.md. (#530) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyinstaller-hooks-contrib?expand=0&rev=9
This commit is contained in:
parent
dd5f643bb3
commit
e9f6fde078
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5ae8da3a92cf20e37b3e00604d0c3468896e7d746e5c1449473597a724331b0b
|
|
||||||
size 93936
|
|
3
pyinstaller-hooks-contrib-2023.0.tar.gz
Normal file
3
pyinstaller-hooks-contrib-2023.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bd578781cd6a33ef713584bf3726f7cd60a3e656ec08a6cc7971e39990808cc0
|
||||||
|
size 95399
|
@ -1,3 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 15 11:35:07 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
- Disable broken sklearn tests gh#pyinstaller/pyinstaller-hooks-contrib#547
|
||||||
|
- Update to version 2023.0
|
||||||
|
* Add hook for minecraft-launcher-lib (#536)
|
||||||
|
* Add hook for nbt (#537)
|
||||||
|
* Have fiona hook collect the package's data files (e.g., the projections
|
||||||
|
database). (#541)
|
||||||
|
* Update fiona hook for compatibility with fiona 1.9.0. (#541)
|
||||||
|
- Update to version 2022.15
|
||||||
|
* Add a hook for easyocr, which imports recognition backends via
|
||||||
|
imporlib.import_module() and has a number of datafiles for different
|
||||||
|
languages.
|
||||||
|
* Users can set which languages to include datafiles for with a hook option.
|
||||||
|
(#530)
|
||||||
|
* Add hook for charset-normalizer to fix ModuleNotFoundError: No module
|
||||||
|
named 'charset_normalizer.md__mypyc'. (#534)
|
||||||
|
* Update shapely hook for compatibility with shapely >= 2.0.0. (#527)
|
||||||
|
* Added hooks-config.rst document which documents hook options. It is
|
||||||
|
referred to from README.md. (#530)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Dec 13 16:33:02 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
Tue Dec 13 16:33:02 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file
|
# spec file
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,7 +16,6 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
%global flavor @BUILD_FLAVOR@%{nil}
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||||||
%if "%{flavor}" == "test"
|
%if "%{flavor}" == "test"
|
||||||
%define psuffix -%{flavor}
|
%define psuffix -%{flavor}
|
||||||
@ -26,7 +25,7 @@
|
|||||||
%bcond_with test
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
Name: python-pyinstaller-hooks-contrib%{psuffix}
|
Name: python-pyinstaller-hooks-contrib%{psuffix}
|
||||||
Version: 2022.14
|
Version: 2023.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Community maintained hooks for PyInstaller
|
Summary: Community maintained hooks for PyInstaller
|
||||||
License: Apache-2.0 OR GPL-2.0-only
|
License: Apache-2.0 OR GPL-2.0-only
|
||||||
@ -44,7 +43,10 @@ BuildRequires: %{python_module pytest}
|
|||||||
BuildRequires: timezone
|
BuildRequires: timezone
|
||||||
# SECTION optional, the depending tests would be skipped without these
|
# SECTION optional, the depending tests would be skipped without these
|
||||||
# most of the libraries enable only two tests, so adding just scikit-learn to run at least any tests
|
# most of the libraries enable only two tests, so adding just scikit-learn to run at least any tests
|
||||||
BuildRequires: %{python_module scikit-learn}
|
#
|
||||||
|
# Disabled because it's broken with the latest release 1.2.1
|
||||||
|
# gh#pyinstaller/pyinstaller-hooks-contrib#547
|
||||||
|
# BuildRequires: %{python_module scikit-learn}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
%endif
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@ -53,7 +55,7 @@ BuildRequires: %{python_module scikit-learn}
|
|||||||
Community maintained hooks for PyInstaller
|
Community maintained hooks for PyInstaller
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n pyinstaller-hooks-contrib-%{version}
|
%autosetup -p1 -n pyinstaller-hooks-contrib-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
@ -73,7 +75,8 @@ Community maintained hooks for PyInstaller
|
|||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license LICENSE LICENSE.APL.txt LICENSE.GPL.txt
|
%license LICENSE LICENSE.APL.txt LICENSE.GPL.txt
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/_pyinstaller_hooks_contrib
|
||||||
|
%{python_sitelib}/pyinstaller_hooks_contrib-%{version}*-info
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user