From owner-svn-ports-all@freebsd.org Sat Apr 23 17:45:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01D97B1ADF4; Sat, 23 Apr 2016 17:45:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B76D41152; Sat, 23 Apr 2016 17:45:31 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3NHjUTV058910; Sat, 23 Apr 2016 17:45:30 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NHjUpM058905; Sat, 23 Apr 2016 17:45:30 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201604231745.u3NHjUpM058905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Apr 2016 17:45:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413896 - in head/devel: . py-simpleeval X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Apr 2016 17:45:32 -0000 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 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 +# $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 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