From owner-svn-ports-head@freebsd.org Sun Feb 21 20:00:13 2016 Return-Path: Delivered-To: svn-ports-head@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 CC87FAB0385; Sun, 21 Feb 2016 20:00:13 +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 85415E7E; Sun, 21 Feb 2016 20:00:13 +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 u1LK0Cl3059152; Sun, 21 Feb 2016 20:00:12 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1LK0CBG059149; Sun, 21 Feb 2016 20:00:12 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201602212000.u1LK0CBG059149@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 21 Feb 2016 20:00:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409310 - 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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Feb 2016 20:00:13 -0000 Author: olivierd Date: Sun Feb 21 20:00:12 2016 New Revision: 409310 URL: https://svnweb.freebsd.org/changeset/ports/409310 Log: Update to 1.4.0 PR: 203481 (based on) Submitted by: 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 Sun Feb 21 19:53:08 2016 (r409309) +++ head/lang/duktape/Makefile Sun Feb 21 20:00:12 2016 (r409310) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= duktape -PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTVERSION= 1.4.0 CATEGORIES= lang devel MASTER_SITES= http://duktape.org/ Modified: head/lang/duktape/distinfo ============================================================================== --- head/lang/duktape/distinfo Sun Feb 21 19:53:08 2016 (r409309) +++ head/lang/duktape/distinfo Sun Feb 21 20:00:12 2016 (r409310) @@ -1,2 +1,2 @@ -SHA256 (duktape-1.2.3.tar.xz) = 3c065a0cc4e0264ba01e4c35bc9cb06ff20a695186e69cec9acb6e7c0948e033 -SIZE (duktape-1.2.3.tar.xz) = 514152 +SHA256 (duktape-1.4.0.tar.xz) = 6be060a61e2893856be662196ba4ee9529becf352c0678e93a6709e2418dbdb8 +SIZE (duktape-1.4.0.tar.xz) = 697624 Modified: head/lang/duktape/files/patch-Makefile.cmdline ============================================================================== --- head/lang/duktape/files/patch-Makefile.cmdline Sun Feb 21 19:53:08 2016 (r409309) +++ head/lang/duktape/files/patch-Makefile.cmdline Sun Feb 21 20:00:12 2016 (r409310) @@ -1,4 +1,4 @@ ---- Makefile.cmdline.orig 2015-08-09 09:27:25 UTC +--- Makefile.cmdline.orig 2016-01-10 01:18:06 UTC +++ Makefile.cmdline @@ -8,16 +8,16 @@ DUKTAPE_SOURCES = src/duktape.c DUKTAPE_CMDLINE_SOURCES = \ @@ -6,10 +6,10 @@ -CC = gcc -CCOPTS = -Os -pedantic -std=c99 -Wall -fstrict-aliasing -fomit-frame-pointer --CCOPTS += -I./src +-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} ++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