From owner-svn-ports-all@freebsd.org Fri Nov 1 16:39:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F085117B2EA; Fri, 1 Nov 2019 16:39:28 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 474SZm65CXz4Tf8; Fri, 1 Nov 2019 16:39:28 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B4350DDE5; Fri, 1 Nov 2019 16:39:28 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA1GdS9k042320; Fri, 1 Nov 2019 16:39:28 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA1GdRHU042316; Fri, 1 Nov 2019 16:39:27 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201911011639.xA1GdRHU042316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Fri, 1 Nov 2019 16:39:27 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/devel: . py-remote-pdb X-SVN-Commit-Revision: 516250 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2019 16:39:29 -0000 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 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