New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81593


Ignore:
Timestamp:
08/02/11 09:58:08 (4 years ago)
Author:
ciserlohn@…
Message:

nodejs-devel: update to version 0.5.3

  • update to the latest upstream version (0.5.3)
  • adapted the 'Makefile' patch
  • remove the now superfluous 'node.cc' patch
Location:
trunk/dports/devel/nodejs-devel
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/nodejs-devel/Portfile

    r81111 r81593  
    55 
    66name                    nodejs-devel 
    7 version                 0.5.2 
     7version                 0.5.3 
    88categories              devel net 
    99platforms               darwin 
     
    2222master_sites            ${homepage}dist/v${version}/ 
    2323 
    24 checksums               sha1    c278f719340c2c6484155b8fa1ed802dacead965 \ 
    25                         rmd160  90a9ecd5f5f51ca05e32ea99026b6a847e21268a 
     24checksums               sha1    2f1a54d32c94eee8f18186c948c22c329898d540 \ 
     25                        rmd160  ace56eb02cd1b885602512573eb4ddfee2707646 
    2626 
    2727distname                node-v${version} 
     
    2929depends_build           port:python27 
    3030 
    31 patchfiles              patch-Makefile-python.diff \ 
    32                         patch-platform.diff 
     31patchfiles              patch-Makefile-python.diff 
    3332 
    3433pre-configure { 
  • trunk/dports/devel/nodejs-devel/files/patch-Makefile-python.diff

    r80395 r81593  
    1 --- Makefile.orig       2011-03-18 22:25:20.000000000 +0100 
    2 +++ Makefile    2011-04-05 09:51:09.000000000 +0200 
     1--- Makefile.orig       2011-08-02 18:08:14.000000000 +0200 
     2+++ Makefile    2011-08-02 18:08:26.000000000 +0200 
    33@@ -1,4 +1,5 @@ 
    44-WAF=python tools/waf-light 
     
    88 web_root = ryan@nodejs.org:~/web/nodejs.org/ 
    99  
    10 @@ -23,34 +24,34 @@ 
     10@@ -33,40 +34,40 @@ 
    1111        @$(WAF) uninstall 
    1212  
     
    1414-       python tools/test.py --mode=release simple message 
    1515+       $(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 
    1620  
    1721 test-valgrind: all 
     
    2226-       python tools/test.py --mode=debug,release 
    2327+       $(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 
    2432  
    2533 test-all-valgrind: all 
     
    5159+       $(PYTHON) tools/test.py internet 
    5260  
     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  
    5375 build/default/node: all 
     76@@ -338,10 +339,10 @@ 
     77        ./node benchmark/idle_clients.js & 
    5478  
     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.