1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup pyFAI pyFAI 0.12.0 v |
---|
9 | name py-pyFAI |
---|
10 | platforms darwin |
---|
11 | maintainers ill.fr:coquelleni \ |
---|
12 | openmaintainer |
---|
13 | license GPL-3+ |
---|
14 | |
---|
15 | description Azimuthal Integration library |
---|
16 | long_description pyFAI is an azimuthal integration library that tries to be fast (as fast as C\ |
---|
17 | and even more using OpenCL and GPU).\ |
---|
18 | It is based on histogramming of the 2theta/Q positions of each (center of)\ |
---|
19 | pixel weighted by the intensity of each pixel, but parallel version use a\ |
---|
20 | SparseMatrix-DenseVector multiplication. |
---|
21 | |
---|
22 | checksums rmd160 49580e8a53d3afb086a422b85058a2e64e06c249 \ |
---|
23 | sha256 dcb0f4a88022d9487ca0dd9a2f332b472e41928e0054355ac1ff935d03680784 |
---|
24 | |
---|
25 | python.versions 27 34 35 |
---|
26 | universal_variant no |
---|
27 | |
---|
28 | if {${name} ne ${subport}} { |
---|
29 | depends_build-append port:py${python.version}-cython |
---|
30 | |
---|
31 | depends_lib-append port:py${python.version}-numpy \ |
---|
32 | port:py${python.version}-scipy \ |
---|
33 | port:py${python.version}-matplotlib \ |
---|
34 | port:py${python.version}-h5py \ |
---|
35 | port:py${python.version}-pyopencl |
---|
36 | } |
---|