Compare commits
10 Commits
ed89c00a96
...
800929bc55
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
800929bc55 | ||
|
|
91a2ed9c53 | ||
|
|
9ed4291c1e | ||
|
|
b2699d9aa4 | ||
|
|
e55605ba7c | ||
|
|
e798bd7230 | ||
|
|
6696919998 | ||
|
|
8becd83fde | ||
|
|
0445987af5 | ||
|
|
467a96319e |
Binary file not shown.
BIN
astroid-3.1.0.tar.gz
Normal file
BIN
astroid-3.1.0.tar.gz
Normal file
Binary file not shown.
@ -1,11 +1,11 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-astroid
|
Name: python-astroid
|
||||||
Version: 2.9.3
|
Version: 3.1.0
|
||||||
Release: 2
|
Release: 1
|
||||||
Summary: An abstract syntax tree for Python with inference support.
|
Summary: An abstract syntax tree for Python with inference support.
|
||||||
License: LGPL-2.1-only and GPL-2.0-or-later
|
License: LGPL-2.1-only and GPL-2.0-or-later
|
||||||
URL: https://github.com/PyCQA/astroid
|
URL: https://github.com/pylint-dev/astroid
|
||||||
Source0: https://files.pythonhosted.org/packages/2d/be/33923f5dee9f7119abbaa688833b0c71c2ef4b66af3b06ffc64fc8c341ae/astroid-2.9.3.tar.gz
|
Source0: https://github.com/pylint-dev/astroid/archive/v%{version}/astroid-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%description
|
%description
|
||||||
An abstract syntax tree for Python with inference support.
|
An abstract syntax tree for Python with inference support.
|
||||||
@ -14,17 +14,21 @@ source code. It is currently the library powering pylint capabilities.
|
|||||||
|
|
||||||
%package -n python3-astroid
|
%package -n python3-astroid
|
||||||
Summary: An abstract syntax tree for Python with inference support.
|
Summary: An abstract syntax tree for Python with inference support.
|
||||||
Provides: python-astroid
|
Provides: python-astroid = %{version}-%{release}
|
||||||
# Base build requires
|
# Base build requires
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-pbr
|
BuildRequires: python3-pbr
|
||||||
BuildRequires: python3-pip
|
BuildRequires: python3-pip
|
||||||
BuildRequires: python3-wheel
|
BuildRequires: python3-wheel
|
||||||
|
BuildRequires: python3-editables
|
||||||
|
BuildRequires: python3-hatch-vcs
|
||||||
|
BuildRequires: python3-hatchling
|
||||||
BuildRequires: python3-pytest-runner
|
BuildRequires: python3-pytest-runner
|
||||||
# General requires
|
# General requires
|
||||||
BuildRequires: python3-lazy-object-proxy
|
BuildRequires: python3-lazy-object-proxy
|
||||||
BuildRequires: python3-six
|
BuildRequires: python3-six
|
||||||
|
BuildRequires: python3-typed-ast >= 1.3.0
|
||||||
BuildRequires: python3-wrapt
|
BuildRequires: python3-wrapt
|
||||||
# General requires
|
# General requires
|
||||||
AutoReq: no
|
AutoReq: no
|
||||||
@ -49,44 +53,33 @@ source code. It is currently the library powering pylint capabilities.
|
|||||||
%autosetup -n astroid-%{version}
|
%autosetup -n astroid-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%pyproject_install
|
||||||
|
|
||||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
%files -n python3-astroid
|
||||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
%license LICENSE
|
||||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
%{python3_sitelib}/astroid
|
||||||
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
%{python3_sitelib}/astroid*.dist-info/
|
||||||
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
|
||||||
pushd %{buildroot}
|
|
||||||
if [ -d usr/lib ]; then
|
|
||||||
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
|
||||||
fi
|
|
||||||
if [ -d usr/lib64 ]; then
|
|
||||||
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
|
|
||||||
fi
|
|
||||||
if [ -d usr/bin ]; then
|
|
||||||
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
|
|
||||||
fi
|
|
||||||
if [ -d usr/sbin ]; then
|
|
||||||
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
|
|
||||||
fi
|
|
||||||
touch doclist.lst
|
|
||||||
if [ -d usr/share/man ]; then
|
|
||||||
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
|
||||||
fi
|
|
||||||
popd
|
|
||||||
mv %{buildroot}/filelist.lst .
|
|
||||||
mv %{buildroot}/doclist.lst .
|
|
||||||
|
|
||||||
%files -n python3-astroid -f filelist.lst
|
|
||||||
%dir %{python3_sitelib}/*
|
|
||||||
|
|
||||||
%files help -f doclist.lst
|
|
||||||
%{_docdir}/*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Feb 25 2024 jiangxinyu <jiangxinyu@kylinos.cn> - 3.1.0-1
|
||||||
|
- Update package to version 3.1.0
|
||||||
|
Fix coverage artifact combination step
|
||||||
|
|
||||||
|
* Tue Nov 14 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 3.0.1-1
|
||||||
|
- Update package to version 3.0.1
|
||||||
|
|
||||||
|
* Wed Oct 11 2023 shangjiwei <cyrus_shang@163.com> - 2.15.6-1
|
||||||
|
- update to 2.17.5
|
||||||
|
|
||||||
|
* Sun Jun 25 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 2.15.5-1
|
||||||
|
- Update package to version 2.15.5
|
||||||
|
|
||||||
|
* Mon May 15 2023 Dongxing Wang <dxwangk@isoftstone.com> - 2.15.4-1
|
||||||
|
- update to 2.15.4 for pylint upgrade 2.17.2
|
||||||
|
|
||||||
* Mon Jun 13 2022 Ge Wang <wangge20@h-partners.com> - 2.9.3-2
|
* Mon Jun 13 2022 Ge Wang <wangge20@h-partners.com> - 2.9.3-2
|
||||||
- fix install failure due to python-wrapt upgraded
|
- fix install failure due to python-wrapt upgraded
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user