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://pypi.python.org/pypi/ipdb/ WWW: https://github.com/gotcha/ipdb Generated with FreeBSD Port Tools 0.99_7 (mode: new)
Responsible Changed From-To: freebsd-ports-bugs->swills swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Might want to wait on this for a bit. olgeni, maintainer if IPython will soon change the packagename for IPython to be less wierd. https://twitter.com/koobs/status/345569785972654080 -- milki
Updated ipython dep reference. ipython-1.0.0 using PKGPREFIX properly now. http://svnweb.freebsd.org/ports/head/devel/ipython/pkg-plist?revision=325353&view=markup This shar is ready for commit if no further changes requested. -- milki
Responsible Changed From-To: swills->wg I'll take it.
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 <milki rescomp.berkeley.edu> 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 <bsd.port.mk> 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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added, with minor changes. Thanks!