Compare commits
10 Commits
43fbda34db
...
20da6c1b96
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20da6c1b96 | ||
|
|
0210013da6 | ||
|
|
8bc802e77f | ||
|
|
4aeadc5e80 | ||
|
|
06d4313c71 | ||
|
|
b699a9ae19 | ||
|
|
e8d074b3a4 | ||
|
|
635cad787e | ||
|
|
53033f209b | ||
|
|
b677f60c56 |
Binary file not shown.
BIN
pep517-0.13.0.tar.gz
Normal file
BIN
pep517-0.13.0.tar.gz
Normal file
Binary file not shown.
@ -1,44 +1,46 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-pep517
|
Name: python-pep517
|
||||||
Version: 0.11.0
|
Version: 0.13.0
|
||||||
Release: 2
|
Release: 3
|
||||||
Summary: Wrappers to build Python packages using PEP 517 hooks
|
Summary: Wrappers to build Python packages using PEP 517 hooks
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/pypa/pep517
|
URL: https://github.com/pypa/pep517
|
||||||
Source0: https://files.pythonhosted.org/packages/da/12/6d373f746ad1cec5ab9415d6a1df54ecc0a9001124bd771742755dcecded/pep517-0.11.0.tar.gz
|
Source0: https://files.pythonhosted.org/packages/4d/19/e11fcc88288f68ae48e3aa9cf5a6fd092a88e629cb723465666c44d487a0/pep517-0.13.0.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Wrappers to build Python packages using PEP 517 hooks
|
Wrappers to build Python packages using PEP 517 hooks
|
||||||
|
|
||||||
|
|
||||||
%package -n python3-pep517
|
%package -n python3-pep517
|
||||||
Summary: Wrappers to build Python packages using PEP 517 hooks
|
Summary: Wrappers to build Python packages using PEP 517 hooks
|
||||||
Provides: python-pep517
|
Provides: python-pep517
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-wheel
|
||||||
|
BuildRequires: python3-pdm-pep517
|
||||||
|
BuildRequires: python3-flit-core
|
||||||
Requires: python3-toml
|
Requires: python3-toml
|
||||||
Requires: python3-tomli
|
Requires: python3-tomli
|
||||||
# Requires: python3-importlib_metadata
|
Requires: python3-importlib-metadata
|
||||||
Requires: python3-zipp
|
Requires: python3-zipp
|
||||||
%description -n python3-pep517
|
%description -n python3-pep517
|
||||||
Wrappers to build Python packages using PEP 517 hooks
|
Wrappers to build Python packages using PEP 517 hooks
|
||||||
|
|
||||||
|
|
||||||
%package help
|
%package help
|
||||||
Summary: Development documents and examples for pep517
|
Summary: Development documents and examples for pep517
|
||||||
Provides: python3-pep517-doc
|
Provides: python3-pep517-doc
|
||||||
%description help
|
%description help
|
||||||
Wrappers to build Python packages using PEP 517 hooks
|
Wrappers to build Python packages using PEP 517 hooks
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n pep517-0.11.0
|
%autosetup -n pep517-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%pyproject_install pep517==%{version}
|
||||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
||||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||||
@ -67,11 +69,24 @@ mv %{buildroot}/doclist.lst .
|
|||||||
|
|
||||||
%files -n python3-pep517 -f filelist.lst
|
%files -n python3-pep517 -f filelist.lst
|
||||||
%dir %{python3_sitelib}/*
|
%dir %{python3_sitelib}/*
|
||||||
|
%{python3_sitelib}/pep517
|
||||||
|
|
||||||
%files help -f doclist.lst
|
%files help -f doclist.lst
|
||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 25 2023 caodongxia <caodongxia@h-partners.com> - 0.13.0-3
|
||||||
|
- Adapting to the pyproject.toml compilation mode
|
||||||
|
|
||||||
|
* Fri Mar 24 2023 xu_ping <xuping33@h-partners.com> - 0.13.0-2
|
||||||
|
- Adaptation to setup.py
|
||||||
|
|
||||||
|
* Tue Nov 08 2022 jiangxinyu <jiangxinyu@kylinos.cn> - 0.13.0-1
|
||||||
|
- Upgrade package to version 0.13.0
|
||||||
|
|
||||||
|
* Mon Jul 25 2022 liyanan <liyanan32@h-partners.com> - 0.11.0-3
|
||||||
|
- Remove python3.10dist(toml) installation dependencies
|
||||||
|
|
||||||
* Fri Jun 17 2022 liukuo <liukuo@kylinos.cn> - 0.11.0-2
|
* Fri Jun 17 2022 liukuo <liukuo@kylinos.cn> - 0.11.0-2
|
||||||
- License compliance rectification
|
- License compliance rectification
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
version_control:github
|
version_control: github
|
||||||
src_repo:OpenMandrivaAssociation/python-pep517
|
src_repo: OpenMandrivaAssociation/python-pep517
|
||||||
tag_prefix:^v
|
tag_prefix: "^release-"
|
||||||
seperator:.
|
separator: "."
|
||||||
|
git_url: https://github.com/OpenMandrivaAssociation/python-pep517.git
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user