math/py-evalidate: New port: Safe evaluation of untrusted user-supplied python expressions

This commit is contained in:
Yuri Victorovich 2022-10-20 06:38:41 -08:00
parent 51a6af7dfa
commit 58d4920021
4 changed files with 24 additions and 0 deletions

View File

@ -867,6 +867,7 @@
SUBDIR += py-docplex
SUBDIR += py-ducc0
SUBDIR += py-ecos
SUBDIR += py-evalidate
SUBDIR += py-faiss
SUBDIR += py-fastcluster
SUBDIR += py-fastdtw

View File

@ -0,0 +1,18 @@
PORTNAME= evalidate
DISTVERSION= 1.0.2
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Safe evaluation of untrusted user-supplied python expressions
WWW= https://github.com/yaroslaff/evalidate
LICENSE= MIT
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1666281226
SHA256 (evalidate-1.0.2.tar.gz) = 7830c91fc828a27bb4e9f01db2da6fabbddafda3d067af642758b2ce33521484
SIZE (evalidate-1.0.2.tar.gz) = 9838

View File

@ -0,0 +1,2 @@
Evalidate is simple python module for safe eval()'uating user-supplied
(possibly malicious) logical expressions in python syntax.