Cabal revisions of aws-0.8.3
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-Name: aws-Version: 0.8.3-Synopsis: Amazon Web Services (AWS) for Haskell-Description: Bindings for Amazon Web Services (AWS), with the aim of supporting all AWS services. To see a high level overview of the library, see the README at <https://github.com/aristidb/aws/blob/master/README.org>.-Homepage: http://github.com/aristidb/aws-License: BSD3-License-file: LICENSE-Author: Aristid Breitkreuz, contributors see README-Maintainer: aristidb@gmail.com-Copyright: See contributors list in README and LICENSE file-Category: Network, Web, AWS, Cloud, Distributed Computing-Build-type: Simple--Extra-source-files: README.org- Examples/GetObject.hs- Examples/SimpleDb.hs--Cabal-version: >=1.10--Source-repository this- type: git- location: https://github.com/aristidb/aws.git- tag: 0.8.3--Source-repository head- type: git- location: https://github.com/aristidb/aws.git--Flag Examples- Description: Build the examples.- Default: False--Library- Exposed-modules:- Aws,- Aws.Aws,- Aws.Core,- Aws.Ec2.InstanceMetadata,- Aws.Iam,- Aws.Iam.Commands,- Aws.Iam.Commands.CreateAccessKey,- Aws.Iam.Commands.CreateUser,- Aws.Iam.Commands.DeleteAccessKey,- Aws.Iam.Commands.DeleteUser,- Aws.Iam.Commands.DeleteUserPolicy,- Aws.Iam.Commands.GetUser,- Aws.Iam.Commands.GetUserPolicy,- Aws.Iam.Commands.ListAccessKeys,- Aws.Iam.Commands.ListUserPolicies,- Aws.Iam.Commands.ListUsers,- Aws.Iam.Commands.PutUserPolicy,- Aws.Iam.Commands.UpdateAccessKey,- Aws.Iam.Commands.UpdateUser,- Aws.Iam.Core,- Aws.Iam.Internal,- Aws.S3,- Aws.S3.Commands,- Aws.S3.Commands.CopyObject,- Aws.S3.Commands.DeleteObject,- Aws.S3.Commands.DeleteObjects,- Aws.S3.Commands.GetBucket,- Aws.S3.Commands.GetObject,- Aws.S3.Commands.GetService,- Aws.S3.Commands.HeadObject,- Aws.S3.Commands.PutBucket,- Aws.S3.Commands.PutObject,- Aws.S3.Core,- Aws.SimpleDb,- Aws.SimpleDb.Commands,- Aws.SimpleDb.Commands.Attributes,- Aws.SimpleDb.Commands.Domain,- Aws.SimpleDb.Commands.Select,- Aws.SimpleDb.Core,- Aws.Sqs,- Aws.Sqs.Commands,- Aws.Sqs.Commands.Permission,- Aws.Sqs.Commands.Message,- Aws.Sqs.Commands.Queue,- Aws.Sqs.Commands.QueueAttributes,- Aws.Sqs.Core,- Aws.Ses,- Aws.Ses.Commands,- Aws.Ses.Commands.SendRawEmail,- Aws.Ses.Commands.ListIdentities,- Aws.Ses.Commands.VerifyEmailIdentity,- Aws.Ses.Commands.VerifyDomainIdentity,- Aws.Ses.Commands.VerifyDomainDkim,- Aws.Ses.Commands.DeleteIdentity,- Aws.Ses.Commands.GetIdentityDkimAttributes,- Aws.Ses.Commands.GetIdentityNotificationAttributes,- Aws.Ses.Commands.GetIdentityVerificationAttributes,- Aws.Ses.Commands.SetIdentityNotificationTopic,- Aws.Ses.Commands.SetIdentityDkimEnabled,- Aws.Ses.Commands.SetIdentityFeedbackForwardingEnabled,- Aws.Ses.Core-- Build-depends:- attempt >= 0.3.1.1 && < 0.5,- base == 4.*,- base64-bytestring == 1.0.*,- blaze-builder >= 0.2.1.4 && < 0.4,- bytestring >= 0.9 && < 0.11,- case-insensitive >= 0.2 && < 1.2,- cereal >= 0.3 && < 0.5,- conduit >= 1.0 && < 1.1,- containers >= 0.4,- crypto-api >= 0.9,- cryptohash >= 0.8 && < 0.12,- cryptohash-cryptoapi == 0.1.*,- directory >= 1.0 && < 1.3,- failure >= 0.2.0.1 && < 0.3,- filepath >= 1.1 && < 1.4,- http-conduit >= 1.9 && < 1.10,- http-types >= 0.7 && < 0.9,- lifted-base >= 0.1 && < 0.3,- monad-control >= 0.3,- mtl == 2.*,- old-locale == 1.*,- resourcet >= 0.3.3 && <0.5,- text >= 0.11,- time >= 1.1.4 && < 1.5,- transformers >= 0.2.2.0 && < 0.4,- utf8-string == 0.3.*,- xml-conduit >= 1.1 && <1.2-- GHC-Options: -Wall-- Default-Language: Haskell2010- Default-Extensions:- RecordWildCards,- TypeFamilies,- MultiParamTypeClasses,- FlexibleContexts,- FlexibleInstances,- FunctionalDependencies,- DeriveFunctor,- DeriveDataTypeable,- OverloadedStrings,- TupleSections,- ScopedTypeVariables,- EmptyDataDecls,- Rank2Types--Executable GetObject- Main-is: GetObject.hs- Hs-source-dirs: Examples-- if !flag(Examples)- Buildable: False- else- Buildable: True- Build-depends:- base == 4.*,- aws,- http-conduit,- conduit-- Default-Language: Haskell2010--Executable SimpleDb- Main-is: SimpleDb.hs- Hs-source-dirs: Examples-- if !flag(Examples)- Buildable: False- else- Buildable: True- Build-depends:- base == 4.*,- aws,- text >=0.11-- Default-Language: Haskell2010--Executable Sqs- Main-is: Sqs.hs- Hs-source-dirs: Examples-- if !flag(Examples)- Buildable: False- else- Buildable: True- Build-depends:- base == 4.*,- aws,- text >=0.11-- Default-Language: Haskell2010+Name: aws +Version: 0.8.3 +x-revision: 1 +Synopsis: Amazon Web Services (AWS) for Haskell +Description: Bindings for Amazon Web Services (AWS), with the aim of supporting all AWS services. To see a high level overview of the library, see the README at <https://github.com/aristidb/aws/blob/master/README.org>. +Homepage: http://github.com/aristidb/aws +License: BSD3 +License-file: LICENSE +Author: Aristid Breitkreuz, contributors see README +Maintainer: aristidb@gmail.com +Copyright: See contributors list in README and LICENSE file +Category: Network, Web, AWS, Cloud, Distributed Computing +Build-type: Simple + +Extra-source-files: README.org + Examples/GetObject.hs + Examples/SimpleDb.hs + +Cabal-version: >=1.10 + +Source-repository this + type: git + location: https://github.com/aristidb/aws.git + tag: 0.8.3 + +Source-repository head + type: git + location: https://github.com/aristidb/aws.git + +Flag Examples + Description: Build the examples. + Default: False + +Library + Exposed-modules: + Aws, + Aws.Aws, + Aws.Core, + Aws.Ec2.InstanceMetadata, + Aws.Iam, + Aws.Iam.Commands, + Aws.Iam.Commands.CreateAccessKey, + Aws.Iam.Commands.CreateUser, + Aws.Iam.Commands.DeleteAccessKey, + Aws.Iam.Commands.DeleteUser, + Aws.Iam.Commands.DeleteUserPolicy, + Aws.Iam.Commands.GetUser, + Aws.Iam.Commands.GetUserPolicy, + Aws.Iam.Commands.ListAccessKeys, + Aws.Iam.Commands.ListUserPolicies, + Aws.Iam.Commands.ListUsers, + Aws.Iam.Commands.PutUserPolicy, + Aws.Iam.Commands.UpdateAccessKey, + Aws.Iam.Commands.UpdateUser, + Aws.Iam.Core, + Aws.Iam.Internal, + Aws.S3, + Aws.S3.Commands, + Aws.S3.Commands.CopyObject, + Aws.S3.Commands.DeleteObject, + Aws.S3.Commands.DeleteObjects, + Aws.S3.Commands.GetBucket, + Aws.S3.Commands.GetObject, + Aws.S3.Commands.GetService, + Aws.S3.Commands.HeadObject, + Aws.S3.Commands.PutBucket, + Aws.S3.Commands.PutObject, + Aws.S3.Core, + Aws.SimpleDb, + Aws.SimpleDb.Commands, + Aws.SimpleDb.Commands.Attributes, + Aws.SimpleDb.Commands.Domain, + Aws.SimpleDb.Commands.Select, + Aws.SimpleDb.Core, + Aws.Sqs, + Aws.Sqs.Commands, + Aws.Sqs.Commands.Permission, + Aws.Sqs.Commands.Message, + Aws.Sqs.Commands.Queue, + Aws.Sqs.Commands.QueueAttributes, + Aws.Sqs.Core, + Aws.Ses, + Aws.Ses.Commands, + Aws.Ses.Commands.SendRawEmail, + Aws.Ses.Commands.ListIdentities, + Aws.Ses.Commands.VerifyEmailIdentity, + Aws.Ses.Commands.VerifyDomainIdentity, + Aws.Ses.Commands.VerifyDomainDkim, + Aws.Ses.Commands.DeleteIdentity, + Aws.Ses.Commands.GetIdentityDkimAttributes, + Aws.Ses.Commands.GetIdentityNotificationAttributes, + Aws.Ses.Commands.GetIdentityVerificationAttributes, + Aws.Ses.Commands.SetIdentityNotificationTopic, + Aws.Ses.Commands.SetIdentityDkimEnabled, + Aws.Ses.Commands.SetIdentityFeedbackForwardingEnabled, + Aws.Ses.Core + + Build-depends: + attempt >= 0.3.1.1 && < 0.5, + base >= 4.5 && < 4.8, + base64-bytestring == 1.0.*, + blaze-builder >= 0.2.1.4 && < 0.4, + bytestring >= 0.9 && < 0.11, + case-insensitive >= 0.2 && < 1.2, + cereal >= 0.3 && < 0.5, + conduit >= 1.0 && < 1.1, + containers >= 0.4, + crypto-api >= 0.9, + cryptohash >= 0.8 && < 0.12, + cryptohash-cryptoapi == 0.1.*, + directory >= 1.0 && < 1.3, + failure >= 0.2.0.1 && < 0.3, + filepath >= 1.1 && < 1.4, + http-conduit >= 1.9 && < 1.10, + http-types >= 0.7 && < 0.9, + lifted-base >= 0.1 && < 0.3, + monad-control >= 0.3, + mtl == 2.*, + old-locale == 1.*, + resourcet >= 0.3.3 && <0.5, + text >= 0.11, + time >= 1.1.4 && < 1.5, + transformers >= 0.2.2.0 && < 0.4, + utf8-string == 0.3.*, + xml-conduit >= 1.1 && <1.2 + + GHC-Options: -Wall + + Default-Language: Haskell2010 + Default-Extensions: + RecordWildCards, + TypeFamilies, + MultiParamTypeClasses, + FlexibleContexts, + FlexibleInstances, + FunctionalDependencies, + DeriveFunctor, + DeriveDataTypeable, + OverloadedStrings, + TupleSections, + ScopedTypeVariables, + EmptyDataDecls, + Rank2Types + +Executable GetObject + Main-is: GetObject.hs + Hs-source-dirs: Examples + + if !flag(Examples) + Buildable: False + else + Buildable: True + Build-depends: + base == 4.*, + aws, + http-conduit, + conduit + + Default-Language: Haskell2010 + +Executable SimpleDb + Main-is: SimpleDb.hs + Hs-source-dirs: Examples + + if !flag(Examples) + Buildable: False + else + Buildable: True + Build-depends: + base == 4.*, + aws, + text >=0.11 + + Default-Language: Haskell2010 + +Executable Sqs + Main-is: Sqs.hs + Hs-source-dirs: Examples + + if !flag(Examples) + Buildable: False + else + Buildable: True + Build-depends: + base == 4.*, + aws, + text >=0.11 + + Default-Language: Haskell2010