diff --git a/django-stubs-fd057010f6cbf176f57d1099e82be46d39b99cb9.tar.gz b/django-stubs-fd057010f6cbf176f57d1099e82be46d39b99cb9.tar.gz deleted file mode 100644 index 33ed124..0000000 Binary files a/django-stubs-fd057010f6cbf176f57d1099e82be46d39b99cb9.tar.gz and /dev/null differ diff --git a/jedi-0.18.0.tar.gz b/jedi-0.18.0.tar.gz deleted file mode 100644 index 4064c70..0000000 Binary files a/jedi-0.18.0.tar.gz and /dev/null differ diff --git a/jedi-0.18.1.tar.gz b/jedi-0.18.1.tar.gz new file mode 100644 index 0000000..6d541c2 Binary files /dev/null and b/jedi-0.18.1.tar.gz differ diff --git a/python-jedi.spec b/python-jedi.spec index 56ea9b2..0463e50 100644 --- a/python-jedi.spec +++ b/python-jedi.spec @@ -1,48 +1,83 @@ -%global django_stubs_commit fd057010f6cbf176f57d1099e82be46d39b99cb9 -%global typeshed_commit d38645247816f862cafeed21a8f4466d306aacf3 +%global _empty_manifest_terminate_build 0 +Name: python-jedi +Version: 0.18.1 +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.18.1.tar.gz +BuildArch: noarch -Name: python-jedi -Version: 0.18.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://github.com/davidhalter/jedi/archive/v%{version}/jedi-%{version}.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 %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 -%setup -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 - +%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 -%license LICENSE.txt LICENSE-django-stubs.txt LICENSE-typeshed.txt -%doc AUTHORS.txt CHANGELOG.rst README.rst -%{python3_sitelib}/jedi/ -%{python3_sitelib}/jedi-%{version}-py%{python3_version}.egg-info/ +%files -n python3-jedi -f filelist.lst +%dir %{python3_sitelib}/* +%files help -f doclist.lst +%{_docdir}/* %changelog +* Thu Nov 10 2022 wangjunqi - 0.18.1-1 +- Update package to version 0.18.1 + * Sat Sep 25 2021 Li Chao - 0.18.0-1 - First packaging for version 0.18 + diff --git a/typeshed-d38645247816f862cafeed21a8f4466d306aacf3.tar.gz b/typeshed-d38645247816f862cafeed21a8f4466d306aacf3.tar.gz deleted file mode 100644 index ceb7429..0000000 Binary files a/typeshed-d38645247816f862cafeed21a8f4466d306aacf3.tar.gz and /dev/null differ