~ubuntu-branches/ubuntu/trusty/haskell-text/trusty

« back to all changes in this revision

Viewing changes to text.cabal

  • Committer: Package Import Robot
  • Author(s): Joachim Breitner
  • Date: 2013-05-27 15:29:56 UTC
  • mfrom: (4.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20130527152956-2mj3ud1ahuv386b1
Tags: 0.11.3.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
name:           text
2
 
version:        0.11.2.3
 
2
version:        0.11.3.1
3
3
homepage:       https://github.com/bos/text
4
4
bug-reports:    https://github.com/bos/text/issues
5
5
synopsis:       An efficient packed Unicode text type.
96
96
    Data.Text.Lazy.Internal
97
97
    Data.Text.Lazy.Read
98
98
    Data.Text.Read
 
99
    Data.Text.Unsafe
99
100
  other-modules:
100
101
    Data.Text.Encoding.Fusion
101
102
    Data.Text.Encoding.Fusion.Common
109
110
    Data.Text.Fusion.Size
110
111
    Data.Text.IO.Internal
111
112
    Data.Text.Lazy.Builder.Functions
 
113
    Data.Text.Lazy.Builder.Int.Digits
 
114
    Data.Text.Lazy.Builder.Internal
112
115
    Data.Text.Lazy.Builder.RealFloat.Functions
113
116
    Data.Text.Lazy.Encoding.Fusion
114
117
    Data.Text.Lazy.Fusion
115
118
    Data.Text.Lazy.Search
116
119
    Data.Text.Private
117
120
    Data.Text.Search
118
 
    Data.Text.Unsafe
119
121
    Data.Text.Unsafe.Base
120
122
    Data.Text.UnsafeChar
121
123
    Data.Text.UnsafeShift
131
133
    cpp-options: -DHAVE_DEEPSEQ
132
134
  else
133
135
    build-depends: extensible-exceptions
134
 
    extensions: PatternSignatures
 
136
    extensions: ScopedTypeVariables
135
137
 
136
138
  ghc-options: -Wall -funbox-strict-fields -O2
137
139
  if impl(ghc >= 6.8)
149
151
      cpp-options: -DINTEGER_GMP
150
152
      build-depends: integer-gmp >= 0.2
151
153
 
152
 
 
153
154
  if impl(ghc >= 6.9) && impl(ghc < 6.11)
154
155
    cpp-options: -DINTEGER_GMP
155
156
    build-depends: integer >= 0.1 && < 0.2
156
157
 
157
158
test-suite tests
158
159
  type:           exitcode-stdio-1.0
159
 
  hs-source-dirs: tests
 
160
  hs-source-dirs: tests .
160
161
  main-is:        Tests.hs
161
 
  -- c-sources:      cbits/cbits.c
 
162
  c-sources:      cbits/cbits.c
162
163
 
163
164
  ghc-options:
164
165
    -Wall -threaded -O0 -rtsopts
169
170
  build-depends:
170
171
    HUnit >= 1.2,
171
172
    QuickCheck >= 2.4,
 
173
    array,
172
174
    base,
173
175
    bytestring,
174
176
    deepseq,
177
179
    random,
178
180
    test-framework >= 0.4,
179
181
    test-framework-hunit >= 0.2,
180
 
    test-framework-quickcheck2 >= 0.2,
181
 
    text
 
182
    test-framework-quickcheck2 >= 0.2
 
183
 
 
184
  if impl(ghc >= 6.11)
 
185
    if flag(integer-simple)
 
186
      cpp-options: -DINTEGER_SIMPLE
 
187
      build-depends: integer-simple >= 0.1 && < 0.5
 
188
    else
 
189
      cpp-options: -DINTEGER_GMP
 
190
      build-depends: integer-gmp >= 0.2
 
191
 
 
192
  if impl(ghc >= 6.9) && impl(ghc < 6.11)
 
193
    cpp-options: -DINTEGER_GMP
 
194
    build-depends: integer >= 0.1 && < 0.2
182
195
 
183
196
source-repository head
184
197
  type:     git