forked from haskell-github/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-samples.cabal
More file actions
177 lines (149 loc) · 4.16 KB
/
github-samples.cabal
File metadata and controls
177 lines (149 loc) · 4.16 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
cabal-version: 2.2
name: github-samples
version: 0.0.0
category: Examples
synopsis: Samples for github package
license: BSD-3-Clause
license-file: LICENSE
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
description: Various samples of github package
build-type: Simple
tested-with:
GHC ==7.8.4
|| ==7.10.3
|| ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.1
library
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base >=4.7 && <5
, base-compat-batteries
, github
, text
exposed-modules: Common
default-language: Haskell2010
executable github-operational
main-is: Operational.hs
hs-source-dirs: Operational
ghc-options: -Wall -threaded
build-depends:
, base >=0 && <5
, base-compat-batteries
, github
, github-samples
, HsOpenSSL
, HsOpenSSL-x509-system
, http-client
, http-client-openssl
, operational
, text
, transformers
, transformers-compat
default-language: Haskell2010
common deps
default-language: Haskell2010
ghc-options: -Wall
build-depends:
, base >=4.7 && <5
, base-compat-batteries
, base64-bytestring
, github
, github-samples
, text
, vector
executable github-add-team-membership-for
import: deps
main-is: AddTeamMembershipFor.hs
hs-source-dirs: Teams/Memberships
executable github-create-deploy-key
import: deps
main-is: CreateDeployKey.hs
hs-source-dirs: Repos/DeployKeys
executable github-delete-deploy-key
import: deps
main-is: DeleteDeployKey.hs
hs-source-dirs: Repos/DeployKeys
executable github-delete-team
import: deps
main-is: DeleteTeam.hs
hs-source-dirs: Teams
executable github-delete-team-membership-for
import: deps
main-is: DeleteTeamMembershipFor.hs
hs-source-dirs: Teams/Memberships
executable github-edit-team
import: deps
main-is: EditTeam.hs
hs-source-dirs: Teams
executable github-list-deploy-keys-for
import: deps
main-is: ListDeployKeys.hs
hs-source-dirs: Repos/DeployKeys
executable github-list-followers
import: deps
main-is: ListFollowers.hs
hs-source-dirs: Users/Followers
executable github-list-followers-example
import: deps
main-is: Example.hs
hs-source-dirs: Users/Followers
executable github-list-following
import: deps
main-is: ListFollowing.hs
hs-source-dirs: Users/Followers
executable github-list-team-current
import: deps
main-is: ListTeamsCurrent.hs
hs-source-dirs: Teams
executable github-list-team-repos
import: deps
main-is: ListRepos.hs
hs-source-dirs: Teams
executable github-repos-contents-example
import: deps
main-is: Contents.hs
hs-source-dirs: Repos
executable github-show-deploy-key
import: deps
main-is: ShowDeployKey.hs
hs-source-dirs: Repos/DeployKeys
executable github-show-user
import: deps
main-is: ShowUser.hs
hs-source-dirs: Users
executable github-show-user-2
import: deps
main-is: ShowUser2.hs
hs-source-dirs: Users
executable github-team-membership-info-for
import: deps
main-is: TeamMembershipInfoFor.hs
hs-source-dirs: Teams/Memberships
executable github-teaminfo-for
import: deps
main-is: TeamInfoFor.hs
hs-source-dirs: Teams
executable github-create-public-ssh-key
import: deps
main-is: CreatePublicSSHKey.hs
hs-source-dirs: Users/PublicSSHKeys
executable github-delete-public-ssh-key
import: deps
main-is: DeletePublicSSHKey.hs
hs-source-dirs: Users/PublicSSHKeys
executable github-list-public-ssh-keys
import: deps
main-is: ListPublicSSHKeys.hs
hs-source-dirs: Users/PublicSSHKeys
executable github-get-public-ssh-key
import: deps
main-is: ShowPublicSSHKey.hs
hs-source-dirs: Users/PublicSSHKeys
executable github-repos-commits-diff
import: deps
main-is: GitDiff.hs
hs-source-dirs: Repos/Commits