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 | |
---|
7 | name py-pyFAI |
---|
8 | version 0.11.0 |
---|
9 | master_sites http://pypi.python.org/packages/source/p/pyFAI/ |
---|
10 | homepage https://github.com/pyFAI/pyFAI |
---|
11 | license GPL-3 |
---|
12 | platforms darwin |
---|
13 | universal_variant no |
---|
14 | description Azimuthal Integration library |
---|
15 | long_description pyFAI is an azimuthal integration library that tries to be fast (as fast as C\ |
---|
16 | and even more using OpenCL and GPU).\ |
---|
17 | It is based on histogramming of the 2theta/Q positions of each (center of)\ |
---|
18 | pixel weighted by the intensity of each pixel, but parallel version use a\ |
---|
19 | SparseMatrix-DenseVector multiplication. |
---|
20 | maintainers ill.fr:coquelleni openmaintainer |
---|
21 | checksums rmd160 2b50e0af8a6d808d1b725ba510ff8d5a07f0329f\ |
---|
22 | sha256 0b58a8c2abcf14d4bf7d237fb14b54ef231c77b799a985d626eb05f3dc4c4a8c |
---|
23 | distname pyFAI-${version} |
---|
24 | python.versions 27 34 35 |
---|
25 | compiler.blacklist *clang* |
---|
26 | |
---|
27 | if {${name} ne ${subport}} { |
---|
28 | depends_build-append \ |
---|
29 | port:py${python.version}-cython |
---|
30 | |
---|
31 | depends_lib-append \ |
---|
32 | port:py${python.version}-numpy \ |
---|
33 | port:py${python.version}-scipy \ |
---|
34 | port:py${python.version}-matplotlib \ |
---|
35 | port:py${python.version}-h5py \ |
---|
36 | port:py${python.version}-pyopencl |
---|
37 | } |
---|