From owner-svn-ports-all@freebsd.org Wed Jan 15 21:08:44 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 8A7F91FD83D; Wed, 15 Jan 2020 21:08:44 +0000 (UTC) (envelope-from antoine@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 47yg0r37rXz41pS; Wed, 15 Jan 2020 21:08:44 +0000 (UTC) (envelope-from antoine@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 4DCA5CAE5; Wed, 15 Jan 2020 21:08:44 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00FL8iad056978; Wed, 15 Jan 2020 21:08:44 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00FL8htw056974; Wed, 15 Jan 2020 21:08:43 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202001152108.00FL8htw056974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 15 Jan 2020 21:08:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r523168 - in head/devel: . dwarf2json X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/devel: . dwarf2json X-SVN-Commit-Revision: 523168 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: Wed, 15 Jan 2020 21:08:44 -0000 Author: antoine Date: Wed Jan 15 21:08:43 2020 New Revision: 523168 URL: https://svnweb.freebsd.org/changeset/ports/523168 Log: New port: devel/dwarf2json dwarf2json is a Go utility that processes files containing symbol and type information to generate Volatilty3 Intermediate Symbol File (ISF) JSON output suitable for Linux and macOS analysis. WWW: https://github.com/volatilityfoundation/dwarf2json Added: head/devel/dwarf2json/ head/devel/dwarf2json/Makefile (contents, props changed) head/devel/dwarf2json/distinfo (contents, props changed) head/devel/dwarf2json/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 15 21:08:41 2020 (r523167) +++ head/devel/Makefile Wed Jan 15 21:08:43 2020 (r523168) @@ -517,6 +517,7 @@ SUBDIR += dulwich SUBDIR += dupl SUBDIR += duplo + SUBDIR += dwarf2json SUBDIR += dwarfdump SUBDIR += dxa65 SUBDIR += dyncall Added: head/devel/dwarf2json/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dwarf2json/Makefile Wed Jan 15 21:08:43 2020 (r523168) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= dwarf2json +DISTVERSION= g20191016 +CATEGORIES= devel + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Convert ELF/DWARF symbol and type information into JSON + +LICENSE= VSL +LICENSE_NAME= Volatility Software License +LICENSE_FILE= ${WRKSRC}/LICENSE.txt +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USE_GITHUB= yes +GH_ACCOUNT= volatilityfoundation +GH_TAGNAME= 282454f +GH_TUPLE= spf13:pflag:v1.0.5:spf13_pflag/vendor/github.com/spf13/pflag + +USES= go:modules +PLIST_FILES= bin/dwarf2json + +.include Added: head/devel/dwarf2json/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dwarf2json/distinfo Wed Jan 15 21:08:43 2020 (r523168) @@ -0,0 +1,5 @@ +TIMESTAMP = 1577697586 +SHA256 (volatilityfoundation-dwarf2json-g20191016-282454f_GH0.tar.gz) = 1fcc223976ae80f54164459e7ba5b3c5ccca73b0d3b027a08c619da7bfff3942 +SIZE (volatilityfoundation-dwarf2json-g20191016-282454f_GH0.tar.gz) = 9880 +SHA256 (spf13-pflag-v1.0.5_GH0.tar.gz) = 9a2cae1f8e8ab0d2cc8ebe468e871af28d9ac0962cf0520999e3ba85f0c7b808 +SIZE (spf13-pflag-v1.0.5_GH0.tar.gz) = 50796 Added: head/devel/dwarf2json/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dwarf2json/pkg-descr Wed Jan 15 21:08:43 2020 (r523168) @@ -0,0 +1,5 @@ +dwarf2json is a Go utility that processes files containing symbol and type +information to generate Volatilty3 Intermediate Symbol File (ISF) JSON output +suitable for Linux and macOS analysis. + +WWW: https://github.com/volatilityfoundation/dwarf2json