Commits
Christoph Iserlohn authored aff58a3b5cb
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup compiler_blacklist_versions 1.0 |
5 5 | |
6 6 | name nodejs6 |
7 - | version 6.12.0 |
7 + | version 6.12.2 |
8 8 | |
9 9 | categories devel net |
10 10 | platforms darwin |
11 11 | license {MIT BSD} |
12 12 | maintainers {ciserlohn @ci42} |
13 13 | |
14 14 | description Evented I/O for V8 JavaScript |
15 15 | |
16 16 | long_description Node's goal is to provide an easy way to build scalable network programs in JavaScript. \ |
17 17 | Node is similar in design to and influenced by systems like Ruby's Event \ |
18 18 | Machine or Python's Twisted. Node takes the event model a bit further-it \ |
19 19 | presents the event loop as a language construct instead of as a library. |
20 20 | |
21 21 | conflicts nodejs4 nodejs5 nodejs7 nodejs8 nodejs9 |
22 22 | |
23 23 | homepage https://nodejs.org/ |
24 24 | master_sites ${homepage}dist/v${version} |
25 25 | use_xz yes |
26 26 | |
27 - | checksums rmd160 7f60ca404e4638a75f78b1fa41742e6c85bf2fef \ |
28 - | sha256 eac45cffc96e8c65b3652929329f0a85a29c73009f614581594928f13d40ff5b |
27 + | checksums rmd160 4aeaf4b5201fb2ab5b37045d247181b78ee1dcb6 \ |
28 + | sha256 33677c1fcf6a2f35d2718834fd0afdb36166b0cc68349820e05d8f9316b1dafc |
29 29 | |
30 30 | distname node-v${version} |
31 31 | |
32 32 | depends_build port:pkgconfig |
33 33 | |
34 34 | depends_lib port:icu \ |
35 35 | port:python27 \ |
36 36 | path:lib/libssl.dylib:openssl |
37 37 | |
38 38 | proc rec_glob {basedir pattern} { |