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
|
-- github.cabal auto-generated by cabal init. For additional options,
-- see
-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
-- The name of the package.
Name: github
-- The package version. See the Haskell package versioning policy
-- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
-- standards guiding when and how versions should be incremented.
Version: 0.4.0
-- A short (one-line) description of the package.
Synopsis: Access to the Github API, v3.
-- A longer description of the package.
Description: The Github API provides programmatic access to the full
Github Web site, from Issues to Gists to repos down to the underlying git data
like references and trees. This library wraps all of that, exposing a basic but
Haskell-friendly set of functions and data structures.
.
For more of an overview please see the README: <https://github.com/mike-burns/github/blob/master/README.md>
-- The license under which the package is released.
License: BSD3
-- The file containing the license text.
License-file: LICENSE
-- The package author(s).
Author: Mike Burns
-- An email address to which users can send suggestions, bug reports,
-- and patches.
Maintainer: mike@mike-burns.com
Homepage: https://github.com/mike-burns/github
-- A copyright notice.
Copyright: Copyright 2012 Mike Burns
Category: Network APIs
Build-type: Simple
-- Extra files to be distributed with the package, such as examples or
-- a README.
Extra-source-files: README.md
,samples/Gists/Comments/ShowComment.hs
,samples/Gists/Comments/ShowComments.hs
,samples/Gists/ListGists.hs
,samples/Gists/ShowGist.hs
,samples/GitData/Commits/GitShow.hs
,samples/GitData/References/GitLsRemote.hs
,samples/GitData/References/GitLsRemoteTags.hs
,samples/GitData/References/GitLsRemoteWithRef.hs
,samples/GitData/Trees/GitLsTree.hs
,samples/GitData/Trees/GitLsTreeRecursively.hs
,samples/Issues/Comments/ShowComment.hs
,samples/Issues/Comments/ShowComments.hs
,samples/Issues/Events/ShowEvent.hs
,samples/Issues/Events/ShowIssueEvents.hs
,samples/Issues/Events/ShowRepoEvents.hs
,samples/Issues/Labels/ShowIssueLabels.hs
,samples/Issues/Labels/ShowLabel.hs
,samples/Issues/Labels/ShowMilestoneLabels.hs
,samples/Issues/Labels/ShowRepoLabels.hs
,samples/Issues/Milestones/ShowMilestone.hs
,samples/Issues/Milestones/ShowMilestones.hs
,samples/Issues/ShowIssue.hs
,samples/Issues/ShowRepoIssues.hs
,samples/Organizations/Members/ShowMembers.hs
,samples/Organizations/ShowPublicOrganization.hs
,samples/Organizations/ShowPublicOrganizations.hs
,samples/Pulls/Diff.hs
,samples/Pulls/ListPulls.hs
,samples/Pulls/ReviewComments/ListComments.hs
,samples/Pulls/ReviewComments/ShowComment.hs
,samples/Pulls/ShowCommits.hs
,samples/Pulls/ShowPull.hs
,samples/Repos/Collaborators/IsCollaborator.hs
,samples/Repos/Collaborators/ListCollaborators.hs
,samples/Repos/Commits/CommitComment.hs
,samples/Repos/Commits/CommitComments.hs
,samples/Repos/Commits/GitDiff.hs
,samples/Repos/Commits/GitLog.hs
,samples/Repos/Commits/GitShow.hs
,samples/Repos/Commits/RepoComments.hs
,samples/Repos/Forks/ListForks.hs
,samples/Repos/ListBranches.hs
,samples/Repos/ListContributors.hs
,samples/Repos/ListContributorsWithAnonymous.hs
,samples/Repos/ListLanguages.hs
,samples/Repos/ListOrgRepos.hs
,samples/Repos/ListTags.hs
,samples/Repos/ListUserRepos.hs
,samples/Repos/ShowRepo.hs
,samples/Repos/Watching/ListWatched.hs
,samples/Repos/Watching/ListWatchers.hs
,samples/Users/Followers/ListFollowers.hs
,samples/Users/Followers/ListFollowing.hs
,samples/Users/ShowUser.hs
,LICENSE
-- Constraint on the version of Cabal needed to build this package.
Cabal-version: >=1.6
source-repository head
type: git
location: git://github.com/mike-burns/github.git
Library
-- Modules exported by the library.
Exposed-modules: Github.Data,
Github.Data.Definitions,
Github.Gists,
Github.Gists.Comments,
Github.GitData.Commits,
Github.GitData.References,
Github.GitData.Trees,
Github.Issues,
Github.Issues.Comments,
Github.Issues.Events,
Github.Issues.Labels,
Github.Issues.Milestones,
Github.Organizations,
Github.Organizations.Members,
Github.PullRequests,
Github.Repos,
Github.Repos.Collaborators,
Github.Repos.Commits,
Github.Repos.Forks,
Github.Repos.Watching,
Github.Users,
Github.Users.Followers
-- Packages needed in order to build this package.
Build-depends: base >= 4.0 && < 5.0,
time,
aeson == 0.6.*,
attoparsec == 0.10.*,
bytestring,
containers,
text,
old-locale,
HTTP,
network,
http-conduit == 1.4.1.*,
conduit,
uri,
failure,
http-types,
data-default,
vector,
unordered-containers >= 0.1 && < 0.3
-- Modules not exported by this package.
Other-modules: Github.Private
-- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
-- Build-tools:
|