From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 14 04:10:00 2012 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A49EA6CD for ; Fri, 14 Dec 2012 04:10:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7D41D8FC0A for ; Fri, 14 Dec 2012 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qBE4A0ON022368 for ; Fri, 14 Dec 2012 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBE4A0EY022367; Fri, 14 Dec 2012 04:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 14 Dec 2012 04:10:00 GMT Resent-Message-Id: <201212140410.qBE4A0EY022367@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A81966A for ; Fri, 14 Dec 2012 04:04:02 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id E55328FC13 for ; Fri, 14 Dec 2012 04:04:01 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id 9B7CE5CEE; Fri, 14 Dec 2012 11:56:24 +0800 (CST) Message-Id: <20121214035624.9B7CE5CEE@deep.tw> Date: Fri, 14 Dec 2012 11:56:24 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/174425: [MAINTAINER] www/node: update to 0.8.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Dec 2012 04:10:00 -0000 >Number: 174425 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.8.16 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Dec 14 04:10:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Aug 18 08:09:36 CST 2012 >Description: - Update to 0.8.16 Removed file(s): - files/patch-gyp-common.py - files/patch-tools-install.py Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-0.8.16.patch begins here --- diff -ruN --exclude=CVS ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2012-11-28 09:05:17.000000000 +0800 +++ ./Makefile 2012-12-14 11:18:42.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.8.15 +PORTVERSION= 0.8.16 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN --exclude=CVS ../node.orig/distinfo ./distinfo --- ../node.orig/distinfo 2012-11-27 11:56:22.000000000 +0800 +++ ./distinfo 2012-12-14 11:19:01.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.15.tar.gz) = 1758639c6df3e081fe26585472d0f1961c5703b44ba6c57ecdf66a4c015792b1 -SIZE (node-v0.8.15.tar.gz) = 11867033 +SHA256 (node-v0.8.16.tar.gz) = 2cd09d4227c787d6886be45dc54dad5aed779d7bd4b1e15ba930101d9d1ed2a4 +SIZE (node-v0.8.16.tar.gz) = 11899509 diff -ruN --exclude=CVS ../node.orig/files/patch-gyp-common.py ./files/patch-gyp-common.py --- ../node.orig/files/patch-gyp-common.py 2012-08-14 21:05:48.000000000 +0800 +++ ./files/patch-gyp-common.py 1970-01-01 08:00:00.000000000 +0800 @@ -1,14 +0,0 @@ ---- tools/gyp/pylib/gyp/common.py.orig 2012-02-02 03:37:12.000000000 +0800 -+++ tools/gyp/pylib/gyp/common.py 2012-02-08 01:20:58.000000000 +0800 -@@ -352,7 +352,10 @@ - 'freebsd7': 'freebsd', - 'freebsd8': 'freebsd', - } -- flavor = flavors.get(sys.platform, 'linux') -+ if 'freebsd' in sys.platform: -+ flavor = 'freebsd' -+ else: -+ flavor = flavors.get(sys.platform, 'linux') - return params.get('flavor', flavor) - - diff -ruN --exclude=CVS ../node.orig/files/patch-tools-install.py ./files/patch-tools-install.py --- ../node.orig/files/patch-tools-install.py 2012-08-14 21:05:48.000000000 +0800 +++ ./files/patch-tools-install.py 1970-01-01 08:00:00.000000000 +0800 @@ -1,11 +0,0 @@ ---- tools/install.py.orig 2012-08-11 15:59:08.000000000 +0800 -+++ tools/install.py 2012-08-11 15:59:36.000000000 +0800 -@@ -191,7 +191,7 @@ - 'deps/uv/include/uv-private/uv-unix.h', - 'deps/uv/include/uv-private/uv-win.h'], - 'include/node/uv-private/') -- action(['doc/node.1'], 'share/man/man1/') -+ action(['doc/node.1'], 'man/man1/') - action(['out/Release/node'], 'bin/node') - - # install unconditionally, checking if the platform supports dtrace doesn't --- node-0.8.16.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: