update to 0.17.2 [release 0.17.2-1mamba;Sun Apr 18 2021]

This commit is contained in:
Silvan Calarco 2024-01-06 11:19:20 +01:00
parent 31498c8380
commit b4fa93e21d
2 changed files with 53 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-jedi # python-jedi
An autocompletion tool for Python that can be used for text editors.

51
python-jedi.spec Normal file
View File

@ -0,0 +1,51 @@
Name: python-jedi
Version: 0.17.2
Release: 1mamba
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}
%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 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