python-jedi/python-jedi.spec

56 lines
1.6 KiB
RPMSpec
Raw Permalink Normal View History

Name: python-jedi
Version: 0.17.2
Release: 2mamba
Summary: An autocompletion tool for Python that can be used for text editors
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/davidhalter/jedi
Source: https://pypi.debian.net/jedi/jedi-%{version}.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: libpython3-devel
BuildRequires: python3.7dist(parso)
## AUTOBUILDREQ-END
%description
%{summary}.
%if 0%{?with_pyver}
%pyver_package
%endif
%prep
%setup -q -n jedi-%{version}
sed -i "s|parso.*|parso>=0.7.0|" requirements.txt jedi.egg-info/requires.txt
%build
CFLAGS="%{optflags}" %{__python} setup.py build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%{__python} setup.py install \
-O1 --skip-build \
--root="%{buildroot}" \
--install-headers=%{python_inc} \
--install-lib=%{python_sitearch} \
--record=%{name}.filelist
sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist
%files %{?pyappend} -f %{name}.filelist
%defattr(-,root,root)
%dir %{python_sitearch}/jedi-%{version}-py*.egg-info
%{python_sitearch}/jedi-%{version}-py*.egg-info/*
%changelog
* Sun Nov 28 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.17.2-2mamba
- remove version requirement for parso<0.8.0
* Sun Apr 18 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.17.2-1mamba
- update to 0.17.2
* Sun Apr 18 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.17.0-1mamba
- package created using the webbuild interface