Commits
Andrew Stromnov authored 3bbf306d62f
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 python 1.0 |
5 5 | PortGroup github 1.0 |
6 6 | |
7 - | github.setup numba numba 0.43.0 |
7 + | github.setup numba numba 0.43.1 |
8 8 | name py-numba |
9 9 | revision 0 |
10 10 | categories-append devel |
11 11 | platforms darwin |
12 12 | license BSD |
13 13 | |
14 14 | python.versions 27 34 35 36 37 |
15 15 | |
16 16 | maintainers {stromnov @stromnov} openmaintainer |
17 17 | |
18 18 | description Numba is a NumPy aware dynamic compiler for Python. |
19 19 | |
20 20 | long_description Numba is an Open Source NumPy-aware optimizing compiler \ |
21 21 | for Python. It uses the remarkable LLVM compiler \ |
22 22 | infrastructure to compile Python syntax to machine code. |
23 23 | |
24 24 | homepage https://numba.pydata.com/ |
25 25 | |
26 - | checksums rmd160 dba2d23b3a9fcf2d9e996da26c99e4e28414432b \ |
27 - | sha256 51cdc521d0cfd1baf026166cad13e3482385c5f92b60ee9239a15b0cfcfa6b81 \ |
28 - | size 2024959 |
26 + | checksums rmd160 e5c93b14c7898c87afd25cd1fb285d72cbe3ef2f \ |
27 + | sha256 02dcae2a60c4db0f89fe50e69a5a91782bf3ddb96ad7fb9464641c7a38ea45fc \ |
28 + | size 2029253 |
29 29 | |
30 30 | variant tbb description "Add support for TBB" { |
31 31 | depends_lib-append port:tbb |
32 32 | build.env-append TBBROOT=${prefix} |
33 33 | } |
34 34 | |
35 35 | if {${name} ne ${subport}} { |
36 36 | depends_build-append \ |
37 37 | port:py${python.version}-setuptools |
38 38 | |