Version bump + put doctests behind a flag
Getty Ritter
6 years ago
1 | 1 | name: config-ini |
2 |
version: 0.2. |
|
2 | version: 0.2.2.0 | |
3 | 3 | synopsis: A library for simple INI-based configuration files. |
4 | 4 | homepage: https://github.com/aisamanra/config-ini |
5 | 5 | bug-reports: https://github.com/aisamanra/config-ini/issues |
18 | 18 | license-file: LICENSE |
19 | 19 | author: Getty Ritter <config-ini@infinitenegativeutility.com> |
20 | 20 | maintainer: Getty Ritter <config-ini@infinitenegativeutility.com> |
21 |
copyright: ©201 |
|
21 | copyright: ©2018 Getty Ritter | |
22 | 22 | category: Configuration |
23 | 23 | build-type: Simple |
24 | 24 | cabal-version: >= 1.18 |
32 | 32 | source-repository head |
33 | 33 | type: git |
34 | 34 | location: git://github.com/aisamanra/config-ini.git |
35 | ||
36 | flag enable-doctests | |
37 | description: Build doctest modules as well (can be finicky) | |
38 | default: False | |
35 | 39 | |
36 | 40 | library |
37 | 41 | hs-source-dirs: src |
75 | 79 | , directory |
76 | 80 | |
77 | 81 | test-suite test-doctest |
78 |
if impl(ghc < 7.10) |
|
82 | if impl(ghc < 7.10) || !flag(enable-doctests) | |
79 | 83 | buildable: False |
80 | 84 | type: exitcode-stdio-1.0 |
81 | 85 | ghc-options: -Wall |