Skip to content

Commit

Permalink
Update from Hackage at 2019-09-30T13:35:58Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Sep 30, 2019
1 parent 8aaa681 commit 4897232
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 92 deletions.
97 changes: 49 additions & 48 deletions selda-postgresql/0.1.8.0/selda-postgresql.cabal
@@ -1,48 +1,49 @@
name: selda-postgresql
version: 0.1.8.0
synopsis: PostgreSQL backend for the Selda database EDSL.
description: PostgreSQL backend for the Selda database EDSL.
Requires the PostgreSQL @libpq@ development libraries to be
installed.
homepage: https://github.com/valderman/selda
license: MIT
license-file: LICENSE
author: Anton Ekblad
maintainer: anton@ekblad.cc
category: Database
build-type: Simple
cabal-version: >=1.10

flag haste
default: False
description: Package is being installed for Haste.

library
exposed-modules:
Database.Selda.PostgreSQL
other-modules:
Database.Selda.PostgreSQL.Encoding
other-extensions:
GADTs
RecordWildCards
OverloadedStrings
CPP
build-depends:
base >=4.9 && <5
, bytestring >=0.9 && <0.11
, exceptions >=0.8 && <0.11
, selda >=0.4 && <0.5
, selda-json >=0.1 && <0.2
, text >=1.0 && <1.3
if !flag(haste)
build-depends:
postgresql-binary >=0.12 && <0.13
, postgresql-libpq >=0.9 && <0.10
, time >=1.5 && <1.10
, uuid-types >=1.0 && <1.1
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall
name: selda-postgresql
version: 0.1.8.0
x-revision: 1
synopsis: PostgreSQL backend for the Selda database EDSL.
description: PostgreSQL backend for the Selda database EDSL.
Requires the PostgreSQL @libpq@ development libraries to be
installed.
homepage: https://github.com/valderman/selda
license: MIT
license-file: LICENSE
author: Anton Ekblad
maintainer: anton@ekblad.cc
category: Database
build-type: Simple
cabal-version: >=1.10

flag haste
default: False
description: Package is being installed for Haste.

library
exposed-modules:
Database.Selda.PostgreSQL
other-modules:
Database.Selda.PostgreSQL.Encoding
other-extensions:
GADTs
RecordWildCards
OverloadedStrings
CPP
build-depends:
base >=4.9 && <5
, bytestring >=0.9 && <0.11
, exceptions >=0.8 && <0.11
, selda >=0.4 && <0.6
, selda-json >=0.1 && <0.2
, text >=1.0 && <1.3
if !flag(haste)
build-depends:
postgresql-binary >=0.12 && <0.13
, postgresql-libpq >=0.9 && <0.10
, time >=1.5 && <1.10
, uuid-types >=1.0 && <1.1
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall
89 changes: 45 additions & 44 deletions selda-sqlite/0.1.7.0/selda-sqlite.cabal
@@ -1,44 +1,45 @@
name: selda-sqlite
version: 0.1.7.0
synopsis: SQLite backend for the Selda database EDSL.
description: Allows the Selda database EDSL to be used with SQLite
databases.
homepage: https://github.com/valderman/selda
license: MIT
license-file: LICENSE
author: Anton Ekblad
maintainer: anton@ekblad.cc
category: Database
build-type: Simple
cabal-version: >=1.10

flag haste
default: False
description: Package is being installed for Haste.

library
exposed-modules:
Database.Selda.SQLite
other-modules:
Database.Selda.SQLite.Parser
other-extensions:
GADTs
CPP
build-depends:
base >=4.9 && <5
, selda >=0.4 && <0.5
, text >=1.0 && <1.3
if !flag(haste)
build-depends:
bytestring >=0.10 && <0.11
, direct-sqlite >=2.2 && <2.4
, directory >=1.2.2 && <1.4
, exceptions >=0.8 && <0.11
, time >=1.5 && <1.10
, uuid-types >=1.0 && <1.1
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall
name: selda-sqlite
version: 0.1.7.0
x-revision: 1
synopsis: SQLite backend for the Selda database EDSL.
description: Allows the Selda database EDSL to be used with SQLite
databases.
homepage: https://github.com/valderman/selda
license: MIT
license-file: LICENSE
author: Anton Ekblad
maintainer: anton@ekblad.cc
category: Database
build-type: Simple
cabal-version: >=1.10

flag haste
default: False
description: Package is being installed for Haste.

library
exposed-modules:
Database.Selda.SQLite
other-modules:
Database.Selda.SQLite.Parser
other-extensions:
GADTs
CPP
build-depends:
base >=4.9 && <5
, selda >=0.4 && <0.6
, text >=1.0 && <1.3
if !flag(haste)
build-depends:
bytestring >=0.10 && <0.11
, direct-sqlite >=2.2 && <2.4
, directory >=1.2.2 && <1.4
, exceptions >=0.8 && <0.11
, time >=1.5 && <1.10
, uuid-types >=1.0 && <1.1
hs-source-dirs:
src
default-language:
Haskell2010
ghc-options:
-Wall
30 changes: 30 additions & 0 deletions smith/0.1.0.0/smith.cabal
@@ -0,0 +1,30 @@
cabal-version: 2.2
name: smith
version: 0.1.0.0
synopsis: Parse arrays of tokens
description:
This library is similar in spirit to `bytesmith`. While `bytesmith`
parses byte sequences, `smith` parses token sequences. The most
common way to use them together is to lex with `bytesmith` and
then parse the token sequence with `smith`.
homepage: https://github.com/andrewthad/smith
bug-reports: https://github.com/andrewthad/smith/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2019 Andrew Martin
category: Data
extra-source-files: CHANGELOG.md

library
exposed-modules:
Data.Parser
Data.Parser.Unsafe
build-depends:
, base >=4.12.0.0 && <5
, bytesmith >=0.3 && <0.4
, primitive >=0.6.4 && <0.8
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2
1 change: 1 addition & 0 deletions smith/0.1.0.0/smith.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"fcf19900bce390c09f216e3ada937deb","Skein512_512":"33a85fad08a08f969a01083c27f95ca634626262cee8b6d6addad10df514ffe6ffa0b4100ae749326cc71d924d5a49dc46212eb8f6425ad8b5f9f822d14e6b9e","SHA1":"6add8c3b16026f37ebc1d182ff23bda766bf7a29","SHA512":"4b7d59d012bae4c44280edbe8270bf0042b8a2366ef542ed05d0f66fb311183f9c46cf716087668cd1051b31e661ac9ed7e669d3eaa57327639098dff3d221e3","SHA256":"b46e1327ae730d3fd383e12b8fe85962c30bcbd2b2266c8125287644ddd9008e"},"package-locations":["https://hackage.haskell.org/package/smith-0.1.0.0/smith-0.1.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/smith-0.1.0.0.tar.gz"],"package-size":4134}

0 comments on commit 4897232

Please sign in to comment.