Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Nov 2019 16:39:27 +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: r516250 - in head/devel: . py-remote-pdb
Message-ID:  <201911011639.xA1GdRHU042316@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Fri Nov  1 16:39:27 2019
New Revision: 516250
URL: https://svnweb.freebsd.org/changeset/ports/516250

Log:
  devel/py-remote-pdb: Remote vanilla PDB (over TCP sockets) done right
  
  No extras, proper handling around connection failures and CI. Based on pdbx.
  
  WWW: https://github.com/ionelmc/python-remote-pdb

Added:
  head/devel/py-remote-pdb/
  head/devel/py-remote-pdb/Makefile   (contents, props changed)
  head/devel/py-remote-pdb/distinfo   (contents, props changed)
  head/devel/py-remote-pdb/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Nov  1 16:35:36 2019	(r516249)
+++ head/devel/Makefile	Fri Nov  1 16:39:27 2019	(r516250)
@@ -4974,6 +4974,7 @@
     SUBDIR += py-rebulk
     SUBDIR += py-rednose
     SUBDIR += py-rekall-efilter
+    SUBDIR += py-remote-pdb
     SUBDIR += py-repoze.lru
     SUBDIR += py-repoze.sphinx.autointerface
     SUBDIR += py-repoze.tm2

Added: head/devel/py-remote-pdb/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-remote-pdb/Makefile	Fri Nov  1 16:39:27 2019	(r516250)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	remote-pdb
+PORTVERSION=	2.0.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	python@FreeBSD.org
+COMMENT=	Remote vanilla PDB over TCP sockets
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-remote-pdb/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-remote-pdb/distinfo	Fri Nov  1 16:39:27 2019	(r516250)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1572625786
+SHA256 (remote-pdb-2.0.0.tar.gz) = ad38f36f539b22be820f94062618366d5d3461115c1605b11679dba75f94ee62
+SIZE (remote-pdb-2.0.0.tar.gz) = 18410

Added: head/devel/py-remote-pdb/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-remote-pdb/pkg-descr	Fri Nov  1 16:39:27 2019	(r516250)
@@ -0,0 +1,5 @@
+Remote vanilla PDB (over TCP sockets) done right.
+
+No extras, proper handling around connection failures and CI. Based on pdbx.
+
+WWW: https://github.com/ionelmc/python-remote-pdb



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