From owner-svn-ports-all@FreeBSD.ORG Tue Sep 30 19:08:45 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A02553A; Tue, 30 Sep 2014 19:08:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B20DBE0; Tue, 30 Sep 2014 19:08:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8UJ8jX9060357; Tue, 30 Sep 2014 19:08:45 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8UJ8i6C060351; Tue, 30 Sep 2014 19:08:44 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201409301908.s8UJ8i6C060351@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Tue, 30 Sep 2014 19:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369655 - in head/devel: . py-jedi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2014 19:08:45 -0000 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 +# $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 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