Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Apr 2016 17:45:30 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r413896 - in head/devel: . py-simpleeval
Message-ID:  <201604231745.u3NHjUpM058905@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sat Apr 23 17:45:30 2016
New Revision: 413896
URL: https://svnweb.freebsd.org/changeset/ports/413896

Log:
  devel/py-simpleeval: create port
  
  simpleeval is a single-file library for easily adding evaluatable expressions
  into python projects. It can allow a user to, for example, set an alarm volume,
  which could depend on the time of day, alarm level, how many previous alarms had
  gone off, and if there is music playing at the time.
  
  WWW: https://github.com/danthedeckie/simpleeval
  
  PR:		208688
  Submitted by:	Joseph Mingrone <jrm@ftfl.ca>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Apr 23 17:27:07 2016	(r413895)
+++ head/devel/Makefile	Sat Apr 23 17:45:30 2016	(r413896)
@@ -4407,6 +4407,7 @@
     SUBDIR += py-sh
     SUBDIR += py-shapely
     SUBDIR += py-should_dsl
+    SUBDIR += py-simpleeval
     SUBDIR += py-simplegeneric
     SUBDIR += py-simplejson
     SUBDIR += py-simpleparse

Added: head/devel/py-simpleeval/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-simpleeval/Makefile	Sat Apr 23 17:45:30 2016	(r413896)
@@ -0,0 +1,18 @@
+# Created by: Joseph Mignrone <jrm@ftfl.ca>
+# $FreeBSD$
+
+PORTNAME=	simpleeval
+PORTVERSION=	0.8.7
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	jrm@ftfl.ca
+COMMENT=	Simple, safe single expression evaluator python library
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-simpleeval/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-simpleeval/distinfo	Sat Apr 23 17:45:30 2016	(r413896)
@@ -0,0 +1,2 @@
+SHA256 (simpleeval-0.8.7.tar.gz) = ea13bcbe38178eebb4d374cdcb6591e0cc281a63669c29c99a6aa4fec7640117
+SIZE (simpleeval-0.8.7.tar.gz) = 11654

Added: head/devel/py-simpleeval/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-simpleeval/pkg-descr	Sat Apr 23 17:45:30 2016	(r413896)
@@ -0,0 +1,6 @@
+simpleeval is a single-file library for easily adding evaluatable expressions
+into python projects. It can allow a user to, for example, set an alarm volume,
+which could depend on the time of day, alarm level, how many previous alarms had
+gone off, and if there is music playing at the time.
+
+WWW: https://github.com/danthedeckie/simpleeval



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604231745.u3NHjUpM058905>