Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Nov 2013 14:02:44 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
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
Message-ID:  <201311101402.rAAE2iQq092526@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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