-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
84 lines (76 loc) · 1.73 KB
/
package.yaml
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
name: vcs-ignore
version: 0.0.3.0
homepage: https://github.com/vaclavsvejcar/vcs-ignore
license: BSD-3-Clause
license-file: LICENSE
github: vaclavsvejcar/vcs-ignore
author: Vaclav Svejcar
maintainer: [email protected]
copyright: Copyright (c) 2020-2022 Vaclav Svejcar
category: Development
synopsis: Library for handling files ignored by VCS systems.
description: >
vcs-ignore is small Haskell library used to find, check and process files
ignored by selected VCS.
extra-source-files:
- README.md
- CHANGELOG.md
- test-data/fake-git-repo/.gitignore
- test-data/fake-git-repo/a/*
- test-data/fake-git-repo/a/.gitignore
- test-data/fake-git-repo/a/b/*
- test-data/fake-git-repo/a/b/.gitignore
- test-data/list-files/*
- test-data/list-files/dir1/*
- test-data/list-files/dir1/dir2/*
dependencies:
- base >= 4.7 && < 5
- containers
- directory
- exceptions
- filepath
- text
ghc-options:
- -optP-Wno-nonportable-include-path
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
- -Werror=incomplete-patterns
library:
generated-other-modules: Paths_vcs_ignore
source-dirs: src
dependencies:
- Glob
- text
executables:
ignore:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- optparse-applicative
- vcs-ignore
tests:
spec:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hspec
- vcs-ignore
build-tools: hspec-discover
doctest:
main: Main.hs
source-dirs: doctest
dependencies:
- doctest