Accepting request 195416 from home:mvyskocil:branches:devel:languages:python

- update to 0.6.0
  * Created find_module helper to handle compatibility with python 3.3 
  * Fixed caching issues
  * More robust source encoding detection
  * Improved documentantion
  * and lot of bugfixes
- drop pre-checkin.sh
- drop a dependency on rpmbuild > 4.10, we don't need no ~ in version

OBS-URL: https://build.opensuse.org/request/show/195416
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jedi?expand=0&rev=3
This commit is contained in:
Todd R 2013-08-19 11:41:05 +00:00 committed by Git OBS Bridge
parent 50f5070d08
commit 792eab877b
5 changed files with 18 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:44e9cf12cf260058728eba67163440ab5d6625eef036028560abcda41a6cb883
size 71754

3
jedi-0.6.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f16c4249111e375c6c63e2b79243f8764ec6bd085bc1b214ff1fa64a2b2474c
size 96715

View File

@ -1,7 +0,0 @@
#!/bin/sh
NAME2=python-jedi
NAME3=python3-jedi
sed "s,build_for_python3 0,build_for_python3 1,;s,^\(Name: *\)${NAME2},\1${NAME3}," ${NAME2}.spec > ${NAME3}.spec
cp ${NAME2}.changes ${NAME3}.changes

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Aug 15 14:03:53 UTC 2013 - mvyskocil@suse.com
- update to 0.6.0
* Created find_module helper to handle compatibility with python 3.3
* Fixed caching issues
* More robust source encoding detection
* Improved documentantion
* and lot of bugfixes
- drop pre-checkin.sh
- drop a dependency on rpmbuild > 4.10, we don't need no ~ in version
-------------------------------------------------------------------
Thu May 9 07:53:19 UTC 2013 - mvyskocil@suse.com

View File

@ -26,13 +26,13 @@
%endif
Name: python-jedi
Version: 0.5~b5
Version: 0.6.0
Release: 0
License: LGPL-3.0+
Summary: An autocompletion tool for Python
URL: https://jedi.readthedocs.org/en/latest/index.html
Group: Development/Languages/Python
Source0: https://pypi.python.org/packages/source/j/jedi/jedi-0.5b5.tar.gz
Source0: https://pypi.python.org/packages/source/j/jedi/jedi-%{version}.tar.gz
%if %{build_for_python3}
BuildRequires: python3-devel
@ -41,8 +41,6 @@ BuildRequires: python3-distribute
BuildRequires: python-devel
BuildRequires: python-distribute
%endif
# '~' is supported since rpm 4.10, so avoid building with older rpms
BuildRequires: rpm-build >= 4.10
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@ -61,7 +59,7 @@ you to use Jedi in your IDEs. Start writing plugins! If there are problems with
licensing, just contact me.
%prep
%setup -q -n jedi-0.5b5
%setup -q -n jedi-%{version}
%build
%{my_python} setup.py build