From owner-svn-ports-all@freebsd.org Wed May 18 20:16:53 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 86914B41F67; Wed, 18 May 2016 20:16:53 +0000 (UTC) (envelope-from olivierd@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 39AB81B94; Wed, 18 May 2016 20:16:53 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4IKGqem014958; Wed, 18 May 2016 20:16:52 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4IKGqCE014955; Wed, 18 May 2016 20:16:52 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201605182016.u4IKGqCE014955@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 18 May 2016 20:16:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415464 - in head/lang/duktape: . 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.22 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: Wed, 18 May 2016 20:16:53 -0000 Author: olivierd Date: Wed May 18 20:16:51 2016 New Revision: 415464 URL: https://svnweb.freebsd.org/changeset/ports/415464 Log: Update to 1.5.0 Changes: http://duktape.org/download.html#id33 Modified: head/lang/duktape/Makefile head/lang/duktape/distinfo head/lang/duktape/files/patch-Makefile.cmdline Modified: head/lang/duktape/Makefile ============================================================================== --- head/lang/duktape/Makefile Wed May 18 19:51:00 2016 (r415463) +++ head/lang/duktape/Makefile Wed May 18 20:16:51 2016 (r415464) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= duktape -PORTVERSION= 1.4.1 +PORTVERSION= 1.5.0 CATEGORIES= lang devel MASTER_SITES= http://duktape.org/ Modified: head/lang/duktape/distinfo ============================================================================== --- head/lang/duktape/distinfo Wed May 18 19:51:00 2016 (r415463) +++ head/lang/duktape/distinfo Wed May 18 20:16:51 2016 (r415464) @@ -1,2 +1,3 @@ -SHA256 (duktape-1.4.1.tar.xz) = a4f25f83fdfa9778847abe0628ffed1dc88d2cd2dfcfe0a425048b36449c5089 -SIZE (duktape-1.4.1.tar.xz) = 698848 +TIMESTAMP = 1463550145 +SHA256 (duktape-1.5.0.tar.xz) = 7ed8838eb33b8a11433241c990bf9aa9803b7f4a1618eaf8fdb4c3a884e93ec0 +SIZE (duktape-1.5.0.tar.xz) = 708528 Modified: head/lang/duktape/files/patch-Makefile.cmdline ============================================================================== --- head/lang/duktape/files/patch-Makefile.cmdline Wed May 18 19:51:00 2016 (r415463) +++ head/lang/duktape/files/patch-Makefile.cmdline Wed May 18 20:16:51 2016 (r415464) @@ -1,6 +1,6 @@ ---- Makefile.cmdline.orig 2016-01-10 01:18:06 UTC +--- Makefile.cmdline.orig 2016-05-03 11:57:37 UTC +++ Makefile.cmdline -@@ -8,16 +8,16 @@ DUKTAPE_SOURCES = src/duktape.c +@@ -8,9 +8,9 @@ DUKTAPE_SOURCES = src/duktape.c DUKTAPE_CMDLINE_SOURCES = \ examples/cmdline/duk_cmdline.c @@ -9,16 +9,7 @@ -CCOPTS += -I./src # duktape.h and duk_config.h must be in include path +CC ?= gcc +CCOPTS = ${CFLAGS} -pedantic -std=c99 -Wall -fstrict-aliasing -fomit-frame-pointer -+CCOPTS += -I./src ${CPPFLAGS} # duktape.h and duk_config.h must be in include path ++CCOPTS += -I./src ${CPPFLAGS} # duktape.h and duk_config.h must be in include path CCLIBS = -lm - # If you have readline, you may want to enable these. On some platforms - # -lreadline also requires -lncurses (e.g. RHEL), so it is added by default - # (you may be able to remove it) --#CCOPTS += -DDUK_CMDLINE_FANCY --#CCLIBS += -lreadline -+CCOPTS += -DDUK_CMDLINE_FANCY -+CCLIBS += ${LDFLAGS} -ledit - #CCLIBS += -lncurses - - # Optional feature defines, see: http://duktape.org/guide.html#compiling + # If you want linenoise, you can enable these. At the moment linenoise