bdcdcffab9
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/pyproject-rpm-macros#38ef5fb85baa8d9529853c325ddd5e3fb2ec08a7
50 lines
955 B
RPMSpec
50 lines
955 B
RPMSpec
Name: python-poetry-core
|
|
Version: 1.0.0
|
|
Release: 0%{?dist}
|
|
Summary: Poetry PEP 517 Build Backend
|
|
|
|
License: MIT
|
|
URL: https://pypi.org/project/poetry-core/
|
|
Source0: %{pypi_source poetry-core}
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: python3-devel
|
|
BuildRequires: pyproject-rpm-macros
|
|
|
|
%description
|
|
Test a build with pyproject.toml backend-path = [.]
|
|
poetry-core builds with poetry-core.
|
|
|
|
|
|
%package -n python3-poetry-core
|
|
Summary: %{summary}
|
|
|
|
%description -n python3-poetry-core
|
|
...
|
|
|
|
|
|
%prep
|
|
%autosetup -p1 -n poetry-core-%{version}
|
|
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires
|
|
|
|
|
|
%build
|
|
%if 0%{?fedora} < 33 && 0%{?rhel} < 9
|
|
# the old pip version cannot handle backend-path properly, let's help it:
|
|
export PYTHONPATH=$PWD
|
|
%endif
|
|
%pyproject_wheel
|
|
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files poetry
|
|
|
|
|
|
%files -n python3-poetry-core -f %{pyproject_files}
|
|
%doc README.md
|
|
%license LICENSE
|