[DHG_packages] 53/204: esqueleto: Upgrading from 2.4.3 to 2.5.2

Clint Adams clint at moszumanska.debian.org
Sun Jun 18 16:09:03 UTC 2017


This is an automated email from the git hooks/post-receive script.

clint pushed a commit to branch master
in repository DHG_packages.

commit 0afb2d4ba1378edcb0633371678b62525a71d2b6
Author: Clint Adams <clint at debian.org>
Date:   Sat Jun 17 14:29:32 2017 -0400

    esqueleto: Upgrading from 2.4.3 to 2.5.2
---
 p/haskell-esqueleto/debian/changelog               |  6 +++
 p/haskell-esqueleto/debian/control                 | 12 ++---
 .../debian/patches/newer-persistent                | 57 ----------------------
 p/haskell-esqueleto/debian/patches/series          |  1 -
 4 files changed, 12 insertions(+), 64 deletions(-)

diff --git a/p/haskell-esqueleto/debian/changelog b/p/haskell-esqueleto/debian/changelog
index 10ffd20..6c4e2f4 100644
--- a/p/haskell-esqueleto/debian/changelog
+++ b/p/haskell-esqueleto/debian/changelog
@@ -1,3 +1,9 @@
+haskell-esqueleto (2.5.2-1) unstable; urgency=medium
+
+  * New upstream release
+
+ -- Clint Adams <clint at debian.org>  Sat, 17 Jun 2017 14:29:32 -0400
+
 haskell-esqueleto (2.4.3-5) unstable; urgency=medium
 
   * Upload to unstable as part of GHC 8 transition.
diff --git a/p/haskell-esqueleto/debian/control b/p/haskell-esqueleto/debian/control
index 7ab945e..2a9820d 100644
--- a/p/haskell-esqueleto/debian/control
+++ b/p/haskell-esqueleto/debian/control
@@ -14,8 +14,8 @@ Build-Depends: debhelper (>= 9),
  libghc-conduit-prof,
  libghc-monad-logger-dev,
  libghc-monad-logger-prof,
- libghc-persistent-dev (>= 2.1.1.7),
- libghc-persistent-dev (<< 2.7),
+ libghc-persistent-dev (>= 2.5),
+ libghc-persistent-dev (<< 2.8),
  libghc-persistent-prof,
  libghc-resourcet-dev (>= 1.1),
  libghc-resourcet-prof,
@@ -32,7 +32,7 @@ Build-Depends: debhelper (>= 9),
  libghc-monad-control-dev,
  libghc-monad-logger-dev (>= 0.3),
  libghc-persistent-dev,
- libghc-persistent-sqlite-dev (>= 2.1),
+ libghc-persistent-sqlite-dev (>= 2.1.3),
  libghc-persistent-template-dev (>= 2.1),
  libghc-resourcet-dev,
  libghc-text-dev,
@@ -46,9 +46,9 @@ Build-Depends-Indep: ghc-doc,
  libghc-text-doc,
  libghc-unordered-containers-doc,
 Standards-Version: 3.9.8
-Homepage: https://github.com/prowdsponsor/esqueleto
-Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/
-Vcs-Git: https://anonscm.debian.org/git/pkg-haskell/DHG_packages.git
+Homepage: https://github.com/bitemyapp/esqueleto
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git/tree/p/haskell-esqueleto
+Vcs-Git: https://anonscm.debian.org/cgit/pkg-haskell/DHG_packages.git
 X-Description: type-safe EDSL for SQL on persistent backends
  esqueleto is a bare bones, type-safe EDSL for SQL queries
  that works with unmodified persistent SQL backends.  Its
diff --git a/p/haskell-esqueleto/debian/patches/newer-persistent b/p/haskell-esqueleto/debian/patches/newer-persistent
deleted file mode 100644
index 3492f07..0000000
--- a/p/haskell-esqueleto/debian/patches/newer-persistent
+++ /dev/null
@@ -1,57 +0,0 @@
---- a/esqueleto.cabal
-+++ b/esqueleto.cabal
-@@ -63,10 +63,10 @@
-   other-modules:
-     Database.Esqueleto.Internal.PersistentImport
-   build-depends:
--      base                 >= 4.5     && < 4.9
-+      base                 >= 4.5     && < 4.10
-     , bytestring
-     , text                 >= 0.11    && < 1.3
--    , persistent           >= 2.1.1.7 && < 2.3
-+    , persistent           >= 2.1.1.7 && < 2.7
-     , transformers         >= 0.2
-     , unordered-containers >= 0.2
-     , tagged               >= 0.2
---- a/src/Database/Esqueleto.hs
-+++ b/src/Database/Esqueleto.hs
-@@ -430,8 +430,8 @@
- 
- -- | Synonym for 'Database.Persist.Store.delete' that does not
- -- clash with @esqueleto@'s 'delete'.
--deleteKey :: ( PersistStore (PersistEntityBackend val)
-+deleteKey :: ( PersistStoreWrite b
-              , MonadIO m
--             , PersistEntity val )
--          => Key val -> ReaderT (PersistEntityBackend val) m ()
-+             , PersistRecordBackend val b)
-+          => Key val -> ReaderT b m ()
- deleteKey = Database.Persist.delete
---- a/src/Database/Esqueleto/Internal/PersistentImport.hs
-+++ b/src/Database/Esqueleto/Internal/PersistentImport.hs
-@@ -5,7 +5,7 @@
-   ) where
- 
- import Database.Persist.Sql hiding
--  ( BackendSpecificFilter, Filter(..), PersistQuery(..), SelectOpt(..)
-+  ( BackendSpecificFilter, Filter(..), PersistQueryRead(..), SelectOpt(..)
-   , Update(..), delete, deleteWhereCount, updateWhereCount, selectList
-   , selectKeysList, deleteCascadeWhere, (=.), (+=.), (-=.), (*=.), (/=.)
-   , (==.), (!=.), (<.), (>.), (<=.), (>=.), (<-.), (/<-.), (||.)
---- a/test/Test.hs
-+++ b/test/Test.hs
-@@ -1395,11 +1395,10 @@
- ----------------------------------------------------------------------
- 
- 
--insert' :: ( Functor m
--           , PersistStore (PersistEntityBackend val)
-+insert' :: ( PersistStoreWrite b
-            , MonadIO m
--           , PersistEntity val )
--        => val -> ReaderT (PersistEntityBackend val) m (Entity val)
-+           , PersistRecordBackend val b)
-+        => val -> ReaderT b m (Entity val)
- insert' v = flip Entity v <$> insert v
- 
- 
diff --git a/p/haskell-esqueleto/debian/patches/series b/p/haskell-esqueleto/debian/patches/series
deleted file mode 100644
index 2883011..0000000
--- a/p/haskell-esqueleto/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-newer-persistent

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list