blob: 3fb5fb919165214472c0d40e23e4db415520a227 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
%global _empty_manifest_terminate_build 0
%global pypi_name pyupgrade
%global _description %{expand:
A tool (and pre-commit hook) to automatically upgrade syntax for newer versions of the language.}
Name: python-%{pypi_name}
Version: 3.10.1
Release: 1
Summary: A tool to automatically upgrade syntax for newer versions.
License: MIT
URL: https://github.com/asottile/pyupgrade
Source0: %{url}/archive/%{version}/%{pypi_name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-setuptools
BuildRequires: python3-setuptools_scm
%description %_description
%package -n python3-%{pypi_name}
Summary: A tool to automatically upgrade syntax for newer versions.
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-%{pypi_name} %_description
%prep
%autosetup -n %{pypi_name}-%{version}
%build
%py3_build
%install
%py3_install
%files -n python3-%{pypi_name}
%license LICENSE
%doc README.md
%{_bindir}/pyupgrade
%{python3_sitelib}/%{pypi_name}/
%{python3_sitelib}/%{pypi_name}-%{version}-*.egg-info/
%changelog
* Wed Aug 23 2023 li-miaomiao_zhr <mmlidc@isoftstone.com> - 3.10.1-1
- Package init
|