[Git][haskell-team/DHG_packages][master] esqueleto: Upgrading from 3.3.3.2 to 3.5.5.0

Ilias Tsitsimpis (@iliastsi) gitlab at salsa.debian.org
Wed Aug 3 14:33:17 BST 2022



Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
ec520984 by Ilias Tsitsimpis at 2022-08-03T16:30:04+03:00
esqueleto: Upgrading from 3.3.3.2 to 3.5.5.0

- - - - -


3 changed files:

- p/haskell-esqueleto/debian/changelog
- p/haskell-esqueleto/debian/control
- p/haskell-esqueleto/debian/patches/disable-network-tests


Changes:

=====================================
p/haskell-esqueleto/debian/changelog
=====================================
@@ -1,8 +1,9 @@
-haskell-esqueleto (3.3.3.2-3) UNRELEASED; urgency=medium
+haskell-esqueleto (3.5.5.0-1) unstable; urgency=medium
 
   * Declare compliance with Debian policy 4.6.1
+  * New upstream release
 
- -- Ilias Tsitsimpis <iliastsi at debian.org>  Tue, 28 Jun 2022 15:32:19 +0300
+ -- Ilias Tsitsimpis <iliastsi at debian.org>  Wed, 03 Aug 2022 16:02:32 +0300
 
 haskell-esqueleto (3.3.3.2-2) unstable; urgency=medium
 


=====================================
p/haskell-esqueleto/debian/control
=====================================
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 10),
  libghc-aeson-dev (>= 1.0),
  libghc-aeson-prof,
  libghc-attoparsec-dev (>= 0.13),
- libghc-attoparsec-dev (<< 0.14),
+ libghc-attoparsec-dev (<< 0.15),
  libghc-attoparsec-prof,
  libghc-blaze-html-dev,
  libghc-blaze-html-prof,
@@ -20,8 +20,8 @@ Build-Depends: debhelper (>= 10),
  libghc-conduit-prof,
  libghc-monad-logger-dev,
  libghc-monad-logger-prof,
- libghc-persistent-dev (>= 2.10.0),
- libghc-persistent-dev (<< 2.11),
+ libghc-persistent-dev (>= 2.13),
+ libghc-persistent-dev (<< 3),
  libghc-persistent-prof,
  libghc-resourcet-dev (>= 1.2),
  libghc-resourcet-prof,
@@ -31,16 +31,27 @@ Build-Depends: debhelper (>= 10),
  libghc-unliftio-prof,
  libghc-unordered-containers-dev (>= 0.2),
  libghc-unordered-containers-prof,
+ libghc-quickcheck2-dev,
+ libghc-quickcheck2-prof,
+ libghc-aeson-dev,
+ libghc-attoparsec-dev,
+ libghc-conduit-dev,
  libghc-exceptions-dev,
  libghc-exceptions-prof,
  libghc-hspec-dev,
  libghc-hspec-prof,
+ libghc-hspec-core-dev,
+ libghc-hspec-core-prof,
+ libghc-persistent-dev,
+ libghc-persistent-postgresql-dev,
+ libghc-persistent-postgresql-prof,
  libghc-persistent-sqlite-dev,
  libghc-persistent-sqlite-prof,
- libghc-persistent-template-dev,
- libghc-persistent-template-prof,
- libghc-vector-dev,
- libghc-vector-prof,
+ libghc-postgresql-simple-dev,
+ libghc-postgresql-simple-prof,
+ libghc-resourcet-dev,
+ libghc-tagged-dev,
+ libghc-unordered-containers-dev,
 Build-Depends-Indep: ghc-doc,
  libghc-aeson-doc,
  libghc-attoparsec-doc,


