[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2020-11-23 Thread Felix Yan via arch-commits
Date: Monday, November 23, 2020 @ 14:02:53
  Author: felixonmars
Revision: 759922

upgpkg: python-jedi 0.17.2-3: Python 3.9 rebuild

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-23 13:58:56 UTC (rev 759921)
+++ PKGBUILD2020-11-23 14:02:53 UTC (rev 759922)
@@ -7,7 +7,7 @@
 pkgname=python-jedi
 _gitcommit=3b7106ae71cb7bd3431101d169a0110ee0c179aa
 pkgver=0.17.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Awesome autocompletion for python"
 url="https://github.com/davidhalter/jedi;
 arch=('any')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD jedi-0.17.2-py39.patch)

2020-11-23 Thread Evangelos Foutras via arch-commits
Date: Monday, November 23, 2020 @ 13:58:56
  Author: foutrelis
Revision: 759921

Add a couple of fixes for Python 3.9

Added:
  python-jedi/trunk/jedi-0.17.2-py39.patch
Modified:
  python-jedi/trunk/PKGBUILD

+
 PKGBUILD   |8 ++-
 jedi-0.17.2-py39.patch |   48 +++
 2 files changed, 55 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-23 13:37:49 UTC (rev 759920)
+++ PKGBUILD2020-11-23 13:58:56 UTC (rev 759921)
@@ -16,9 +16,11 @@
 makedepends=('git' 'python-setuptools' 'python-sphinx' 
'python-sphinx_rtd_theme')
 checkdepends=('python-pytest' 'python-parso')
 source=("git+https://github.com/davidhalter/jedi#commit=${_gitcommit};
+jedi-0.17.2-py39.patch
 git+https://github.com/davidhalter/typeshed
 git+https://github.com/typeddjango/django-stubs)
 sha256sums=('SKIP'
+'9b5c13800f29f4c6954d63c0989210cc173162803e8546bfe084a975e3e25208'
 'SKIP'
 'SKIP')
 
@@ -33,6 +35,9 @@
   git config submodule."jedi/third_party/typeshed".url "${srcdir}/typeshed"
   git config submodule."jedi/third_party/django-stubs".url 
"${srcdir}/django-stubs"
   git submodule update --recursive
+
+  # two patches for Python 3.9 cherry-picked from upstream's master branch
+  patch -Np1 -i ../jedi-0.17.2-py39.patch
 }
 
 build() {
@@ -45,7 +50,8 @@
 check() {
   cd jedi
   # skip pytest 6 test issues https://github.com/davidhalter/jedi/issues/1660
-  pytest test -k 'not test_completion[pytest:130] and not 
test_completion[pytest:163]'
+  # these are also skipped in upstream's Travis CI
+  pytest test -k 'not test_completion[pytest'
 }
 
 package() {

Added: jedi-0.17.2-py39.patch
===
--- jedi-0.17.2-py39.patch  (rev 0)
+++ jedi-0.17.2-py39.patch  2020-11-23 13:58:56 UTC (rev 759921)
@@ -0,0 +1,48 @@
+From bd2216ea1acce7b64e94d76a197674e66428d8c1 Mon Sep 17 00:00:00 2001
+From: Dave Halter 
+Date: Sun, 12 Jul 2020 01:58:13 +0200
+Subject: [PATCH 1/2] Properly support Python3.9
+
+(cherry picked from commit a49c062b355a44875ae9e43233b94a781c2efcef)
+---
+ jedi/api/environment.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/jedi/api/environment.py b/jedi/api/environment.py
+index 89e47163..548dea67 100644
+--- a/jedi/api/environment.py
 b/jedi/api/environment.py
+@@ -17,7 +17,7 @@ import parso
+ 
+ _VersionInfo = namedtuple('VersionInfo', 'major minor micro')
+ 
+-_SUPPORTED_PYTHONS = ['3.8', '3.7', '3.6', '3.5', '2.7']
++_SUPPORTED_PYTHONS = ['3.9', '3.8', '3.7', '3.6', '3.5', '2.7']
+ _SAFE_PATHS = ['/usr/bin', '/usr/local/bin']
+ _CONDA_VAR = 'CONDA_PREFIX'
+ _CURRENT_VERSION = '%s.%s' % (sys.version_info.major, sys.version_info.minor)
+
+From 2dd31b169370504ee67af04bd6d4ea154b765c04 Mon Sep 17 00:00:00 2001
+From: Dave Halter 
+Date: Sat, 19 Sep 2020 21:27:55 +0200
+Subject: [PATCH 2/2] One interpreter test is different for 3.9+
+
+(cherry picked from commit c1f4e7d8748d0f1efe30332e1d41089560e1c319)
+---
+ test/test_api/test_interpreter.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/test/test_api/test_interpreter.py 
b/test/test_api/test_interpreter.py
+index 0155d49f..402727b5 100644
+--- a/test/test_api/test_interpreter.py
 b/test/test_api/test_interpreter.py
+@@ -656,7 +656,8 @@ def bar():
+ 
+ # typing is available via globals.
+ ({'return': 'typing.Union[str, int]'}, ['int', 'str'], ''),
+-({'return': 'typing.Union["str", int]'}, ['int'], ''),
++({'return': 'typing.Union["str", int]'},
++ ['int', 'str'] if sys.version_info >= (3, 9) else ['int'], ''),
+ ({'return': 'typing.Union["str", 1]'}, [], ''),
+ ({'return': 'typing.Optional[str]'}, ['NoneType', 'str'], ''),
+ ({'return': 'typing.Optional[str, int]'}, [], ''),  # Takes only one 
arg


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2020-11-09 Thread Felix Yan via arch-commits
Date: Monday, November 9, 2020 @ 18:20:54
  Author: felixonmars
Revision: 747980

upgpkg: python-jedi 0.17.2-2: Python 3.9 rebuild

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 18:20:35 UTC (rev 747979)
+++ PKGBUILD2020-11-09 18:20:54 UTC (rev 747980)
@@ -7,7 +7,7 @@
 pkgname=python-jedi
 _gitcommit=3b7106ae71cb7bd3431101d169a0110ee0c179aa
 pkgver=0.17.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Awesome autocompletion for python"
 url="https://github.com/davidhalter/jedi;
 arch=('any')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2020-08-30 Thread Levente Polyak via arch-commits
Date: Sunday, August 30, 2020 @ 10:31:13
  Author: anthraxx
Revision: 692597

upgpkg: python-jedi 0.17.2-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-30 10:31:01 UTC (rev 692596)
+++ PKGBUILD2020-08-30 10:31:13 UTC (rev 692597)
@@ -5,8 +5,8 @@
 # Contributor: Jesus Alvarez
 
 pkgname=python-jedi
-_gitcommit=8aaa8e00446f801c023bb4b056f51ac6f3d99e99
-pkgver=0.17.0
+_gitcommit=3b7106ae71cb7bd3431101d169a0110ee0c179aa
+pkgver=0.17.2
 pkgrel=1
 pkgdesc="Awesome autocompletion for python"
 url="https://github.com/davidhalter/jedi;
@@ -13,7 +13,7 @@
 arch=('any')
 license=('MIT')
 depends=('python' 'python-parso')
-makedepends=('git' 'python-setuptools')
+makedepends=('git' 'python-setuptools' 'python-sphinx' 
'python-sphinx_rtd_theme')
 checkdepends=('python-pytest' 'python-parso')
 source=("git+https://github.com/davidhalter/jedi#commit=${_gitcommit};
 git+https://github.com/davidhalter/typeshed
@@ -33,19 +33,19 @@
   git config submodule."jedi/third_party/typeshed".url "${srcdir}/typeshed"
   git config submodule."jedi/third_party/django-stubs".url 
"${srcdir}/django-stubs"
   git submodule update --recursive
-
-  # Inc difference limit in TestSetupReadline::test_import for py3.8
-  git cherry-pick -n e7feeef64e9ef4a0e543afd13c9ed72decdcc533
 }
 
 build() {
   cd jedi
   python setup.py build
+  sphinx-build -b text docs docs/_build/text
+  sphinx-build -b man docs docs/_build/man
 }
 
 check() {
   cd jedi
-  pytest test
+  # skip pytest 6 test issues https://github.com/davidhalter/jedi/issues/1660
+  pytest test -k 'not test_completion[pytest:130] and not 
test_completion[pytest:163]'
 }
 
 package() {
@@ -52,7 +52,8 @@
   cd jedi
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm 644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 CHANGELOG.rst README.rst -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 CHANGELOG.rst README.rst docs/_build/text/*.txt -t 
"$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 docs/_build/man/jedi.1 
"$pkgdir/usr/share/man/man1/$pkgname.1"
 }
 
 # vim: ts=2 sw=2 et:


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2020-05-14 Thread Levente Polyak via arch-commits
Date: Thursday, May 14, 2020 @ 08:57:18
  Author: anthraxx
Revision: 627902

upgpkg: python-jedi 0.17.0-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   31 +++
 1 file changed, 15 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 08:11:54 UTC (rev 627901)
+++ PKGBUILD2020-05-14 08:57:18 UTC (rev 627902)
@@ -5,8 +5,8 @@
 # Contributor: Jesus Alvarez
 
 pkgname=python-jedi
-_gitcommit=18f84d3af73c0de04883c10ab8745d7efb16593b
-pkgver=0.16.0
+_gitcommit=8aaa8e00446f801c023bb4b056f51ac6f3d99e99
+pkgver=0.17.0
 pkgrel=1
 pkgdesc="Awesome autocompletion for python"
 url="https://github.com/davidhalter/jedi;
@@ -17,10 +17,10 @@
 checkdepends=('python-pytest' 'python-parso')
 source=("git+https://github.com/davidhalter/jedi#commit=${_gitcommit};
 git+https://github.com/davidhalter/typeshed
-0001-Jedi-understand-now-when-you-use-del-fixes-313.patch) 
+git+https://github.com/typeddjango/django-stubs)
 sha256sums=('SKIP'
 'SKIP'
-'c8ac3df187d59eb8a9ea18290a829b4b23e16b131b5580a6677d208fe8726d81')
+'SKIP')
 
 pkgver() {
   cd jedi
@@ -28,25 +28,24 @@
 }
 
 prepare() {
-  (cd jedi
-git submodule init
-git config submodule."jedi/third_party/typeshed".url "${srcdir}/typeshed"
-git submodule update --recursive
+  cd jedi
+  git submodule init
+  git config submodule."jedi/third_party/typeshed".url "${srcdir}/typeshed"
+  git config submodule."jedi/third_party/django-stubs".url 
"${srcdir}/django-stubs"
+  git submodule update --recursive
 
-patch -Np1 -i 
${srcdir}/0001-Jedi-understand-now-when-you-use-del-fixes-313.patch
-  )
+  # Inc difference limit in TestSetupReadline::test_import for py3.8
+  git cherry-pick -n e7feeef64e9ef4a0e543afd13c9ed72decdcc533
 }
 
 build() {
-  (cd jedi
-python setup.py build
-  )
+  cd jedi
+  python setup.py build
 }
 
 check() {
-  (cd jedi
-pytest test
-  )
+  cd jedi
+  pytest test
 }
 
 package() {


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2019-10-25 Thread Felix Yan via arch-commits
Date: Friday, October 25, 2019 @ 20:05:24
  Author: felixonmars
Revision: 519719

Python 3.8 rebuild

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-25 20:05:21 UTC (rev 519718)
+++ PKGBUILD2019-10-25 20:05:24 UTC (rev 519719)
@@ -8,7 +8,7 @@
 pkgname=('python2-jedi' 'python-jedi')
 _gitcommit=005f69390c4b1a3b864e7373cfcbdaf95e65411d
 pkgver=0.15.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Awesome autocompletion for python"
 url="https://github.com/davidhalter/jedi;
 arch=('any')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2019-03-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, March 3, 2019 @ 15:59:32
  Author: jelle
Revision: 437470

upgpkg: python-jedi 0.13.3-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-03-03 15:55:22 UTC (rev 437469)
+++ PKGBUILD2019-03-03 15:59:32 UTC (rev 437470)
@@ -5,7 +5,7 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.13.2
+pkgver=0.13.3
 pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
@@ -13,7 +13,7 @@
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;)
-sha256sums=('434f1a6a6afb7477f5b2934da7822fcdbe7d962abf0cec9f391117df493dde0c')
+sha256sums=('e82c4933b4c9717276fa6528b91d7c667463ac2773ccecd076e6b068c70a6e0e')
 
 check() {
 cd "$srcdir/jedi-${pkgver}"


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-12-30 Thread Jelle van der Waa via arch-commits
Date: Sunday, December 30, 2018 @ 21:12:45
  Author: jelle
Revision: 419768

upgpkg: python-jedi 0.13.2-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 21:12:39 UTC (rev 419767)
+++ PKGBUILD2018-12-30 21:12:45 UTC (rev 419768)
@@ -1,3 +1,4 @@
+# Maintainer: Jelle van der Waa 
 # Contributor: Danilo Bargen 
 # Contributor: Simon Conseil 
 # Contributor: Jesus Alvarez
@@ -4,25 +5,16 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.13.1
-pkgrel=2
+pkgver=0.13.2
+pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;
-fix-environment-cache.patch)
-sha256sums=('e650be5ac603537ebcf31009c3c574909f7fd51a47298406f22f07baa7bdf686'
-'60a051084ffac5cfd411fa0d4e3f4b5ce0da544042d78c8594332f0bc41d394f')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;)
+sha256sums=('434f1a6a6afb7477f5b2934da7822fcdbe7d962abf0cec9f391117df493dde0c')
 
-prepare() {
-cd "$srcdir/jedi-${pkgver}"
-
-# https://github.com/davidhalter/jedi/pull/1238
-patch -Np1 -i ../fix-environment-cache.patch
-}
-
 check() {
 cd "$srcdir/jedi-${pkgver}"
 pytest test || warning 'Ignoring test_pyc failure'


[arch-commits] Commit in python-jedi/trunk (PKGBUILD fix-environment-cache.patch)

2018-11-23 Thread Jan Steffens via arch-commits
Date: Friday, November 23, 2018 @ 15:15:37
  Author: heftig
Revision: 409565

0.13.1-2

Added:
  python-jedi/trunk/fix-environment-cache.patch
Modified:
  python-jedi/trunk/PKGBUILD

-+
 PKGBUILD|   21 +++--
 fix-environment-cache.patch |   21 +
 2 files changed, 36 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-23 15:13:58 UTC (rev 409564)
+++ PKGBUILD2018-11-23 15:15:37 UTC (rev 409565)
@@ -1,19 +1,28 @@
-# Submitter: Simon Conseil 
-# Submitter: Jesus Alvarez
-# Maintainer: Danilo Bargen 
+# Contributor: Danilo Bargen 
+# Contributor: Simon Conseil 
+# Contributor: Jesus Alvarez
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.13.1
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;)
-sha256sums=('e650be5ac603537ebcf31009c3c574909f7fd51a47298406f22f07baa7bdf686')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;
+fix-environment-cache.patch)
+sha256sums=('e650be5ac603537ebcf31009c3c574909f7fd51a47298406f22f07baa7bdf686'
+'60a051084ffac5cfd411fa0d4e3f4b5ce0da544042d78c8594332f0bc41d394f')
 
+prepare() {
+cd "$srcdir/jedi-${pkgver}"
+
+# https://github.com/davidhalter/jedi/pull/1238
+patch -Np1 -i ../fix-environment-cache.patch
+}
+
 check() {
 cd "$srcdir/jedi-${pkgver}"
 pytest test || warning 'Ignoring test_pyc failure'

Added: fix-environment-cache.patch
===
--- fix-environment-cache.patch (rev 0)
+++ fix-environment-cache.patch 2018-11-23 15:15:37 UTC (rev 409565)
@@ -0,0 +1,21 @@
+diff -u -r jedi-0.13.1/jedi/api/environment.py 
jedi-0.13.1-fix/jedi/api/environment.py
+--- jedi-0.13.1/jedi/api/environment.py2018-10-02 17:07:35.0 
+
 jedi-0.13.1-fix/jedi/api/environment.py2018-11-23 15:03:25.989461415 
+
+@@ -190,15 +190,11 @@
+ 
+ 
+ def get_cached_default_environment():
+-environment = _get_cached_default_environment()
+-if environment.path != os.environ.get('VIRTUAL_ENV'):
+-_get_cached_default_environment.clear_cache()
+-return _get_cached_default_environment()
+-return environment
++return _get_cached_default_environment(os.environ.get('VIRTUAL_ENV'))
+ 
+ 
+ @time_cache(seconds=10 * 60)  # 10 Minutes
+-def _get_cached_default_environment():
++def _get_cached_default_environment(_venv):
+ return get_default_environment()
+ 
+ 


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-10-21 Thread Levente Polyak via arch-commits
Date: Sunday, October 21, 2018 @ 13:54:47
  Author: anthraxx
Revision: 398256

upgpkg: python-jedi 0.13.1-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-21 13:39:30 UTC (rev 398255)
+++ PKGBUILD2018-10-21 13:54:47 UTC (rev 398256)
@@ -4,7 +4,7 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
@@ -12,7 +12,7 @@
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;)
-md5sums=('eec5d934d8a4e70385379c0bd1132ae4')
+sha256sums=('e650be5ac603537ebcf31009c3c574909f7fd51a47298406f22f07baa7bdf686')
 
 check() {
 cd "$srcdir/jedi-${pkgver}"


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-10-02 Thread Jelle van der Waa via arch-commits
Date: Tuesday, October 2, 2018 @ 19:38:52
  Author: jelle
Revision: 389074

upgpkg: python-jedi 0.13.0-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-02 19:28:38 UTC (rev 389073)
+++ PKGBUILD2018-10-02 19:38:52 UTC (rev 389074)
@@ -4,8 +4,8 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.12.1
-pkgrel=2
+pkgver=0.13.0
+pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
@@ -12,7 +12,7 @@
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;)
-md5sums=('49a94ffb781c1383e8542ca5f71cebf0')
+md5sums=('eec5d934d8a4e70385379c0bd1132ae4')
 
 check() {
 cd "$srcdir/jedi-${pkgver}"


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-07-17 Thread Eli Schwartz via arch-commits
Date: Wednesday, July 18, 2018 @ 01:45:11
  Author: eschwartz
Revision: 361197

Fix shared $SRCDEST, unquoted $pkgdir

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-18 01:36:33 UTC (rev 361196)
+++ PKGBUILD2018-07-18 01:45:11 UTC (rev 361197)
@@ -9,10 +9,9 @@
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
-depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
-source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz;)
 md5sums=('49a94ffb781c1383e8542ca5f71cebf0')
 
 check() {
@@ -27,7 +26,7 @@
 cd "$srcdir/jedi-${pkgver}"
 python3 setup.py install --root="$pkgdir/" --optimize=1
 
-install -D -m644 "$srcdir/jedi-${pkgver}/LICENSE.txt" 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 "$srcdir/jedi-${pkgver}/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 package_python2-jedi() {
@@ -37,7 +36,7 @@
 cd "$srcdir/jedi-${pkgver}"
 python2 setup.py install --root="$pkgdir/" --optimize=1
 
-install -D -m644 "$srcdir/jedi-${pkgver}/LICENSE.txt" 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 "$srcdir/jedi-${pkgver}/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 # vim:set ts=2 sw=2 et


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-07-17 Thread Evangelos Foutras via arch-commits
Date: Wednesday, July 18, 2018 @ 01:34:55
  Author: foutrelis
Revision: 361193

Python 3.7 rebuild

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-18 01:33:43 UTC (rev 361192)
+++ PKGBUILD2018-07-18 01:34:55 UTC (rev 361193)
@@ -5,7 +5,7 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.12.1
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-07-17 Thread Evangelos Foutras via arch-commits
Date: Wednesday, July 18, 2018 @ 01:33:43
  Author: foutrelis
Revision: 361192

test_pyc fails under Python 3.7; ignore it for now

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-18 00:45:08 UTC (rev 361191)
+++ PKGBUILD2018-07-18 01:33:43 UTC (rev 361192)
@@ -16,9 +16,8 @@
 md5sums=('49a94ffb781c1383e8542ca5f71cebf0')
 
 check() {
-   cd "$srcdir/jedi-${pkgver}"
-   pytest test
-
+cd "$srcdir/jedi-${pkgver}"
+pytest test || warning 'Ignoring test_pyc failure'
 }
 
 package_python-jedi() {


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-07-01 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 1, 2018 @ 14:30:39
  Author: jelle
Revision: 349412

upgpkg: python-jedi 0.12.1-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-01 13:48:37 UTC (rev 349411)
+++ PKGBUILD2018-07-01 14:30:39 UTC (rev 349412)
@@ -4,8 +4,8 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.12.0
-pkgrel=2
+pkgver=0.12.1
+pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
@@ -13,7 +13,7 @@
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
 source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
-md5sums=('8947d4d0201f857743da93c8bbf3889a')
+md5sums=('49a94ffb781c1383e8542ca5f71cebf0')
 
 check() {
cd "$srcdir/jedi-${pkgver}"


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-07-01 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 1, 2018 @ 13:31:36
  Author: jelle
Revision: 349408

upgpkg: python-jedi 0.12.0-2

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-01 13:29:39 UTC (rev 349407)
+++ PKGBUILD2018-07-01 13:31:36 UTC (rev 349408)
@@ -5,7 +5,7 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.12.0
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2018-04-22 Thread Jelle van der Waa via arch-commits
Date: Sunday, April 22, 2018 @ 13:56:05
  Author: jelle
Revision: 317302

upgpkg: python-jedi 0.12.0-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-22 10:42:01 UTC (rev 317301)
+++ PKGBUILD2018-04-22 13:56:05 UTC (rev 317302)
@@ -4,7 +4,7 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.11.1
+pkgver=0.12.0
 pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
@@ -13,7 +13,7 @@
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
 source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
-md5sums=('f5fdea8650ed85d4ab8144e3f31d2c16')
+md5sums=('8947d4d0201f857743da93c8bbf3889a')
 
 check() {
cd "$srcdir/jedi-${pkgver}"


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2017-12-16 Thread Jelle van der Waa via arch-commits
Date: Saturday, December 16, 2017 @ 15:46:09
  Author: jelle
Revision: 274577

upgpkg: python-jedi 0.11.1-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 4 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-16 14:11:07 UTC (rev 274576)
+++ PKGBUILD2017-12-16 15:46:09 UTC (rev 274577)
@@ -4,8 +4,8 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.11.0
-pkgrel=2
+pkgver=0.11.1
+pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
@@ -12,16 +12,9 @@
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
-source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz 
update_requires.patch)
-md5sums=('26298afee07465d72dc1fe1091d8ec61'
- 'f346f6c86f539492f9eab172e91026f3')
+source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
+md5sums=('f5fdea8650ed85d4ab8144e3f31d2c16')
 
-prepare() {
-   cd "$srcdir/jedi-${pkgver}"
-   # FS#56396
-   patch -Np1 -i "${srcdir}/update_requires.patch"
-}
-
 check() {
cd "$srcdir/jedi-${pkgver}"
pytest test


[arch-commits] Commit in python-jedi/trunk (PKGBUILD update_requires.patch)

2017-11-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, November 26, 2017 @ 20:02:49
  Author: jelle
Revision: 269075

upgpkg: python-jedi 0.11.0-2

FS#56396 python-parso dependency update requires.txt

Added:
  python-jedi/trunk/update_requires.patch
Modified:
  python-jedi/trunk/PKGBUILD

---+
 PKGBUILD  |   13 ++---
 update_requires.patch |   16 
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-26 19:50:27 UTC (rev 269074)
+++ PKGBUILD2017-11-26 20:02:49 UTC (rev 269075)
@@ -5,7 +5,7 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.11.0
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
@@ -12,9 +12,16 @@
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
-source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
-md5sums=('26298afee07465d72dc1fe1091d8ec61')
+source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz 
update_requires.patch)
+md5sums=('26298afee07465d72dc1fe1091d8ec61'
+ 'f346f6c86f539492f9eab172e91026f3')
 
+prepare() {
+   cd "$srcdir/jedi-${pkgver}"
+   # FS#56396
+   patch -Np1 -i "${srcdir}/update_requires.patch"
+}
+
 check() {
cd "$srcdir/jedi-${pkgver}"
pytest test

Added: update_requires.patch
===
--- update_requires.patch   (rev 0)
+++ update_requires.patch   2017-11-26 20:02:49 UTC (rev 269075)
@@ -0,0 +1,16 @@
+From fc0397732ea87c2d641f2d2fdef0b13096d945b8 Mon Sep 17 00:00:00 2001
+From: Dave Halter 
+Date: Sun, 5 Nov 2017 15:05:09 +0100
+Subject: [PATCH] Update the parso dependency
+
+---
+ requirements.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/requirements.txt b/requirements.txt
+index 2c72b5f42..2af26c8c8 100644
+--- a/requirements.txt
 b/requirements.txt
+@@ -1 +1 @@
+-parso==0.1.0
++parso==0.1.1


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2017-09-22 Thread Jelle van der Waa
Date: Friday, September 22, 2017 @ 21:58:54
  Author: jelle
Revision: 259814

upgpkg: python-jedi 0.11.0-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-22 21:45:43 UTC (rev 259813)
+++ PKGBUILD2017-09-22 21:58:54 UTC (rev 259814)
@@ -4,7 +4,7 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.10.2
+pkgver=0.11.0
 pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
@@ -11,9 +11,9 @@
 license=('MIT')
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
-checkdepends=('python-pytest' 'python2-pytest')
-source=('https://pypi.python.org/packages/80/b9/4e9b0b999deeec8a91cb84e567380853a842e6c387c9d39b8fc9a49953fa/jedi-0.10.2.tar.gz')
-md5sums=('b2b35b4b7e508ec3a54d94cdea1205d0')
+checkdepends=('python-pytest' 'python2-pytest' 'python-parso' 'python2-parso')
+source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
+md5sums=('26298afee07465d72dc1fe1091d8ec61')
 
 check() {
cd "$srcdir/jedi-${pkgver}"
@@ -23,7 +23,7 @@
 
 package_python-jedi() {
 pkgdesc="Awesome autocompletion for python"
-depends=('python')
+depends=('python' 'python-parso')
 conflicts=('python3-jedi-git')
 cd "$srcdir/jedi-${pkgver}"
 python3 setup.py install --root="$pkgdir/" --optimize=1
@@ -33,7 +33,7 @@
 
 package_python2-jedi() {
 pkgdesc="Awesome autocompletion for python2"
-depends=('python2')
+depends=('python2' 'python2-parso')
 conflicts=('jedi-git' 'python2-jedi-git')
 cd "$srcdir/jedi-${pkgver}"
 python2 setup.py install --root="$pkgdir/" --optimize=1


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2017-04-05 Thread Jelle van der Waa
Date: Wednesday, April 5, 2017 @ 18:45:45
  Author: jelle
Revision: 220734

upgpkg: python-jedi 0.10.2-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-05 18:43:54 UTC (rev 220733)
+++ PKGBUILD2017-04-05 18:45:45 UTC (rev 220734)
@@ -4,7 +4,7 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.10.0
+pkgver=0.10.2
 pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
@@ -12,8 +12,8 @@
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
 checkdepends=('python-pytest' 'python2-pytest')
-source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
-md5sums=('89ed853d4a283bfa0fdbcf688b4d35fe')
+source=('https://pypi.python.org/packages/80/b9/4e9b0b999deeec8a91cb84e567380853a842e6c387c9d39b8fc9a49953fa/jedi-0.10.2.tar.gz')
+md5sums=('b2b35b4b7e508ec3a54d94cdea1205d0')
 
 check() {
cd "$srcdir/jedi-${pkgver}"


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2017-02-16 Thread Jelle van der Waa
Date: Thursday, February 16, 2017 @ 20:05:19
  Author: jelle
Revision: 212628

upgpkg: python-jedi 0.10.0-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-02-16 19:17:01 UTC (rev 212627)
+++ PKGBUILD2017-02-16 20:05:19 UTC (rev 212628)
@@ -4,20 +4,21 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.9.0
-pkgrel=3
+pkgver=0.10.0
+pkgrel=1
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
-source=("https://pypi.python.org/packages/source/j/jedi/jedi-${pkgver}.tar.gz;)
-md5sums=('2fee93d273622527ef8c97ac736e92bd')
+checkdepends=('python-pytest' 'python2-pytest')
+source=(https://github.com/davidhalter/jedi/archive/v$pkgver.tar.gz)
+md5sums=('89ed853d4a283bfa0fdbcf688b4d35fe')
 
 check() {
cd "$srcdir/jedi-${pkgver}"
-python3 setup.py test
-python2 setup.py test
+   pytest test
+
 }
 
 package_python-jedi() {


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2016-12-26 Thread Felix Yan
Date: Monday, December 26, 2016 @ 09:30:25
  Author: felixonmars
Revision: 202608

upgpkg: python-jedi 0.9.0-3

python 3.6 rebuild

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-26 09:27:34 UTC (rev 202607)
+++ PKGBUILD2016-12-26 09:30:25 UTC (rev 202608)
@@ -5,7 +5,7 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.9.0
-pkgrel=2
+pkgrel=3
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2015-09-19 Thread Evangelos Foutras
Date: Saturday, September 19, 2015 @ 18:41:33
  Author: foutrelis
Revision: 140973

Python 3.5 rebuild

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-19 16:41:13 UTC (rev 140972)
+++ PKGBUILD2015-09-19 16:41:33 UTC (rev 140973)
@@ -5,7 +5,7 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://github.com/davidhalter/jedi;
 license=('MIT')


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2015-05-06 Thread Jelle van der Waa
Date: Wednesday, May 6, 2015 @ 21:50:50
  Author: jelle
Revision: 132841

upgpkg: python-jedi 0.9.0-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-06 19:49:03 UTC (rev 132840)
+++ PKGBUILD2015-05-06 19:50:50 UTC (rev 132841)
@@ -4,8 +4,8 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.9.0
+pkgrel=1
 arch=('any')
 url=https://github.com/davidhalter/jedi;
 license=('MIT')
@@ -12,7 +12,7 @@
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
 source=(https://pypi.python.org/packages/source/j/jedi/jedi-${pkgver}.tar.gz;)
-md5sums=('0e4b205e05290b00ebabe19f351cddf7')
+md5sums=('2fee93d273622527ef8c97ac736e92bd')
 
 check() {
cd $srcdir/jedi-${pkgver}


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2015-02-19 Thread Jelle van der Waa
Date: Thursday, February 19, 2015 @ 20:23:28
  Author: jelle
Revision: 127995

upgpkg: python-jedi 0.8.1-2

remove empty build() function, package 0.8.1 and not final0

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   21 -
 1 file changed, 8 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-19 17:46:15 UTC (rev 127994)
+++ PKGBUILD2015-02-19 19:23:28 UTC (rev 127995)
@@ -5,22 +5,17 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.8.1
-_pkgver=${pkgver}-final0
-pkgrel=1
+pkgrel=2
 arch=('any')
 url=https://github.com/davidhalter/jedi;
 license=('MIT')
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
-source=(https://pypi.python.org/packages/source/j/jedi/jedi-${_pkgver}.tar.gz;)
-md5sums=('e4db996421a640d50f559587e805412b')
+source=(https://pypi.python.org/packages/source/j/jedi/jedi-${pkgver}.tar.gz;)
+md5sums=('0e4b205e05290b00ebabe19f351cddf7')
 
-build() {
-   cd $srcdir/jedi-${_pkgver}
-}
-
 check() {
-   cd $srcdir/jedi-${_pkgver}
+   cd $srcdir/jedi-${pkgver}
 python3 setup.py test
 python2 setup.py test
 }
@@ -29,10 +24,10 @@
 pkgdesc=Awesome autocompletion for python
 depends=('python')
 conflicts=('python3-jedi-git')
-cd $srcdir/jedi-${_pkgver}
+cd $srcdir/jedi-${pkgver}
 python3 setup.py install --root=$pkgdir/ --optimize=1
 
-install -D -m644 $srcdir/jedi-${_pkgver}/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 $srcdir/jedi-${pkgver}/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-jedi() {
@@ -39,10 +34,10 @@
 pkgdesc=Awesome autocompletion for python2
 depends=('python2')
 conflicts=('jedi-git' 'python2-jedi-git')
-cd $srcdir/jedi-${_pkgver}
+cd $srcdir/jedi-${pkgver}
 python2 setup.py install --root=$pkgdir/ --optimize=1
 
-install -D -m644 $srcdir/jedi-${_pkgver}/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 $srcdir/jedi-${pkgver}/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et


[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2014-07-30 Thread Jelle van der Waa
Date: Wednesday, July 30, 2014 @ 20:27:32
  Author: jelle
Revision: 116606

upgpkg: python-jedi 0.8.1-1

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-30 17:59:29 UTC (rev 116605)
+++ PKGBUILD2014-07-30 18:27:32 UTC (rev 116606)
@@ -4,8 +4,8 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.8.0
-_pkgver=0.8.0-final0
+pkgver=0.8.1
+_pkgver=${pkgver}-final0
 pkgrel=1
 arch=('any')
 url=https://github.com/davidhalter/jedi;
@@ -13,7 +13,7 @@
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
 
source=(https://pypi.python.org/packages/source/j/jedi/jedi-${_pkgver}.tar.gz;)
-md5sums=('25ba4ee6160c2de751bd00c7a4f32bff')
+md5sums=('e4db996421a640d50f559587e805412b')
 
 build() {
cd $srcdir/jedi-${_pkgver}



[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2014-05-22 Thread Jelle van der Waa
Date: Thursday, May 22, 2014 @ 21:09:56
  Author: jelle
Revision: 111688

upgpkg: python-jedi 0.8.0-1

new release, enable unittests

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |   25 -
 1 file changed, 16 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-22 17:45:54 UTC (rev 111687)
+++ PKGBUILD2014-05-22 19:09:56 UTC (rev 111688)
@@ -4,28 +4,35 @@
 
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
-pkgver=0.7.0
-pkgrel=5
+pkgver=0.8.0
+_pkgver=0.8.0-final0
+pkgrel=1
 arch=('any')
 url=https://github.com/davidhalter/jedi;
 license=('MIT')
 depends=('python2')
 makedepends=('python2-setuptools' 'python-setuptools')
-source=(https://pypi.python.org/packages/source/j/jedi/jedi-${pkgver}.tar.gz;)
-sha256sums=('01f0d070ff3852bb6325f436c87070714ccf3d6edb057d9b562a1b19a601daa9')
+source=(https://pypi.python.org/packages/source/j/jedi/jedi-${_pkgver}.tar.gz;)
+md5sums=('25ba4ee6160c2de751bd00c7a4f32bff')
 
 build() {
-   cd $srcdir/jedi-$pkgver 
+   cd $srcdir/jedi-${_pkgver}
 }
 
+check() {
+   cd $srcdir/jedi-${_pkgver}
+python3 setup.py test
+python2 setup.py test
+}
+
 package_python-jedi() {
 pkgdesc=Awesome autocompletion for python
 depends=('python')
 conflicts=('python3-jedi-git')
-cd $srcdir/jedi-$pkgver
+cd $srcdir/jedi-${_pkgver}
 python3 setup.py install --root=$pkgdir/ --optimize=1
 
-install -D -m644 $srcdir/jedi-$pkgver/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 $srcdir/jedi-${_pkgver}/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-jedi() {
@@ -32,10 +39,10 @@
 pkgdesc=Awesome autocompletion for python2
 depends=('python2')
 conflicts=('jedi-git' 'python2-jedi-git')
-cd $srcdir/jedi-$pkgver
+cd $srcdir/jedi-${_pkgver}
 python2 setup.py install --root=$pkgdir/ --optimize=1
 
-install -D -m644 $srcdir/jedi-$pkgver/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+install -D -m644 $srcdir/jedi-${_pkgver}/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et



[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2014-03-17 Thread Jelle van der Waa
Date: Monday, March 17, 2014 @ 09:44:12
  Author: jelle
Revision: 107367

upgpkg: python-jedi 0.7.0-5

python 3.4

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-17 08:38:37 UTC (rev 107366)
+++ PKGBUILD2014-03-17 08:44:12 UTC (rev 107367)
@@ -5,12 +5,12 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.7.0
-pkgrel=4
+pkgrel=5
 arch=('any')
 url=https://github.com/davidhalter/jedi;
 license=('MIT')
 depends=('python2')
-makedepends=('python2-distribute' 'python-distribute')
+makedepends=('python2-setuptools' 'python-setuptools')
 source=(https://pypi.python.org/packages/source/j/jedi/jedi-${pkgver}.tar.gz;)
 sha256sums=('01f0d070ff3852bb6325f436c87070714ccf3d6edb057d9b562a1b19a601daa9')
 



[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2013-10-27 Thread Jelle van der Waa
Date: Sunday, October 27, 2013 @ 09:51:40
  Author: jelle
Revision: 99332

upgpkg: python-jedi 0.7.0-4

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-27 06:37:07 UTC (rev 99331)
+++ PKGBUILD2013-10-27 08:51:40 UTC (rev 99332)
@@ -5,10 +5,10 @@
 pkgbase=python-jedi
 pkgname=('python2-jedi' 'python-jedi')
 pkgver=0.7.0
-pkgrel=3
+pkgrel=4
 arch=('any')
 url=https://github.com/davidhalter/jedi;
-license=('LGPL3')
+license=('MIT')
 depends=('python2')
 makedepends=('python2-distribute' 'python-distribute')
 source=(https://pypi.python.org/packages/source/j/jedi/jedi-${pkgver}.tar.gz;)
@@ -24,6 +24,8 @@
 conflicts=('python3-jedi-git')
 cd $srcdir/jedi-$pkgver
 python3 setup.py install --root=$pkgdir/ --optimize=1
+
+install -D -m644 $srcdir/jedi-$pkgver/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-jedi() {
@@ -32,6 +34,8 @@
 conflicts=('jedi-git' 'python2-jedi-git')
 cd $srcdir/jedi-$pkgver
 python2 setup.py install --root=$pkgdir/ --optimize=1
+
+install -D -m644 $srcdir/jedi-$pkgver/LICENSE.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et



[arch-commits] Commit in python-jedi/trunk (PKGBUILD)

2013-10-26 Thread Jelle van der Waa
Date: Saturday, October 26, 2013 @ 19:06:47
  Author: jelle
Revision: 99279

upgpkg: python-jedi 0.7.0-3

Modified:
  python-jedi/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-26 16:58:22 UTC (rev 99278)
+++ PKGBUILD2013-10-26 17:06:47 UTC (rev 99279)
@@ -15,6 +15,7 @@
 sha256sums=('01f0d070ff3852bb6325f436c87070714ccf3d6edb057d9b562a1b19a601daa9')
 
 build() {
+   cd $srcdir/jedi-$pkgver 
 }
 
 package_python-jedi() {
@@ -22,7 +23,7 @@
 depends=('python')
 conflicts=('python3-jedi-git')
 cd $srcdir/jedi-$pkgver
-python2 setup.py install --root=$pkgdir/ --optimize=1
+python3 setup.py install --root=$pkgdir/ --optimize=1
 }
 
 package_python2-jedi() {
@@ -30,7 +31,7 @@
 depends=('python2')
 conflicts=('jedi-git' 'python2-jedi-git')
 cd $srcdir/jedi-$pkgver
-python3 setup.py install --root=$pkgdir/ --optimize=1
+python2 setup.py install --root=$pkgdir/ --optimize=1
 }
 
 # vim:set ts=2 sw=2 et