mgorny      15/04/11 17:39:36

  Modified:             ChangeLog
  Added:                nodejs-0.12.2-r1.ebuild
  Removed:              nodejs-0.12.2.ebuild
  Log:
  Bump dependency on libuv due to runtime failures, bug #545618. 
https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/92 by Matthew Dawson.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  Changes    Path
1.142                net-libs/nodejs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nodejs/ChangeLog?rev=1.142&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nodejs/ChangeLog?rev=1.142&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nodejs/ChangeLog?r1=1.141&r2=1.142

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog   8 Apr 2015 18:04:57 -0000       1.141
+++ ChangeLog   11 Apr 2015 17:39:36 -0000      1.142
@@ -1,6 +1,14 @@
 # ChangeLog for net-libs/nodejs
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.141 
2015/04/08 18:04:57 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.142 
2015/04/11 17:39:36 mgorny Exp $
+
+*nodejs-0.12.2-r1 (11 Apr 2015)
+
+  11 Apr 2015; Michał Górny <mgo...@gentoo.org> +nodejs-0.12.2-r1.ebuild,
+  -nodejs-0.12.2.ebuild:
+  Bump dependency on libuv due to runtime failures, bug #545618.
+  https://github.com/gentoo/gentoo-portage-rsync-mirror/pull/92 by Matthew
+  Dawson.
 
   08 Apr 2015; Michał Górny <mgo...@gentoo.org> nodejs-0.10.30.ebuild,
   nodejs-0.10.36.ebuild, nodejs-0.12.0.ebuild, nodejs-0.12.1.ebuild,



1.1                  net-libs/nodejs/nodejs-0.12.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nodejs/nodejs-0.12.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nodejs/nodejs-0.12.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: nodejs-0.12.2-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.12.2-r1.ebuild,v 
1.1 2015/04/11 17:39:36 mgorny Exp $

EAPI=5

# has known failures. sigh.
RESTRICT="test"

PYTHON_COMPAT=( python2_7 )

inherit python-any-r1 pax-utils toolchain-funcs

DESCRIPTION="Evented IO for V8 Javascript"
HOMEPAGE="http://nodejs.org/";
SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz";

LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~x64-macos"
IUSE="+npm"

RDEPEND="dev-libs/openssl:0=[-bindist]
        >=net-libs/http-parser-2.3
        =dev-libs/libuv-1.4.2"
DEPEND="${PYTHON_DEPS}
        ${RDEPEND}"

S=${WORKDIR}/node-v${PV}

src_prepare() {
        # fix compilation on Darwin
        # http://code.google.com/p/gyp/issues/detail?id=260
        sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || 
die

        # make sure we use python2.* while using gyp
        sed -i -e  "s/python/python2/" deps/npm/node_modules/node-gyp/gyp/gyp 
|| die

        # less verbose install output (stating the same as portage, basically)
        sed -i -e "/print/d" tools/install.py || die

        tc-export CC CXX
}

src_configure() {
        local myconf=""
        ! use npm && myconf="--without-npm"

        # Use target arch detection logic, see v8-3.18 ebuilds
        case ${CHOST} in
                i?86-*)
                        myarch="ia32"
                        myconf+=" -Dv8_target_arch=ia32" ;;
                x86_64-*)
                        if [[ $ABI = x86 ]] ; then
                                myarch="ia32"
                        else
                                myarch="x64"
                        fi ;;
                arm*-*)
                        myarch="arm"
                        ;;
                *) die "Unrecognized CHOST: ${CHOST}"
        esac

        "${PYTHON}" configure --prefix="${EPREFIX}"/usr \
                --shared-openssl \
                --shared-libuv \
                --shared-http-parser \
                --shared-zlib \
                --without-dtrace ${myconf} || die
}

src_compile() {
        local V=1
        export V
        emake out/Makefile
        emake
}

src_install() {
        "${PYTHON}" tools/install.py install "${D}" /usr

        use npm && dohtml -r "${ED}"/usr/lib/node_modules/npm/html/*
        rm -rf "${ED}"/usr/lib/node_modules/npm/doc 
"${ED}"/usr/lib/node_modules/npm/html
        rm -rf "${ED}"/usr/lib/dtrace

        pax-mark -m "${ED}"/usr/bin/node
}

src_test() {
        "${PYTHON}" tools/test.py --mode=release simple message || die
}




Reply via email to