=====================================
p/haskell-esqueleto/debian/patches/disable-network-tests
=====================================
@@ -1,82 +1,49 @@
+Index: b/test/Spec.hs
+===================================================================
+--- a/test/Spec.hs
++++ b/test/Spec.hs
+@@ -4,7 +4,7 @@ import Test.Hspec
+ import Test.Hspec.Core.Spec
+ 
+ import qualified SQLite.Test as SQLite
+-import qualified MySQL.Test as MySQL
++-- import qualified MySQL.Test as MySQL
+ import qualified PostgreSQL.Test as Postgres
+ 
+ main :: IO ()
+@@ -15,8 +15,8 @@ spec = do
+     parallel $ describe "Esqueleto" $ do
+         describe "SQLite" $ do
+             sequential $ SQLite.spec
+-        describe "MySQL" $ do
+-            sequential $ MySQL.spec
+-        describe "Postgresql" $ do
+-            sequential $ Postgres.spec
++        -- describe "MySQL" $ do
++        --     sequential $ MySQL.spec
++        -- describe "Postgresql" $ do
++        --     sequential $ Postgres.spec
+ 
+Index: b/esqueleto.cabal
+===================================================================
 --- a/esqueleto.cabal
 +++ b/esqueleto.cabal
-@@ -67,79 +67,6 @@
-     ghc-options: -Wall
-   default-language: Haskell2010
- 
--test-suite mysql
--  type: exitcode-stdio-1.0
--  main-is: MySQL/Test.hs
--  other-modules:
--      Common.Test
--      Paths_esqueleto
--  hs-source-dirs:
--      test
--  ghc-options: -Wall
--  build-depends:
--      base >=4.8 && <5.0
--    , attoparsec
--    , blaze-html
--    , bytestring
--    , conduit >=1.3
--    , containers
--    , esqueleto
--    , exceptions
--    , hspec
--    , monad-logger
--    , mtl
--    , mysql
--    , mysql-simple
--    , persistent >=2.8.0 && <2.11
--    , persistent-mysql
--    , persistent-template
--    , resourcet >=1.2
--    , tagged >=0.2
--    , text >=0.11 && <1.3
--    , time 
--    , transformers >=0.2
--    , unliftio
--    , unordered-containers >=0.2
--  default-language: Haskell2010
--
--test-suite postgresql
--  type: exitcode-stdio-1.0
--  main-is: PostgreSQL/Test.hs
--  other-modules:
--      Common.Test
--      PostgreSQL.MigrateJSON
--      Paths_esqueleto
--  hs-source-dirs:
--      test
--  ghc-options: -Wall
--  build-depends:
--      base >=4.8 && <5.0
--    , aeson
--    , attoparsec
--    , blaze-html
--    , bytestring
--    , conduit >=1.3
--    , containers
--    , esqueleto
--    , exceptions
--    , hspec
--    , monad-logger
--    , mtl
--    , persistent >=2.10.0 && <2.11
--    , persistent-postgresql >= 2.10.0 && <2.11
--    , persistent-template
--    , postgresql-libpq
--    , postgresql-simple
--    , resourcet >=1.2
--    , tagged >=0.2
--    , text >=0.11 && <1.3
--    , time 
--    , transformers >=0.2
--    , unliftio
--    , unordered-containers >=0.2
--    , vector
--  default-language: Haskell2010
--
- test-suite sqlite
-   type: exitcode-stdio-1.0
-   main-is: SQLite/Test.hs
+@@ -91,7 +91,6 @@ test-suite specs
+         PostgreSQL.MigrateJSON
+         SQLite.Test
+         PostgreSQL.Test
+-        MySQL.Test
+     default-extensions:
+         RankNTypes
+     hs-source-dirs:
+@@ -111,10 +110,7 @@ test-suite specs
+       , hspec-core
+       , monad-logger
+       , mtl
+-      , mysql
+-      , mysql-simple
+       , persistent
+-      , persistent-mysql
+       , persistent-postgresql
+       , persistent-sqlite
+       , postgresql-simple



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/ec5209840ed442bb68783ef1b007f2a50dd50d1d

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/ec5209840ed442bb68783ef1b007f2a50dd50d1d
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20220803/2ebb2b6d/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list