From owner-svn-ports-all@freebsd.org Tue May 30 13:51:11 2017 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 9B7CFB7D5E5; Tue, 30 May 2017 13:51:11 +0000 (UTC) (envelope-from skreuzer@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 6B3522842; Tue, 30 May 2017 13:51:11 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4UDpATf022527; Tue, 30 May 2017 13:51:10 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4UDpAY7022524; Tue, 30 May 2017 13:51:10 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201705301351.v4UDpAY7022524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Tue, 30 May 2017 13:51:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442065 - in head/math/moo: . files 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.23 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: Tue, 30 May 2017 13:51:11 -0000 Author: skreuzer Date: Tue May 30 13:51:10 2017 New Revision: 442065 URL: https://svnweb.freebsd.org/changeset/ports/442065 Log: Update to version 1.5 Deleted: head/math/moo/files/patch-Makefile Modified: head/math/moo/Makefile head/math/moo/distinfo head/math/moo/files/patch-moo.y Modified: head/math/moo/Makefile ============================================================================== --- head/math/moo/Makefile Tue May 30 13:50:44 2017 (r442064) +++ head/math/moo/Makefile Tue May 30 13:51:10 2017 (r442065) @@ -2,13 +2,15 @@ # $FreeBSD$ PORTNAME= moo -PORTVERSION= 1.3 +PORTVERSION= 1.5 CATEGORIES= math -MASTER_SITES= http://www.cyth.net/moo/ -EXTRACT_SUFX= .tgz MAINTAINER= skreuzer@FreeBSD.org COMMENT= Calculator that accepts C-like syntax as input + +USE_GITHUB= yes +GH_ACCOUNT= raylai +GH_TAGNAME= ${PORTVERSION} PLIST_FILES= bin/moo man/man1/moo.1.gz Modified: head/math/moo/distinfo ============================================================================== --- head/math/moo/distinfo Tue May 30 13:50:44 2017 (r442064) +++ head/math/moo/distinfo Tue May 30 13:51:10 2017 (r442065) @@ -1,2 +1,3 @@ -SHA256 (moo-1.3.tgz) = 32d567dc74ac0123034009d570d3809f35d12a13978fb409153520448b40d45f -SIZE (moo-1.3.tgz) = 7380 +TIMESTAMP = 1496151728 +SHA256 (raylai-moo-1.5_GH0.tar.gz) = d99fc2d858c0efbfd730737b5af47e0a8d0d5e8f48890b049f86a876821aaeb3 +SIZE (raylai-moo-1.5_GH0.tar.gz) = 8661 Modified: head/math/moo/files/patch-moo.y ============================================================================== --- head/math/moo/files/patch-moo.y Tue May 30 13:50:44 2017 (r442064) +++ head/math/moo/files/patch-moo.y Tue May 30 13:51:10 2017 (r442065) @@ -1,6 +1,6 @@ ---- moo.y.orig Thu Apr 5 14:14:22 2007 -+++ moo.y Thu Apr 5 14:14:29 2007 -@@ -37,7 +37,7 @@ +--- moo.y.orig 2016-06-04 10:05:27 UTC ++++ moo.y +@@ -34,7 +34,7 @@ static int used_oct; static void divbyzero(void); static void printnum(int64_t); @@ -9,3 +9,23 @@ void yyerror(char *); int yylex(void); int yyparse(void); +@@ -317,9 +317,6 @@ main(int argc, char *argv[]) + { + int ch; + +- if (pledge("stdio tmppath", NULL) == -1) +- err(1, "pledge"); +- + while ((ch = getopt(argc, argv, "0123456789b:lsuw:")) != -1) + switch (ch) { + /* +@@ -403,9 +400,6 @@ DONEPARSING: + yyin = sfp; + } + +- if (pledge("stdio", NULL) == -1) +- err(1, "pledge"); +- + yyparse(); + + return (0);