svn commit: r509171 - in head/devel: . py-PeachPy
Yuri Victorovich
yuri at FreeBSD.org
Sat Aug 17 20:42:04 UTC 2019
Author: yuri
Date: Sat Aug 17 20:42:03 2019
New Revision: 509171
URL: https://svnweb.freebsd.org/changeset/ports/509171
Log:
New port: devel/py-PeachPy: Portable efficient assembly codegen in higher-level Python
Added:
head/devel/py-PeachPy/
head/devel/py-PeachPy/Makefile (contents, props changed)
head/devel/py-PeachPy/distinfo (contents, props changed)
head/devel/py-PeachPy/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Aug 17 20:41:53 2019 (r509170)
+++ head/devel/Makefile Sat Aug 17 20:42:03 2019 (r509171)
@@ -4012,6 +4012,7 @@
SUBDIR += py-Missing
SUBDIR += py-MultiMapping
SUBDIR += py-PEAK-Rules
+ SUBDIR += py-PeachPy
SUBDIR += py-Persistence
SUBDIR += py-Pint
SUBDIR += py-Products.ATContentTypes
Added: head/devel/py-PeachPy/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-PeachPy/Makefile Sat Aug 17 20:42:03 2019 (r509171)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= PeachPy
+DISTVERSION= 0.0.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri at FreeBSD.org
+COMMENT= Portable efficient assembly codegen in higher-level Python
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+USES= python:2.7 zip # fails with python-3.6: https://bitbucket.org/MDukhan/peachpy/issues/5/fails-with-python-36
+USE_PYTHON= distutils autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-PeachPy/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-PeachPy/distinfo Sat Aug 17 20:42:03 2019 (r509171)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1566073906
+SHA256 (PeachPy-0.0.1.zip) = 9eaa37c0a914900dd93051080a9510c488fff626a22cc9c855c35045e0ac2843
+SIZE (PeachPy-0.0.1.zip) = 116904
Added: head/devel/py-PeachPy/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-PeachPy/pkg-descr Sat Aug 17 20:42:03 2019 (r509171)
@@ -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