diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-06-28 09:49:21 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-06-28 09:49:21 +0200 |
commit | 937cae774d2b744fe7e00f250bd9d9333358a6ad (patch) | |
tree | 3efee602086bae79708af013fe47a855439ff538 /community/nodejs | |
parent | bc23d831a86d6c4fee7da37fc1b8e677ab4e231d (diff) | |
parent | ad4cbb616af1b40790c6533f1d5b98dbd7aaa199 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
core/systemd/PKGBUILD
extra/dbus-glib/PKGBUILD
extra/samba/PKGBUILD
kde-unstable/kdebase-workspace/PKGBUILD
kde-unstable/kdegraphics-mobipocket/PKGBUILD
multilib/lib32-dbus-core/PKGBUILD
multilib/lib32-libtiff/PKGBUILD
Diffstat (limited to 'community/nodejs')
-rw-r--r-- | community/nodejs/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD index d78c6feb1..bfdd93dae 100644 --- a/community/nodejs/PKGBUILD +++ b/community/nodejs/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 72338 2012-06-12 05:36:21Z bpiotrowski $ +# $Id: PKGBUILD 72985 2012-06-26 13:36:13Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: James Campos <james.r.campos@gmail.com> @@ -8,7 +8,7 @@ # Contributor: TIanyi Cui <tianyicui@gmail.com> pkgname=nodejs -pkgver=0.6.19 +pkgver=0.8.0 pkgrel=1 pkgdesc='Evented I/O for V8 javascript' arch=('i686' 'x86_64' 'mips64el') @@ -19,7 +19,7 @@ checkdepends=('curl') # curl used for check() optdepends=('openssl: TLS support') options=('!emptydirs') source=("http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz") -md5sums=('f5669a9717422b811c6bad1cc961b1e5') +md5sums=('7efde00ad3292d4c56ad607ab676d935') build() { cd node-v${pkgver} @@ -27,10 +27,10 @@ build() { msg 'fixing for python2 name' find -type f -exec sed -e 's_^#!/usr/bin/env python$_&2_' -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' -e 's_^#!/usr/bin/python$_&2_' -e "s_'python'_'python2'_" -i {} \; find test -type f -exec sed -e "s|python |python2 |" -i {} \; - sed -i "s|cmd_R = 'python |cmd_R = 'python2 |" wscript + #sed -i "s|cmd_R = 'python |cmd_R = 'python2 |" wscript sed -i "s|python |python2 |" Makefile - find test -type f -exec sed -e 's/python/&2/' -i {} \; - sed -i "s/python/&2/" configure + #find test -type f -exec sed -e 's/python/&2/' -i {} \; + #sed -i "s/python/python2/" configure export PYTHON=python2 |