From owner-svn-ports-head@FreeBSD.ORG Sun Nov 10 14:02:45 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B0E744D9; Sun, 10 Nov 2013 14:02:45 +0000 (UTC) (envelope-from wg@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E2E52C89; Sun, 10 Nov 2013 14:02:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAAE2jlN092532; Sun, 10 Nov 2013 14:02:45 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAAE2iQq092526; Sun, 10 Nov 2013 14:02:44 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201311101402.rAAE2iQq092526@svn.freebsd.org> From: William Grzybowski Date: Sun, 10 Nov 2013 14:02:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333392 - in head/devel: . py-ipdb py-ipdb/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Nov 2013 14:02:45 -0000 Author: wg Date: Sun Nov 10 14:02:44 2013 New Revision: 333392 URL: http://svnweb.freebsd.org/changeset/ports/333392 Log: devel/py-ipdb: IPython-enabled pdb ipdb exports functions to access the IPython debugger, which features tab completion, syntax highlighting, better tracebacks, better introspection with the same interface as the pdb module. WWW: https://github.com/gotcha/ipdb PR: ports/179564 Submitted by: milki Added: head/devel/py-ipdb/ head/devel/py-ipdb/Makefile (contents, props changed) head/devel/py-ipdb/distinfo (contents, props changed) head/devel/py-ipdb/files/ head/devel/py-ipdb/files/patch-setup.py (contents, props changed) head/devel/py-ipdb/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 10 13:53:18 2013 (r333391) +++ head/devel/Makefile Sun Nov 10 14:02:44 2013 (r333392) @@ -3595,6 +3595,7 @@ SUBDIR += py-instant SUBDIR += py-interface SUBDIR += py-ipaddr + SUBDIR += py-ipdb SUBDIR += py-isodate SUBDIR += py-iterpipes SUBDIR += py-itools Added: head/devel/py-ipdb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ipdb/Makefile Sun Nov 10 14:02:44 2013 (r333392) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= ipdb +PORTVERSION= 0.8 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= milki@rescomp.berkeley.edu +COMMENT= IPython-enabled pdb + +LICENSE= GPLv2 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=0.10:${PORTSDIR}/devel/ipython + +USE_ZIP= yes +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-ipdb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ipdb/distinfo Sun Nov 10 14:02:44 2013 (r333392) @@ -0,0 +1,2 @@ +SHA256 (ipdb-0.8.zip) = 0d4a33f38e667a0c80ec1a5a0e468fe58e5cdc61cb8f4077b1024b85fe7b7117 +SIZE (ipdb-0.8.zip) = 20204 Added: head/devel/py-ipdb/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ipdb/files/patch-setup.py Sun Nov 10 14:02:44 2013 (r333392) @@ -0,0 +1,11 @@ +--- setup.py.orig 2013-06-12 23:11:21.000000000 -0700 ++++ setup.py 2013-06-12 23:11:32.000000000 -0700 +@@ -41,7 +41,7 @@ + license='GPL', + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, +- zip_safe=True, ++ zip_safe=False, + test_suite='tests', + install_requires=[ + 'ipython >= 0.10', Added: head/devel/py-ipdb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ipdb/pkg-descr Sun Nov 10 14:02:44 2013 (r333392) @@ -0,0 +1,5 @@ +ipdb exports functions to access the IPython debugger, which features tab +completion, syntax highlighting, better tracebacks, better introspection with +the same interface as the pdb module. + +WWW: https://github.com/gotcha/ipdb