forked from mokus0/hs-hdf5
-
Notifications
You must be signed in to change notification settings - Fork 6
/
hdf5.cabal
144 lines (129 loc) · 5.62 KB
/
hdf5.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
name: hdf5
version: 1.8.13
stability: provisional
cabal-version: >= 1.10
build-type: Simple
author: James Cook <mokus@deepbondi.net>
maintainer: Picca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>
license: PublicDomain
homepage: https://github.com/picca/hs-hdf5
category: Database
synopsis: Haskell interface to the HDF5 scientific data storage library.
description: This is a low-level but typesafe Haskell interface to the HDF5 library. No pointers necessary.
extra-source-files: Changelog.md
include/bindings.h
include/mangle.h
include/util.h
source-repository head
type: git
location: git://github.com/picca/hs-hdf5.git
flag use-hdf5-serial
default: False
manual: True
description: Use Debian's hdf5-serial as a dependency instead of plain hdf5
Library
hs-source-dirs: src
default-language: Haskell2010
default-extensions: GeneralizedNewtypeDeriving
default-extensions: ForeignFunctionInterface
ghc-options: -Wall
exposed-modules: Bindings.HDF5
, Bindings.HDF5.Attribute
, Bindings.HDF5.Raw
, Bindings.HDF5.Core
, Bindings.HDF5.Dataset
, Bindings.HDF5.Dataspace
, Bindings.HDF5.Datatype
, Bindings.HDF5.Datatype.Internal
, Bindings.HDF5.Error
, Bindings.HDF5.ErrorCodes
, Bindings.HDF5.File
, Bindings.HDF5.Group
, Bindings.HDF5.Link
, Bindings.HDF5.Object
, Bindings.HDF5.PropertyList
, Bindings.HDF5.PropertyList.DAPL
, Bindings.HDF5.PropertyList.DCPL
, Bindings.HDF5.PropertyList.DXPL
, Bindings.HDF5.PropertyList.FAPL
, Bindings.HDF5.PropertyList.FCPL
, Bindings.HDF5.PropertyList.FMPL
, Bindings.HDF5.PropertyList.GAPL
, Bindings.HDF5.PropertyList.GCPL
, Bindings.HDF5.PropertyList.LAPL
, Bindings.HDF5.PropertyList.LCPL
, Bindings.HDF5.PropertyList.OCPL
, Bindings.HDF5.PropertyList.OCPYPL
, Bindings.HDF5.PropertyList.STRCPL
, Bindings.HDF5.PropertyList.TAPL
, Bindings.HDF5.PropertyList.TCPL
, Bindings.HDF5.Core.HDFResultType
, Bindings.HDF5.Core.HId
, Bindings.HDF5.Raw.H5
, Bindings.HDF5.Raw.H5A
, Bindings.HDF5.Raw.H5AC
, Bindings.HDF5.Raw.H5C
, Bindings.HDF5.Raw.H5D
, Bindings.HDF5.Raw.H5E
, Bindings.HDF5.Raw.H5F
, Bindings.HDF5.Raw.H5FD
, Bindings.HDF5.Raw.H5FD.Core
, Bindings.HDF5.Raw.H5FD.Family
, Bindings.HDF5.Raw.H5FD.Log
, Bindings.HDF5.Raw.H5FD.MPI
, Bindings.HDF5.Raw.H5FD.Multi
, Bindings.HDF5.Raw.H5FD.Sec2
, Bindings.HDF5.Raw.H5FD.StdIO
, Bindings.HDF5.Raw.H5FD.Direct
, Bindings.HDF5.Raw.H5G
, Bindings.HDF5.Raw.H5I
, Bindings.HDF5.Raw.H5L
, Bindings.HDF5.Raw.H5MM
, Bindings.HDF5.Raw.H5O
, Bindings.HDF5.Raw.H5P
, Bindings.HDF5.Raw.H5R
, Bindings.HDF5.Raw.H5S
, Bindings.HDF5.Raw.H5T
, Bindings.HDF5.Raw.H5Z
, Bindings.HDF5.Raw.Util
, Foreign.Ptr.Conventions
c-sources: cbits/H5_inline.c
, cbits/H5E_inline.c
, cbits/H5FD_inline.c
, cbits/H5FD_inline.c
, cbits/H5FDmpi_inline.c
, cbits/H5G_inline.c
, cbits/H5P_inline.c
, cbits/H5T_inline.c
include-dirs: include
build-depends: base >= 3 && < 5,
bindings-DSL >= 1.0.25 && < 1.1,
bytestring >= 0.10.0 && < 0.12,
libffi >= 0.1 && < 0.3,
lifted-base >= 0.2.3 && < 0.3,
monad-control >= 1.0.3 && < 1.1,
transformers >= 0.5.0 && < 0.7,
primitive >= 0.7.0 && < 0.9,
tagged >= 0.8.0 && < 0.9,
vector >= 0.12.0 && < 0.14
if flag(use-hdf5-serial)
pkgconfig-depends: hdf5-serial
else
pkgconfig-depends: hdf5
test-suite hdf5-test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
main-is: Spec.hs
build-depends: base
, hspec
, QuickCheck
, temporary
, hdf5
, bytestring
, exceptions
, vector
other-modules: Spec.Util
, Spec.File
, Spec.Group
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N