From aa7b1d74871ef32d14c26602de30490235b9597d12634e8b0b98a24f8c7f0769 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Tue, 19 Dec 2023 23:44:28 +0000 Subject: [PATCH] - Switch to pyproject macros. - Specify the module to test to avoid Python 3.12 failures. - Stop using greedy globs in %files. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mock-open?expand=0&rev=5 --- python-mock-open.changes | 7 +++++++ python-mock-open.spec | 15 ++++++++------- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/python-mock-open.changes b/python-mock-open.changes index 7f534b7..a9d7570 100644 --- a/python-mock-open.changes +++ b/python-mock-open.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Dec 19 23:43:07 UTC 2023 - Steve Kowalik + +- Switch to pyproject macros. +- Specify the module to test to avoid Python 3.12 failures. +- Stop using greedy globs in %files. + ------------------------------------------------------------------- Mon Dec 14 01:05:48 UTC 2020 - Benjamin Greiner diff --git a/python-mock-open.spec b/python-mock-open.spec index c5ec60c..7d2bd2b 100644 --- a/python-mock-open.spec +++ b/python-mock-open.spec @@ -1,7 +1,7 @@ # # spec file for package python-mock-open # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,16 +16,16 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-mock-open Version: 1.4.0 Release: 0 Summary: A better mock for file I/O License: MIT -Group: Development/Languages/Python URL: https://github.com/nivbend/mock-open Source: https://files.pythonhosted.org/packages/source/m/mock-open/mock-open-%{version}.tar.gz +BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros BuildArch: noarch @@ -44,18 +44,19 @@ A better mock for file I/O %setup -q -n mock-open-%{version} %build -%python_build +%pyproject_wheel %install -%python_install +%pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %check -%pyunittest -v +%pyunittest -v mock_open.test %files %{python_files} %doc README.md %license LICENSE -%{python_sitelib}/* +%{python_sitelib}/mock_open +%{python_sitelib}/mock_open-%{version}.dist-info %changelog