From owner-svn-ports-all@freebsd.org Sun Dec 13 14:42:34 2020 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 9E9D64B9FF9; Sun, 13 Dec 2020 14:42:34 +0000 (UTC) (envelope-from sunpoet@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4Cv6gX0FQ4z3txb; Sun, 13 Dec 2020 14:42:32 +0000 (UTC) (envelope-from sunpoet@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 C93E711804; Sun, 13 Dec 2020 14:42:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BDEgTA2036550; Sun, 13 Dec 2020 14:42:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BDEgT0E036547; Sun, 13 Dec 2020 14:42:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202012131442.0BDEgT0E036547@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 13 Dec 2020 14:42:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r557921 - head/devel/py-pygdbmi X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-pygdbmi X-SVN-Commit-Revision: 557921 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.34 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: Sun, 13 Dec 2020 14:42:35 -0000 Author: sunpoet Date: Sun Dec 13 14:42:28 2020 New Revision: 557921 URL: https://svnweb.freebsd.org/changeset/ports/557921 Log: Update to 0.10.0.0 - Change MASTER_SITES from GitHub to CHEESESHOP - Add NO_ARCH - Update pkg-descr Changes: https://github.com/cs01/pygdbmi/releases Modified: head/devel/py-pygdbmi/Makefile head/devel/py-pygdbmi/distinfo head/devel/py-pygdbmi/pkg-descr Modified: head/devel/py-pygdbmi/Makefile ============================================================================== --- head/devel/py-pygdbmi/Makefile Sun Dec 13 14:42:23 2020 (r557920) +++ head/devel/py-pygdbmi/Makefile Sun Dec 13 14:42:28 2020 (r557921) @@ -1,20 +1,20 @@ # $FreeBSD$ PORTNAME= pygdbmi -PORTVERSION= 0.8.2.0 +PORTVERSION= 0.10.0.0 CATEGORIES= devel lang python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Parse gdb machine interface (mi) string output +COMMENT= Parse gdb machine interface output with Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_GITHUB= yes -GH_ACCOUNT= cs01 +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils -USES= python -USE_PYTHON= autoplist distutils +NO_ARCH= yes .include Modified: head/devel/py-pygdbmi/distinfo ============================================================================== --- head/devel/py-pygdbmi/distinfo Sun Dec 13 14:42:23 2020 (r557920) +++ head/devel/py-pygdbmi/distinfo Sun Dec 13 14:42:28 2020 (r557921) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518004483 -SHA256 (cs01-pygdbmi-0.8.2.0_GH0.tar.gz) = a8ff7b515c0716aaa7d52d6e328c761eb82638dfca319e4dd2a3eb97ec4d51b8 -SIZE (cs01-pygdbmi-0.8.2.0_GH0.tar.gz) = 23441 +TIMESTAMP = 1607685377 +SHA256 (pygdbmi-0.10.0.0.tar.gz) = 0706b81404a77f78f8b51db43205e94a7ac8fd7ce87b6eac2681baadeff85826 +SIZE (pygdbmi-0.10.0.0.tar.gz) = 18728 Modified: head/devel/py-pygdbmi/pkg-descr ============================================================================== --- head/devel/py-pygdbmi/pkg-descr Sun Dec 13 14:42:23 2020 (r557920) +++ head/devel/py-pygdbmi/pkg-descr Sun Dec 13 14:42:28 2020 (r557921) @@ -1,15 +1,6 @@ -Parse gdb machine interface string output and -return structured data types (Python dicts) that -are JSON serializable. -Useful for writing the backend to a gdb frontend. -For example, gdbgui uses pygdbmi on the backend. - -Also implements a class to control gdb, GdbController, -which allows programmatic control of gdb using Python, -which is also useful if creating a front end. - -To get machine interface output from gdb, -run gdb with the --interpreter=mi2 flag. - +GDB/MI is a line based machine oriented text interface to GDB and is activated +by specifying using the --interpreter command line option (see Mode Options). It +is specifically intended to support the development of systems which use the +debugger as just one small component of a larger system. WWW: https://github.com/cs01/pygdbmi