From e570cb3f1c8196192bc32927207d226f0e26847ae5c84fe5aa184225bbe5357d Mon Sep 17 00:00:00 2001 From: Todd R Date: Wed, 13 Aug 2014 12:23:23 +0000 Subject: [PATCH] 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 --- jedi-0.7.0.tar.gz | 3 --- jedi-0.8.1-final0.tar.gz | 3 +++ python-jedi.changes | 16 ++++++++++++++++ python-jedi.spec | 18 +++++++++++++----- 4 files changed, 32 insertions(+), 8 deletions(-) delete mode 100644 jedi-0.7.0.tar.gz create mode 100644 jedi-0.8.1-final0.tar.gz diff --git a/jedi-0.7.0.tar.gz b/jedi-0.7.0.tar.gz deleted file mode 100644 index 107031e..0000000 --- a/jedi-0.7.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01f0d070ff3852bb6325f436c87070714ccf3d6edb057d9b562a1b19a601daa9 -size 136647 diff --git a/jedi-0.8.1-final0.tar.gz b/jedi-0.8.1-final0.tar.gz new file mode 100644 index 0000000..1b0ca0e --- /dev/null +++ b/jedi-0.8.1-final0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ccd72817cc8c47102ba28f332fee6242ea0d822a46651a22214445144845200 +size 298089 diff --git a/python-jedi.changes b/python-jedi.changes index adbb5e8..261cabb 100644 --- a/python-jedi.changes +++ b/python-jedi.changes @@ -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 diff --git a/python-jedi.spec b/python-jedi.spec index 26983a3..371dff1 100644 --- a/python-jedi.spec +++ b/python-jedi.spec @@ -1,7 +1,7 @@ # # 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 # remain the property of their copyright owners, unless otherwise agreed @@ -16,15 +16,18 @@ # Name: python-jedi -Version: 0.7.0 +Version: 0.8.1 Release: 0 Summary: An autocompletion tool for Python License: MIT Group: Development/Languages/Python 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-docopt BuildRequires: python-setuptools +BuildRequires: python-pytest +Requires: python-docopt BuildRoot: %{_tmppath}/%{name}-%{version}-build %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()")} @@ -47,17 +50,22 @@ you to use Jedi in your IDEs. Start writing plugins! If there are problems with licensing, just contact me. %prep -%setup -q -n jedi-%{version} +%setup -q -n jedi-%{version}-final0 %build python setup.py build %install 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 %defattr(-,root,root,-) -%doc AUTHORS.txt README.rst LICENSE.txt +%doc AUTHORS.txt CHANGELOG.rst README.rst LICENSE.txt %{python_sitelib}/* %changelog