python-jedi/python-jedi.spec

87 lines
2.7 KiB
RPMSpec
Raw Normal View History

2022-11-10 10:27:55 +08:00
%global _empty_manifest_terminate_build 0
Name: python-jedi
2024-03-11 17:04:47 +08:00
Version: 0.19.0
2022-11-10 10:27:55 +08:00
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
2024-03-11 17:04:47 +08:00
Source0: https://files.pythonhosted.org/packages/c2/25/273288df952e07e3190446efbbb30b0e4871a0d63b4246475f3019d4f55e/jedi-0.19.0.tar.gz
2022-11-10 10:27:55 +08:00
BuildArch: noarch
2021-09-26 12:53:50 +08:00
%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.
2022-11-10 10:27:55 +08:00
%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
2021-09-26 12:53:50 +08:00
2022-11-10 10:27:55 +08:00
%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.
2021-09-26 12:53:50 +08:00
2022-11-10 10:27:55 +08:00
%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}
2021-09-26 12:53:50 +08:00
%build
%py3_build
%install
%py3_install
2022-11-10 10:27:55 +08:00
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 .
2021-09-26 12:53:50 +08:00
2022-11-10 10:27:55 +08:00
%files -n python3-jedi -f filelist.lst
%dir %{python3_sitelib}/*
2021-09-26 12:53:50 +08:00
2022-11-10 10:27:55 +08:00
%files help -f doclist.lst
%{_docdir}/*
2021-09-26 12:53:50 +08:00
%changelog
2024-03-11 17:04:47 +08:00
* Mon Mar 11 2024 GuoCe <guoce@kylinos.cn> - 0.19.0-1
- Update package to version 0.19.0
2022-11-10 10:27:55 +08:00
* Thu Nov 10 2022 wangjunqi <wangjunqi@kylinos.cn> - 0.18.1-1
- Update package to version 0.18.1
2021-09-26 12:53:50 +08:00
* Sat Sep 25 2021 Li Chao <clouds@isrc.iscas.ac.cn> - 0.18.0-1
- First packaging for version 0.18
2022-11-10 10:27:55 +08:00