Bug 179564 - [NEW PORT] devel/py27-ipdb: IPython-enabled pdb
Summary: [NEW PORT] devel/py27-ipdb: IPython-enabled pdb
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-15 05:30 UTC by Jonathan Chu
Modified: 2013-11-10 14:10 UTC (History)
0 users

See Also:


Attachments
.shar (3.32 KB, text/plain)
2013-06-15 05:30 UTC, Jonathan Chu
no flags Details
py-ipdb.shar (3.57 KB, application/x-shar)
2013-08-26 01:53 UTC, Jonathan Chu
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Chu 2013-06-15 05:30:00 UTC
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)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-06-15 05:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->swills

swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Jonathan Chu 2013-06-15 23:24:59 UTC
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
Comment 3 Jonathan Chu 2013-08-26 01:53:47 UTC
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
Comment 4 William Grzybowski freebsd_committer freebsd_triage 2013-11-10 14:02:16 UTC
Responsible Changed
From-To: swills->wg

I'll take it.
Comment 5 dfilter service freebsd_committer freebsd_triage 2013-11-10 14:02:53 UTC
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"
Comment 6 William Grzybowski freebsd_committer freebsd_triage 2013-11-10 14:02:57 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!