87 lines
2.7 KiB
RPMSpec
87 lines
2.7 KiB
RPMSpec
%global _empty_manifest_terminate_build 0
|
|
Name: python-jedi
|
|
Version: 0.19.0
|
|
Release: 1
|
|
Summary: A static analysis tool for Python that is typically used in IDEs/editors plugins
|
|
License: MIT
|
|
URL: https://github.com/davidhalter/jedi
|
|
Source0: https://files.pythonhosted.org/packages/c2/25/273288df952e07e3190446efbbb30b0e4871a0d63b4246475f3019d4f55e/jedi-0.19.0.tar.gz
|
|
BuildArch: noarch
|
|
|
|
|
|
%description
|
|
Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins.
|
|
It has a focus on autocompletion and goto functionality.
|
|
Other features include refactoring, code search and finding references.
|
|
|
|
%package -n python3-jedi
|
|
Summary: A static analysis tool for Python that is typically used in IDEs/editors plugins
|
|
Provides: python-jedi = %{version}-%{release}
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
|
|
%description -n python3-jedi
|
|
Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins.
|
|
It has a focus on autocompletion and goto functionality.
|
|
Other features include refactoring, code search and finding references.
|
|
|
|
%package help
|
|
Summary: Development documents and examples for jedi
|
|
Provides: python3-jedi-doc
|
|
|
|
%description help
|
|
Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins.
|
|
It has a focus on autocompletion and goto functionality.
|
|
Other features include refactoring, code search and finding references.
|
|
|
|
%prep
|
|
%autosetup -n jedi-%{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-jedi -f filelist.lst
|
|
%dir %{python3_sitelib}/*
|
|
|
|
%files help -f doclist.lst
|
|
%{_docdir}/*
|
|
|
|
%changelog
|
|
* Mon Mar 11 2024 GuoCe <guoce@kylinos.cn> - 0.19.0-1
|
|
- Update package to version 0.19.0
|
|
|
|
* Thu Nov 10 2022 wangjunqi <wangjunqi@kylinos.cn> - 0.18.1-1
|
|
- Update package to version 0.18.1
|
|
|
|
* Sat Sep 25 2021 Li Chao <clouds@isrc.iscas.ac.cn> - 0.18.0-1
|
|
- First packaging for version 0.18
|
|
|