svn commit: r509168 - in head/devel: . py-opcodes

Yuri Victorovich yuri at FreeBSD.org
Sat Aug 17 20:24:11 UTC 2019


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 at FreeBSD.org
+COMMENT=	Database of processor instructions/opcodes
+
+LICENSE=	BSD2CLAUSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

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


More information about the svn-ports-all mailing list