diff options
author | swills <swills@FreeBSD.org> | 2015-09-28 08:58:41 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2015-09-28 08:58:41 +0800 |
commit | 960e485e06a4c54c21830cd88b1afc7102006f21 (patch) | |
tree | 0784d88a6be63557aec545a478bb71b9c8b2e2f4 | |
parent | fd34cca1c3d22823c2f00cba0b276c2135ff2800 (diff) | |
download | freebsd-ports-gnome-960e485e06a4c54c21830cd88b1afc7102006f21.tar.gz freebsd-ports-gnome-960e485e06a4c54c21830cd88b1afc7102006f21.tar.zst freebsd-ports-gnome-960e485e06a4c54c21830cd88b1afc7102006f21.zip |
devel/py-epdb: create port
Adds functionality to the python debugger, including support for remote
debugging.
WWW: https://github.com/sassoftware/epdb
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-epdb/Makefile | 18 | ||||
-rw-r--r-- | devel/py-epdb/distinfo | 2 | ||||
-rw-r--r-- | devel/py-epdb/pkg-descr | 4 |
4 files changed, 25 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 613ce6af15e8..745aac6a0c9e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3968,6 +3968,7 @@ SUBDIR += py-efl SUBDIR += py-eggtestinfo SUBDIR += py-enum34 + SUBDIR += py-epdb SUBDIR += py-epsilon SUBDIR += py-evdev SUBDIR += py-event diff --git a/devel/py-epdb/Makefile b/devel/py-epdb/Makefile new file mode 100644 index 000000000000..134ec200db3b --- /dev/null +++ b/devel/py-epdb/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= epdb +PORTVERSION= 0.14 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Enhanced Python Debugger + +USES= python +USE_GITHUB= yes +USE_PYTHON= autoplist distutils + +GH_ACCOUNT= sassoftware +GH_TAGNAME= ${PORTNAME}-${PORTVERSION} + +.include <bsd.port.mk> diff --git a/devel/py-epdb/distinfo b/devel/py-epdb/distinfo new file mode 100644 index 000000000000..6b3c11a58a4b --- /dev/null +++ b/devel/py-epdb/distinfo @@ -0,0 +1,2 @@ +SHA256 (sassoftware-epdb-0.14-epdb-0.14_GH0.tar.gz) = 707dab2f382b04479f9f693b40bfcb0a529ba8e81e778cb7000ad6a2d090e44b +SIZE (sassoftware-epdb-0.14-epdb-0.14_GH0.tar.gz) = 21603 diff --git a/devel/py-epdb/pkg-descr b/devel/py-epdb/pkg-descr new file mode 100644 index 000000000000..e4bed0de13a8 --- /dev/null +++ b/devel/py-epdb/pkg-descr @@ -0,0 +1,4 @@ +Adds functionality to the python debugger, including support for remote +debugging. + +WWW: https://github.com/sassoftware/epdb |