haskelldb-hdbc-postgresql 0.13 → 2.0
raw patch · 2 files changed
+18/−13 lines, 2 filesdep ~basedep ~haskelldbdep ~haskelldb-hdbcPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, haskelldb, haskelldb-hdbc
API changes (from Hackage documentation)
Files
Database/HaskellDB/HDBC/PostgreSQL.hs view
@@ -31,4 +31,5 @@ -- <http://www.postgresql.org/docs/8.1/static/libpq.html#LIBPQ-CONNECT> -- for the meaning of the options. driver :: DriverInterface-driver = defaultdriver {connect = postgresqlConnect}+driver = defaultdriver { connect = postgresqlConnect+ , requiredOptions = [] }
haskelldb-hdbc-postgresql.cabal view
@@ -1,30 +1,34 @@ Name: haskelldb-hdbc-postgresql-Version: 0.13-Cabal-version: >= 1.2+Version: 2.0+Cabal-version: >= 1.6 Build-type: Simple Copyright: The authors+Homepage: http://trac.haskell.org/haskelldb Maintainer: haskelldb-users@lists.sourceforge.net Author: Daan Leijen, Conny Andersson, Martin Andersson, Mary Bergman, Victor Blomqvist, Bjorn Bringert, Anders Hockersten, Torbjorn Martin, Jeremy Shaw License: BSD3 Synopsis: HaskellDB support for the HDBC PostgreSQL driver. -Flag split-base- Library Build-depends: mtl >= 1 && < 2, - haskelldb >= 0.12 && < 1,- haskelldb-hdbc >= 0.12 && < 1,+ haskelldb >= 2 && < 3,+ haskelldb-hdbc >= 2 && < 3, HDBC >= 2 && < 3,- HDBC-postgresql >= 2 && < 3-- if flag(split-base)- Build-depends: base >= 3 && < 5- else- Build-depends: base < 3+ HDBC-postgresql >= 2 && < 3,+ base >= 3 && < 5 Exposed-Modules: Database.HaskellDB.HDBC.PostgreSQL+ ghc-options: -fwarn-incomplete-patterns +-- Note: Extra library and include directories must be passed on commandline:+-- cabal install --extra-include-dirs="F:\Program Files\PostgreSQL\8.4\include" --extra-include-dirs="F:\Program Files\PostgreSQL\8.4\include\server" --extra-lib-dirs="F:\Program Files\PostgreSQL\8.4\bin" Executable DBDirect-hdbc-postgresql Main-is: DBDirect.hs+ Include-dirs: .+ Extra-Libraries: pq++Source-repository head+ Type: darcs+ Location: http://code.haskell.org/haskelldb