]> git.proxmox.com Git - ceph.git/blob - ceph/src/arrow/dev/tasks/conda-recipes/parquet-cpp/meta.yaml
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / dev / tasks / conda-recipes / parquet-cpp / meta.yaml
1 # ARROW-3229: this is a meta-package to prevent conflicts in the future
2
3 {% set parquet_version = "1.5.1" %}
4
5 package:
6 name: parquet-cpp
7 version: {{ parquet_version }}
8
9 build:
10 number: 0
11 skip: true # [win32]
12 skip: true # [win and py<35]
13
14 requirements:
15 host:
16 # NOTE: in the upstream feedstock use >= instead of =
17 - arrow-cpp ={{ ARROW_VERSION }}
18 run:
19 - arrow-cpp ={{ ARROW_VERSION }}
20
21 test:
22 commands:
23 # headers
24 - test -f $PREFIX/include/parquet/api/reader.h # [unix]
25 - if not exist %LIBRARY_INC%\\parquet\\api\\reader.h exit 1 # [win]
26
27 # shared
28 - test -f $PREFIX/lib/libparquet.so # [linux]
29 - test -f $PREFIX/lib/libparquet.dylib # [osx]
30 - if not exist %PREFIX%\\Library\\bin\\parquet.dll exit 1 # [win]
31
32 # absence of static libraries
33 - test ! -f $PREFIX/lib/libparquet.a # [unix]
34 - if exist %PREFIX%\\Library\\lib\\parquet_static.lib exit 1 # [win]
35
36 about:
37 home: http://github.com/apache/arrow
38 license: Apache 2.0
39 summary: 'C++ libraries for the Apache Parquet file format'
40
41 extra:
42 recipe-maintainers:
43 - wesm
44 - xhochy
45 - leifwalsh
46 - jreback
47 - cpcloud
48 - siddharthteotia
49 - kou
50 - kszucs
51 - pitrou