14
0

- Switch to pyproject macros.

- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pythondialog?expand=0&rev=5
This commit is contained in:
2025-06-11 06:26:22 +00:00
committed by Git OBS Bridge
parent 09afe63af7
commit dbd9084471
2 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jun 11 05:55:56 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
- No more greedy globs in %files.
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Oct 6 22:56:24 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com> Thu Oct 6 22:56:24 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-pythondialog # spec file for package python-pythondialog
# #
# Copyright (c) 2022 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
@@ -17,7 +17,6 @@
%define skip_python2 1 %define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pythondialog Name: python-pythondialog
Version: 3.5.3 Version: 3.5.3
Release: 0 Release: 0
@@ -26,7 +25,9 @@ License: LGPL-2.1-only
Group: Development/Languages/Python Group: Development/Languages/Python
URL: http://pythondialog.sourceforge.net/ URL: http://pythondialog.sourceforge.net/
Source: https://files.pythonhosted.org/packages/source/p/pythondialog/pythondialog-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/p/pythondialog/pythondialog-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: dialog Requires: dialog
@@ -41,14 +42,15 @@ Easy writing of graphical interfaces for terminal-based applications
%setup -q -n pythondialog-%{version} %setup -q -n pythondialog-%{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}
%files %{python_files} %files %{python_files}
%{python_sitelib}/* %{python_sitelib}/pythondialog
%{python_sitelib}/pythondialog-%{version}.dist-info
%license COPYING %license COPYING
%doc README.rst ChangeLog AUTHORS %doc README.rst ChangeLog AUTHORS