packages feed

hgearman (empty) → 0.1.0.0

raw patch · 4 files changed

+68/−0 lines, 4 filesdep +basedep +binarydep +bytestringsetup-changed

Dependencies added: base, binary, bytestring, monad-control, mtl, network, resource-pool, transformers, transformers-base, unordered-containers

Files

+ LICENSE view
@@ -0,0 +1,20 @@+Copyright (c) 2014 J.Person++Permission is hereby granted, free of charge, to any person obtaining+a copy of this software and associated documentation files (the+"Software"), to deal in the Software without restriction, including+without limitation the rights to use, copy, modify, merge, publish,+distribute, sublicense, and/or sell copies of the Software, and to+permit persons to whom the Software is furnished to do so, subject to+the following conditions:++The above copyright notice and this permission notice shall be included+in all copies or substantial portions of the Software.++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ Network/Gearman.hs view
@@ -0,0 +1,8 @@+module Network.Gearman ( module Network.Gearman.Client+                       , module Network.Gearman.Worker+                       , module Network.Gearman.Internal+                       ) where++import Network.Gearman.Client+import Network.Gearman.Worker+import Network.Gearman.Internal
+ Setup.hs view
@@ -0,0 +1,2 @@+import Distribution.Simple+main = defaultMain
+ hgearman.cabal view
@@ -0,0 +1,38 @@+-- Initial hgearman.cabal generated by cabal init.  For further +-- documentation, see http://haskell.org/cabal/users-guide/++name:                hgearman+version:             0.1.0.0+synopsis:            A Gearman client for Haskell.+description:         Gearman client for Haskell (not reccomended for production use).+license:             MIT+license-file:        LICENSE+author:              Jason Person+maintainer:          jrperson@gmail.com+copyright:           2015, Jason Pesron+category:            Network+build-type:          Simple+stability:           alpha+cabal-version:       >=1.10++source-repository head+    type: git+    location: https://github.com/jperson/hgearman-client.git++library+  default-language:   Haskell2010+  ghc-options:        -Wall+  build-depends:       base                 >= 4.7      && < 5.0+                      ,binary               >= 0.7.3.0  && < 0.8.0.0+                      ,bytestring           >= 0.10     && < 0.11+                      ,network              >= 2.6.2.0  && < 2.6.3.0+                      ,unordered-containers >= 0.2.5.0  && < 0.2.6.0+                      ,transformers         >= 0.4.2.0  && < 0.4.4.0+                      ,transformers-base    >= 0.4.4    && < 0.4.5+                      ,mtl                  >= 2.2.1    && < 2.3.0+                      ,monad-control        >= 1.0.0.4  && < 1.0.1.0+                      ,resource-pool        >= 0.2.3.2  && < 0.2.4.0++  exposed-modules:    Network.Gearman+  --other-modules:      Network.Gearman.Protocol+  default-language:   Haskell2010