14
0

- Switch to autosetup and pyproject macros.

- List files and directories explicitly in %files.
- Add patch support-new-poetry.patch:
  * Do not use deprecated sections in pyproject.toml.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-srcinfo?expand=0&rev=16
This commit is contained in:
2025-06-16 02:53:43 +00:00
committed by Git OBS Bridge
parent 953e461d9a
commit 9a7b3f4c91
3 changed files with 43 additions and 6 deletions

View File

@@ -22,10 +22,12 @@ Version: 0.1.2
Release: 0
Summary: Python library to parse Arch SRCINFO files
License: ISC
Group: Development/Languages/Python
URL: https://github.com/kyrias/python-srcinfo
Source: https://files.pythonhosted.org/packages/source/s/srcinfo/srcinfo-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
# PATCH-FIX-OPENSUSE Do not use deprecated sections in pyproject.toml
Patch0: support-new-poetry.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core}
BuildRequires: alts
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -42,14 +44,14 @@ BuildRequires: %{python_module pytest}
Python library to parse Arch .SRCINFO files.
%prep
%setup -q -n srcinfo-%{version}
%autosetup -p1 -n srcinfo-%{version}
mv test/__init__.py test_srcinfo.py
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/parse_srcinfo
%python_expand %fdupes %{buildroot}%{$python_sitelib}
@@ -63,6 +65,7 @@ mv test/__init__.py test_srcinfo.py
%doc README.rst
%license LICENSE
%python_alternative %{_bindir}/parse_srcinfo
%{python_sitelib}/srcinfo*/
%{python_sitelib}/srcinfo
%{python_sitelib}/srcinfo-%{version}.dist-info
%changelog