Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Sep 2014 19:08:44 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r369655 - in head/devel: . py-jedi
Message-ID:  <201409301908.s8UJ8i6C060351@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Tue Sep 30 19:08:43 2014
New Revision: 369655
URL: http://svnweb.freebsd.org/changeset/ports/369655
QAT: https://qat.redports.org/buildarchive/r369655/

Log:
  Jedi is an autocompletion tool for Python that can be used in IDEs/editors.
  Jedi works. Jedi is fast. It understands all of the basic Python syntax
  elements including many builtin functions.
  
  Additionaly, Jedi suports two different goto functions and has support for
  renaming as well as Pydoc support and some other IDE features.
  
  WWW: https://github.com/davidhalter/jedi

Added:
  head/devel/py-jedi/
  head/devel/py-jedi/Makefile   (contents, props changed)
  head/devel/py-jedi/distinfo   (contents, props changed)
  head/devel/py-jedi/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Sep 30 18:34:58 2014	(r369654)
+++ head/devel/Makefile	Tue Sep 30 19:08:43 2014	(r369655)
@@ -3741,6 +3741,7 @@
     SUBDIR += py-jaraco.util
     SUBDIR += py-jcc
     SUBDIR += py-jdcal
+    SUBDIR += py-jedi
     SUBDIR += py-jellyfish
     SUBDIR += py-jira
     SUBDIR += py-jmespath

Added: head/devel/py-jedi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jedi/Makefile	Tue Sep 30 19:08:43 2014	(r369655)
@@ -0,0 +1,17 @@
+# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	jedi
+PORTVERSION=	0.8.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTVERSION=	${PORTVERSION}-final0
+
+MAINTAINER=	skreuzer@FreeBSD.org
+COMMENT=	Autocompletion tool for Python
+
+USES=		python:2
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-jedi/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jedi/distinfo	Tue Sep 30 19:08:43 2014	(r369655)
@@ -0,0 +1,2 @@
+SHA256 (jedi-0.8.1-final0.tar.gz) = 5ccd72817cc8c47102ba28f332fee6242ea0d822a46651a22214445144845200
+SIZE (jedi-0.8.1-final0.tar.gz) = 298089

Added: head/devel/py-jedi/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jedi/pkg-descr	Tue Sep 30 19:08:43 2014	(r369655)
@@ -0,0 +1,8 @@
+Jedi is an autocompletion tool for Python that can be used in IDEs/editors.
+Jedi works. Jedi is fast. It understands all of the basic Python syntax
+elements including many builtin functions.
+
+Additionaly, Jedi suports two different goto functions and has support for
+renaming as well as Pydoc support and some other IDE features.
+
+WWW: https://github.com/davidhalter/jedi



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409301908.s8UJ8i6C060351>