From owner-svn-ports-head@freebsd.org Sat Aug 17 20:24:11 2019 Return-Path: Delivered-To: svn-ports-head@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 3D2E1B042C; Sat, 17 Aug 2019 20:24:11 +0000 (UTC) (envelope-from yuri@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 469s970tKJz3F6J; Sat, 17 Aug 2019 20:24:11 +0000 (UTC) (envelope-from yuri@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 DBC781F149; Sat, 17 Aug 2019 20:24:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7HKOAps066932; Sat, 17 Aug 2019 20:24:10 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7HKOA7i066928; Sat, 17 Aug 2019 20:24:10 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201908172024.x7HKOA7i066928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 17 Aug 2019 20:24:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509168 - in head/devel: . py-opcodes X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-opcodes X-SVN-Commit-Revision: 509168 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Aug 2019 20:24:11 -0000 Author: yuri Date: Sat Aug 17 20:24:09 2019 New Revision: 509168 URL: https://svnweb.freebsd.org/changeset/ports/509168 Log: New port: devel/py-opcodes: Database of processor instructions/opcodes Added: head/devel/py-opcodes/ head/devel/py-opcodes/Makefile (contents, props changed) head/devel/py-opcodes/distinfo (contents, props changed) head/devel/py-opcodes/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Aug 17 20:14:16 2019 (r509167) +++ head/devel/Makefile Sat Aug 17 20:24:09 2019 (r509168) @@ -4678,6 +4678,7 @@ SUBDIR += py-oletools SUBDIR += py-omnijson SUBDIR += py-omniorb + SUBDIR += py-opcodes SUBDIR += py-openapi-codec SUBDIR += py-openapi-spec-validator SUBDIR += py-opendht Added: head/devel/py-opcodes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-opcodes/Makefile Sat Aug 17 20:24:09 2019 (r509168) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= opcodes +DISTVERSION= 0.3.14 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Database of processor instructions/opcodes + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/devel/py-opcodes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-opcodes/distinfo Sat Aug 17 20:24:09 2019 (r509168) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566073193 +SHA256 (opcodes-0.3.14.tar.gz) = 16ec1cea4cf3dda767e6c0a718f664ef97a34ed24c91998a3c25c3f960c15fba +SIZE (opcodes-0.3.14.tar.gz) = 218202 Added: head/devel/py-opcodes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-opcodes/pkg-descr Sat Aug 17 20:24:09 2019 (r509168) @@ -0,0 +1,10 @@ +The goal of this project is to document instruction sets in a format convenient +for tools development. + +An instruction set is represented by three files: +* An XML file that describes instructions +* An XSD file that describes the structure of the XML file +* A Python module that reads the XML file and represents it as a set of Python + objects + +WWW: https://github.com/Maratyszcza/Opcodes