[Git][haskell-team/DHG_packages][master] serialise: Sourceful upload for GHC 9.10
Scott Talbert (@swt2c)
gitlab at salsa.debian.org
Wed Feb 11 01:18:48 GMT 2026
Scott Talbert pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
a0963f7c by Scott Talbert at 2026-02-10T20:16:11-05:00
serialise: Sourceful upload for GHC 9.10
- - - - -
5 changed files:
- p/haskell-serialise/debian/changelog
- p/haskell-serialise/debian/control
- + p/haskell-serialise/debian/patches/fix-tests.patch
- + p/haskell-serialise/debian/patches/newer-deps
- p/haskell-serialise/debian/patches/series
Changes:
=====================================
p/haskell-serialise/debian/changelog
=====================================
@@ -1,8 +1,9 @@
-haskell-serialise (0.2.6.1-2) UNRELEASED; urgency=medium
+haskell-serialise (0.2.6.1-2) unstable; urgency=medium
* Build using dh-haskell
+ * Sourceful upload for GHC 9.10
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:54 -0500
+ -- Scott Talbert <swt at techie.net> Tue, 10 Feb 2026 19:19:41 -0500
haskell-serialise (0.2.6.1-1) unstable; urgency=medium
=====================================
p/haskell-serialise/debian/control
=====================================
@@ -6,7 +6,7 @@ Section: haskell
Build-Depends: debhelper-compat (= 13),
haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
dh-sequence-haskell,
- ghc (>= 9.4),
+ ghc (>= 9.10),
ghc-prof,
libghc-cborg-dev (>= 0.2),
libghc-cborg-dev (<< 0.3),
@@ -33,7 +33,7 @@ Build-Depends: debhelper-compat (= 13),
libghc-vector-dev (<< 0.14),
libghc-vector-prof,
libghc-quickcheck2-dev (>= 2.9),
- libghc-quickcheck2-dev (<< 2.15),
+ libghc-quickcheck2-dev (<< 2.17),
libghc-quickcheck2-prof,
libghc-cborg-dev,
libghc-cborg-prof,
@@ -47,7 +47,7 @@ Build-Depends: debhelper-compat (= 13),
libghc-tasty-hunit-dev (<< 0.11),
libghc-tasty-hunit-prof,
libghc-tasty-quickcheck-dev (>= 0.8),
- libghc-tasty-quickcheck-dev (<< 0.11),
+ libghc-tasty-quickcheck-dev (<< 0.12),
libghc-tasty-quickcheck-prof,
Build-Depends-Indep: ghc-doc,
libghc-cborg-doc,
@@ -58,7 +58,7 @@ Build-Depends-Indep: ghc-doc,
libghc-these-doc,
libghc-unordered-containers-doc,
libghc-vector-doc,
-Standards-Version: 4.7.0
+Standards-Version: 4.7.3
Homepage: https://github.com/well-typed/cborg
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-serialise
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-serialise]
=====================================
p/haskell-serialise/debian/patches/fix-tests.patch
=====================================
@@ -0,0 +1,26 @@
+From d2e4be528ee0ec48a51fdec63b24e1186390e8d6 Mon Sep 17 00:00:00 2001
+From: Ben Gamari <ben at smart-cactus.org>
+Date: Fri, 28 Feb 2025 18:01:33 -0500
+Subject: [PATCH] quickcheck-instances now provides instances for primitive
+ Vectors
+
+---
+ serialise/tests/Tests/Orphanage.hs | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/serialise/tests/Tests/Orphanage.hs b/serialise/tests/Tests/Orphanage.hs
+index d852c8f0..0a984d31 100644
+--- a/tests/Tests/Orphanage.hs
++++ b/tests/Tests/Orphanage.hs
+@@ -195,9 +195,11 @@ instance Arbitrary BSS.ShortByteString where
+ arbitrary = BSS.pack <$> arbitrary
+ #endif
+
++#if !MIN_VERSION_quickcheck_instances(0,3,32)
+ instance (Vector.Primitive.Prim a, Arbitrary a
+ ) => Arbitrary (Vector.Primitive.Vector a) where
+ arbitrary = Vector.Primitive.fromList <$> arbitrary
++#endif
+
+ #if MIN_VERSION_base(4,7,0) && !MIN_VERSION_QuickCheck(2,10,0)
+ instance Arbitrary (Proxy a) where
=====================================
p/haskell-serialise/debian/patches/newer-deps
=====================================
@@ -0,0 +1,105 @@
+Index: b/serialise.cabal
+===================================================================
+--- a/serialise.cabal
++++ b/serialise.cabal
+@@ -69,12 +69,12 @@ library
+ Codec.Serialise.Internal.GeneralisedUTF8
+
+ build-depends:
+- base >= 4.11 && < 4.20,
++ base >= 4.11 && < 4.22,
+ array >= 0.4 && < 0.6,
+ bytestring >= 0.10.4 && < 0.13,
+ cborg == 0.2.*,
+ containers >= 0.5 && < 0.8,
+- ghc-prim >= 0.3.1.0 && < 0.12,
++ ghc-prim >= 0.3.1.0 && < 0.14,
+ half >= 0.2.2.3 && < 0.4,
+ hashable >= 1.2 && < 2.0,
+ primitive >= 0.5 && < 0.10,
+@@ -124,10 +124,10 @@ test-suite tests
+ Tests.GeneralisedUTF8
+
+ build-depends:
+- base >= 4.11 && < 4.20,
++ base >= 4.11 && < 4.22,
+ bytestring >= 0.10.4 && < 0.13,
+ directory >= 1.0 && < 1.4,
+- filepath >= 1.0 && < 1.5,
++ filepath >= 1.0 && < 1.6,
+ text >= 1.1 && < 2.2,
+ time >= 1.4 && < 1.14,
+ containers >= 0.5 && < 0.8,
+@@ -135,10 +135,10 @@ test-suite tests
+ primitive >= 0.5 && < 0.10,
+ cborg,
+ serialise,
+- QuickCheck >= 2.9 && < 2.15,
++ QuickCheck >= 2.9 && < 2.17,
+ tasty >= 0.11 && < 1.6,
+ tasty-hunit >= 0.9 && < 0.11,
+- tasty-quickcheck >= 0.8 && < 0.11,
++ tasty-quickcheck >= 0.8 && < 0.12,
+ quickcheck-instances >= 0.3.12 && < 0.4,
+ vector >= 0.10 && < 0.14
+
+@@ -161,7 +161,7 @@ benchmark instances
+ Instances.Time
+
+ build-depends:
+- base >= 4.11 && < 4.20,
++ base >= 4.11 && < 4.22,
+ binary >= 0.7 && < 0.11,
+ bytestring >= 0.10.4 && < 0.13,
+ vector >= 0.10 && < 0.14,
+@@ -173,7 +173,7 @@ benchmark instances
+
+ if flag(newtime15)
+ build-depends:
+- time >= 1.5 && < 1.14
++ time >= 1.5 && < 1.15
+ else
+ build-depends:
+ time >= 1.4 && < 1.5,
+@@ -208,7 +208,7 @@ benchmark micro
+ base >= 4.11 && < 4.20,
+ binary >= 0.7 && < 0.11,
+ bytestring >= 0.10.4 && < 0.13,
+- ghc-prim >= 0.3.1.0 && < 0.12,
++ ghc-prim >= 0.3.1.0 && < 0.14,
+ vector >= 0.10 && < 0.14,
+ cborg,
+ serialise,
+@@ -256,21 +256,21 @@ benchmark versus
+ binary >= 0.7 && < 0.11,
+ bytestring >= 0.10.4 && < 0.13,
+ directory >= 1.0 && < 1.4,
+- ghc-prim >= 0.3.1.0 && < 0.12,
++ ghc-prim >= 0.3.1.0 && < 0.14,
+ fail >= 4.9.0.0 && < 4.10,
+ text >= 1.1 && < 2.2,
+ vector >= 0.10 && < 0.14,
+ cborg,
+ serialise,
+
+- filepath >= 1.0 && < 1.5,
++ filepath >= 1.0 && < 1.6,
+ containers >= 0.5 && < 0.8,
+ deepseq >= 1.0 && < 1.6,
+ aeson >= 0.7 && < 2.3,
+ cereal >= 0.5.2.0 && < 0.6,
+ half >= 0.2.2.3 && < 0.4,
+- tar >= 0.4 && < 0.6,
+- zlib >= 0.5 && < 0.7,
++ tar >= 0.4 && < 0.7,
++ zlib >= 0.5 && < 0.8,
+ pretty >= 1.0 && < 1.2,
+ criterion >= 1.0 && < 1.7,
+ store >= 0.7.1 && < 0.8,
+@@ -281,5 +281,5 @@ benchmark versus
+ time >= 1.5 && < 1.14
+ else
+ build-depends:
+- time >= 1.4 && < 1.5,
++ time >= 1.4 && < 1.6,
+ old-locale
=====================================
p/haskell-serialise/debian/patches/series
=====================================
@@ -1 +1,3 @@
no-rts-N
+newer-deps
+fix-tests.patch
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/a0963f7cc66fec511553be5b98985e8f1d83d1f1
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/a0963f7cc66fec511553be5b98985e8f1d83d1f1
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/20260211/2f10e03f/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list