patrick     14/07/23 03:41:43

  Modified:             ChangeLog
  Added:                nodejs-0.10.29-r1.ebuild
  Log:
  Small fixes and unbundling for 0.10
  
  (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.122                net-libs/nodejs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog   23 Jul 2014 03:28:49 -0000      1.121
+++ ChangeLog   23 Jul 2014 03:41:43 -0000      1.122
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/nodejs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.121 
2014/07/23 03:28:49 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.122 
2014/07/23 03:41:43 patrick Exp $
+
+*nodejs-0.10.29-r1 (23 Jul 2014)
+
+  23 Jul 2014; Patrick Lauer <[email protected]> +nodejs-0.10.29-r1.ebuild:
+  Small fixes and unbundling for 0.10
 
   23 Jul 2014; Patrick Lauer <[email protected]> nodejs-0.10.29.ebuild,
   nodejs-0.11.13.ebuild, nodejs-0.8.27.ebuild:



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

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

Index: nodejs-0.10.29-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.10.29-r1.ebuild,v 
1.1 2014/07/23 03:41:43 patrick Exp $

EAPI=5

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

PYTHON_COMPAT=( python2_{6,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 +snapshot"

RDEPEND="dev-libs/openssl"
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 snapshot && myconf="${myconf} --without-snapshot"

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

src_compile() {
        local V=1
        export V
        emake out/Makefile
        emake -C out mksnapshot
        pax-mark m out/Release/mksnapshot
        emake
}

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

        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