14
0

- Switch to pyproject macros.

- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tinyrecord?expand=0&rev=6
This commit is contained in:
2025-05-02 03:23:14 +00:00
committed by Git OBS Bridge
parent be594b4879
commit 12f3fe26f6
2 changed files with 13 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri May 2 03:22:45 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
- No more greedy globs in %files.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Nov 3 07:48:26 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com> Wed Nov 3 07:48:26 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-tinyrecord # spec file for package python-tinyrecord
# #
# Copyright (c) 2021 SUSE LLC # Copyright (c) 2025 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,19 +16,19 @@
# #
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global skip_python2 1 %global skip_python2 1
Name: python-tinyrecord Name: python-tinyrecord
Version: 0.2.0 Version: 0.2.0
Release: 0 Release: 0
Summary: Atomic transactions for TinyDB Summary: Atomic transactions for TinyDB
License: MIT License: MIT
Group: Development/Languages/Python
URL: https://github.com/eugene-eeo/tinyrecord URL: https://github.com/eugene-eeo/tinyrecord
Source: https://github.com/eugene-eeo/tinyrecord/archive/v%{version}.tar.gz Source: https://github.com/eugene-eeo/tinyrecord/archive/v%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module tinydb} BuildRequires: %{python_module tinydb}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-tinydb Requires: python-tinydb
@@ -43,10 +43,10 @@ Atomic transactions for TinyDB.
%setup -q -n tinyrecord-%{version} %setup -q -n tinyrecord-%{version}
%build %build
%python_build %pyproject_wheel
%install %install
%python_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check %check
@@ -55,6 +55,7 @@ Atomic transactions for TinyDB.
%files %{python_files} %files %{python_files}
%license LICENSE %license LICENSE
%doc README.rst %doc README.rst
%{python_sitelib}/* %{python_sitelib}/tinyrecord
%{python_sitelib}/tinyrecord-%{version}.dist-info
%changelog %changelog