Changeset 81593
- Timestamp:
- 08/02/11 09:58:08 (4 years ago)
- Location:
- trunk/dports/devel/nodejs-devel
- Files:
-
- 1 deleted
- 2 edited
-
Portfile (modified) (3 diffs)
-
files/patch-Makefile-python.diff (modified) (5 diffs)
-
files/patch-platform.diff (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/devel/nodejs-devel/Portfile
r81111 r81593 5 5 6 6 name nodejs-devel 7 version 0.5. 27 version 0.5.3 8 8 categories devel net 9 9 platforms darwin … … 22 22 master_sites ${homepage}dist/v${version}/ 23 23 24 checksums sha1 c278f719340c2c6484155b8fa1ed802dacead965\25 rmd160 90a9ecd5f5f51ca05e32ea99026b6a847e21268a24 checksums sha1 2f1a54d32c94eee8f18186c948c22c329898d540 \ 25 rmd160 ace56eb02cd1b885602512573eb4ddfee2707646 26 26 27 27 distname node-v${version} … … 29 29 depends_build port:python27 30 30 31 patchfiles patch-Makefile-python.diff \ 32 patch-platform.diff 31 patchfiles patch-Makefile-python.diff 33 32 34 33 pre-configure { -
trunk/dports/devel/nodejs-devel/files/patch-Makefile-python.diff
r80395 r81593 1 --- Makefile.orig 2011-0 3-18 22:25:20.000000000 +01002 +++ Makefile 2011-0 4-05 09:51:09.000000000 +02001 --- Makefile.orig 2011-08-02 18:08:14.000000000 +0200 2 +++ Makefile 2011-08-02 18:08:26.000000000 +0200 3 3 @@ -1,4 +1,5 @@ 4 4 -WAF=python tools/waf-light … … 8 8 web_root = ryan@nodejs.org:~/web/nodejs.org/ 9 9 10 @@ - 23,34 +24,34@@10 @@ -33,40 +34,40 @@ 11 11 @$(WAF) uninstall 12 12 … … 14 14 - python tools/test.py --mode=release simple message 15 15 + $(PYTHON) tools/test.py --mode=release simple message 16 17 test-http2: all 18 - python tools/test.py --mode=release --use-http2 simple message 19 + $(PYTHON) tools/test.py --mode=release --use-http2 simple message 16 20 17 21 test-valgrind: all … … 22 26 - python tools/test.py --mode=debug,release 23 27 + $(PYTHON) tools/test.py --mode=debug,release 28 29 test-all-http2: all 30 - python tools/test.py --mode=debug,release --use-http2 31 + $(PYTHON) tools/test.py --mode=debug,release --use-http2 24 32 25 33 test-all-valgrind: all … … 51 59 + $(PYTHON) tools/test.py internet 52 60 61 UVTEST += simple/test-assert 62 UVTEST += simple/test-buffer 63 @@ -251,10 +252,10 @@ 64 65 66 test-uv: all 67 - NODE_USE_UV=1 python tools/test.py $(UVTEST) 68 + NODE_USE_UV=1 $(PYTHON) tools/test.py $(UVTEST) 69 70 test-uv-debug: all 71 - NODE_USE_UV=1 python tools/test.py --mode=debug $(UVTEST) 72 + NODE_USE_UV=1 $(PYTHON) tools/test.py --mode=debug $(UVTEST) 73 74 53 75 build/default/node: all 76 @@ -338,10 +339,10 @@ 77 ./node benchmark/idle_clients.js & 54 78 79 jslint: 80 - PYTHONPATH=tools/closure_linter/ python tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ 81 + PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ 82 83 cpplint: 84 - @python tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c) 85 + @$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c) 86 87 lint: jslint cpplint 88
Note: See TracChangeset
for help on using the changeset viewer.

