Accepting request 244550 from home:TheBlackCat:branches:devel:languages:python
Update to version 0.8.1 OBS-URL: https://build.opensuse.org/request/show/244550 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jedi?expand=0&rev=6
This commit is contained in:
parent
fd98781cf2
commit
e570cb3f1c
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:01f0d070ff3852bb6325f436c87070714ccf3d6edb057d9b562a1b19a601daa9
|
|
||||||
size 136647
|
|
3
jedi-0.8.1-final0.tar.gz
Normal file
3
jedi-0.8.1-final0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5ccd72817cc8c47102ba28f332fee6242ea0d822a46651a22214445144845200
|
||||||
|
size 298089
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 13 11:03:20 UTC 2014 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
- Update to version 0.8.1
|
||||||
|
* Bugfix release, the last release forgot to include files that
|
||||||
|
improve autocompletion for builtin libraries. Fixed.
|
||||||
|
- Update to version 0.8.0
|
||||||
|
* Memory Consumption for compiled modules (e.g. builtins, sys)
|
||||||
|
has been reduced drastically. Loading times are down as well
|
||||||
|
(it takes basically as long as an import).
|
||||||
|
* REPL completion is starting to become usable.
|
||||||
|
* Various small API changes. Generally this released focuses on
|
||||||
|
stability and refactoring of internal APIs.
|
||||||
|
* Introducing operator precedence, which makes calculating
|
||||||
|
correct Array indices and __getattr__ strings possible.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 8 19:52:44 UTC 2013 - p.drouand@gmail.com
|
Sun Dec 8 19:52:44 UTC 2013 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-jedi
|
# spec file for package python-jedi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,15 +16,18 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
Name: python-jedi
|
Name: python-jedi
|
||||||
Version: 0.7.0
|
Version: 0.8.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An autocompletion tool for Python
|
Summary: An autocompletion tool for Python
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: https://jedi.readthedocs.org/en/latest/index.html
|
Url: https://jedi.readthedocs.org/en/latest/index.html
|
||||||
Source0: https://pypi.python.org/packages/source/j/jedi/jedi-%{version}.tar.gz
|
Source0: https://pypi.python.org/packages/source/j/jedi/jedi-%{version}-final0.tar.gz
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
|
BuildRequires: python-docopt
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-setuptools
|
||||||
|
BuildRequires: python-pytest
|
||||||
|
Requires: python-docopt
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
@ -47,17 +50,22 @@ you to use Jedi in your IDEs. Start writing plugins! If there are problems with
|
|||||||
licensing, just contact me.
|
licensing, just contact me.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n jedi-%{version}
|
%setup -q -n jedi-%{version}-final0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python setup.py build
|
python setup.py build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
rm -rf build
|
||||||
|
|
||||||
|
%check
|
||||||
|
# we don't care about the speed, just that it works
|
||||||
|
py.test -k "not test_speed"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc AUTHORS.txt README.rst LICENSE.txt
|
%doc AUTHORS.txt CHANGELOG.rst README.rst LICENSE.txt
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user