svn commit: r480126 - in head/devel: . py-pycodeexport

Yuri Victorovich yuri at FreeBSD.org
Wed Sep 19 23:46:49 UTC 2018


Author: yuri
Date: Wed Sep 19 23:46:47 2018
New Revision: 480126
URL: https://svnweb.freebsd.org/changeset/ports/480126

Log:
  New port: devel/py-pycodeexport: Python package for code generation

Added:
  head/devel/py-pycodeexport/
  head/devel/py-pycodeexport/Makefile   (contents, props changed)
  head/devel/py-pycodeexport/distinfo   (contents, props changed)
  head/devel/py-pycodeexport/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Sep 19 23:43:20 2018	(r480125)
+++ head/devel/Makefile	Wed Sep 19 23:46:47 2018	(r480126)
@@ -4876,6 +4876,7 @@
     SUBDIR += py-pycapsicum
     SUBDIR += py-pycerberus
     SUBDIR += py-pycmd
+    SUBDIR += py-pycodeexport
     SUBDIR += py-pycodestyle
     SUBDIR += py-pycompilation
     SUBDIR += py-pycparser

Added: head/devel/py-pycodeexport/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycodeexport/Makefile	Wed Sep 19 23:46:47 2018	(r480126)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	pycodeexport
+DISTVERSION=	0.1.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Python package for code generation
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mako>=1.0.0:textproc/py-mako@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pycompilation>=0.4.0:devel/py-pycompilation@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}sympy>=0.7.5:math/py-sympy@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils cython_run autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pycodeexport/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycodeexport/distinfo	Wed Sep 19 23:46:47 2018	(r480126)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1537399107
+SHA256 (pycodeexport-0.1.2.tar.gz) = e33b0736de2d95ffc63fd720bfb3ca36c8572911a10bfac6e67bdce3b7da6160
+SIZE (pycodeexport-0.1.2.tar.gz) = 11872

Added: head/devel/py-pycodeexport/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycodeexport/pkg-descr	Wed Sep 19 23:46:47 2018	(r480126)
@@ -0,0 +1,6 @@
+pycodeexport is a Python package which bundles convenience classes and functions
+for code-generation. The package has been developed to aid on-the-fly
+compilation (meta-programming) of math related problems expressed as SymPy
+expressions. Note that this package has an alpha development status.
+
+WWW: https://github.com/bjodah/pycodeexport


More information about the svn-ports-all mailing list