python-astroid/python-astroid.spec
2021-11-10 09:58:17 +08:00

92 lines
3.0 KiB
RPMSpec

%global _empty_manifest_terminate_build 0
Name: python-astroid
Version: 2.1.0
Release: 1
Summary: An abstract syntax tree for Python with inference support.
License: LGPL-2.1-only and GPL-2.0-or-later
URL: https://github.com/PyCQA/astroid
Source0: https://files.pythonhosted.org/packages/df/d1/b45e0bbfe0ad2253b1d589afd09f94fcf4407b4c7c5fc4d3e3540cc13c75/astroid-2.1.0.tar.gz
BuildArch: noarch
%description
An abstract syntax tree for Python with inference support.
The aim of this module is to provide a common base representation of python
source code. It is currently the library powering pylint capabilities.
%package -n python3-astroid
Summary: An abstract syntax tree for Python with inference support.
Provides: python-astroid
# Base build requires
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pbr
BuildRequires: python3-pip
BuildRequires: python3-wheel
BuildRequires: python3-pytest-runner
# General requires
BuildRequires: python3-lazy-object-proxy
BuildRequires: python3-six
BuildRequires: python3-wrapt
# General requires
Requires: python3-lazy-object-proxy
Requires: python3-six
Requires: python3-wrapt
Requires: python3-pytest-runner
%description -n python3-astroid
An abstract syntax tree for Python with inference support.
The aim of this module is to provide a common base representation of python
source code. It is currently the library powering pylint capabilities.
%package help
Summary: An abstract syntax tree for Python with inference support.
Provides: python3-astroid-doc
%description help
An abstract syntax tree for Python with inference support.
The aim of this module is to provide a common base representation of python
source code. It is currently the library powering pylint capabilities.
%prep
%autosetup -n astroid-%{version}
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
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
* Fri Nov 05 2021 OpenStack_SIG <openstack@openeuler.org> - 2.1.0-1
- Init package python3-astroid to version 2.1.0