diff --git a/README.md b/README.md index 340cd47..030385c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-jedi +An autocompletion tool for Python that can be used for text editors. + diff --git a/python-jedi.spec b/python-jedi.spec new file mode 100644 index 0000000..09e2020 --- /dev/null +++ b/python-jedi.spec @@ -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 +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 0.17.2-1mamba +- update to 0.17.2 + +* Sun Apr 18 2021 Silvan Calarco 0.17.0-1mamba +- package created using the webbuild interface