!3 UpdatePackage
From: @Wangjunqi123 Reviewed-by: @small_leek, @yangzhao_kl Signed-off-by: @yangzhao_kl, @small_leek
This commit is contained in:
commit
262193d736
Binary file not shown.
Binary file not shown.
BIN
jedi-0.18.1.tar.gz
Normal file
BIN
jedi-0.18.1.tar.gz
Normal file
Binary file not shown.
@ -1,48 +1,83 @@
|
|||||||
%global django_stubs_commit fd057010f6cbf176f57d1099e82be46d39b99cb9
|
%global _empty_manifest_terminate_build 0
|
||||||
%global typeshed_commit d38645247816f862cafeed21a8f4466d306aacf3
|
|
||||||
|
|
||||||
Name: python-jedi
|
Name: python-jedi
|
||||||
Version: 0.18.0
|
Version: 0.18.1
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A static analysis tool for Python that is typically used in IDEs/editors plugins
|
Summary: A static analysis tool for Python that is typically used in IDEs/editors plugins
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/davidhalter/jedi
|
URL: https://github.com/davidhalter/jedi
|
||||||
Source0: https://github.com/davidhalter/jedi/archive/v%{version}/jedi-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/c2/25/273288df952e07e3190446efbbb30b0e4871a0d63b4246475f3019d4f55e/jedi-0.18.1.tar.gz
|
||||||
Source1: https://github.com/davidhalter/django-stubs/archive/%{django_stubs_commit}/django-stubs-%{django_stubs_commit}.tar.gz
|
|
||||||
Source2: https://github.com/davidhalter/typeshed/archive/%{typeshed_commit}/typeshed-%{typeshed_commit}.tar.gz
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Jedi is a static analysis tool for Python that is typically used in IDEs/editors plugins.
|
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.
|
It has a focus on autocompletion and goto functionality.
|
||||||
Other features include refactoring, code search and finding references.
|
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
|
%prep
|
||||||
%setup -n jedi-%{version}
|
%autosetup -n jedi-%{version}
|
||||||
|
|
||||||
pushd jedi/third_party
|
|
||||||
rmdir django-stubs typeshed
|
|
||||||
tar xf %{SOURCE1} && mv django-stubs-%{django_stubs_commit} django-stubs
|
|
||||||
tar xf %{SOURCE2} && mv typeshed-%{typeshed_commit} typeshed
|
|
||||||
popd
|
|
||||||
cp -p jedi/third_party/django-stubs/LICENSE.txt LICENSE-django-stubs.txt
|
|
||||||
cp -p jedi/third_party/typeshed/LICENSE LICENSE-typeshed.txt
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_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
|
%files -n python3-jedi -f filelist.lst
|
||||||
%license LICENSE.txt LICENSE-django-stubs.txt LICENSE-typeshed.txt
|
%dir %{python3_sitelib}/*
|
||||||
%doc AUTHORS.txt CHANGELOG.rst README.rst
|
|
||||||
%{python3_sitelib}/jedi/
|
|
||||||
%{python3_sitelib}/jedi-%{version}-py%{python3_version}.egg-info/
|
|
||||||
|
|
||||||
|
%files help -f doclist.lst
|
||||||
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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
|
* Sat Sep 25 2021 Li Chao <clouds@isrc.iscas.ac.cn> - 0.18.0-1
|
||||||
- First packaging for version 0.18
|
- First packaging for version 0.18
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user