[Git][haskell-team/DHG_packages][master] 11 commits: magic-haskell: Sourceful upload for GHC 9.10
Ilias Tsitsimpis (@iliastsi)
gitlab at salsa.debian.org
Mon Jan 5 20:59:54 GMT 2026
Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
a25c88a6 by Ilias Tsitsimpis at 2026-01-05T22:13:40+02:00
magic-haskell: Sourceful upload for GHC 9.10
- - - - -
d2686064 by Ilias Tsitsimpis at 2026-01-05T22:32:09+02:00
only: Sourceful upload for GHC 9.10
- - - - -
a734f69b by Ilias Tsitsimpis at 2026-01-05T22:32:09+02:00
parallel: Sourceful upload for GHC 9.10
- - - - -
be25e2a4 by Ilias Tsitsimpis at 2026-01-05T22:32:09+02:00
patience: Sourceful upload for GHC 9.10
- - - - -
d2942040 by Ilias Tsitsimpis at 2026-01-05T22:58:46+02:00
primitive-unaligned: Sourceful upload for GHC 9.10
- - - - -
fe77287d by Ilias Tsitsimpis at 2026-01-05T22:58:47+02:00
readable: Sourceful upload for GHC 9.10
- - - - -
1d6dcdd0 by Ilias Tsitsimpis at 2026-01-05T22:58:47+02:00
setlocale: Sourceful upload for GHC 9.10
- - - - -
ffa9eb17 by Ilias Tsitsimpis at 2026-01-05T22:58:47+02:00
some: Sourceful upload for GHC 9.10
- - - - -
8d79b136 by Ilias Tsitsimpis at 2026-01-05T22:58:47+02:00
sop-core: Sourceful upload for GHC 9.10
- - - - -
c77b4acc by Ilias Tsitsimpis at 2026-01-05T22:58:47+02:00
stringsearch: Sourceful upload for GHC 9.10
- - - - -
2686b4e0 by Ilias Tsitsimpis at 2026-01-05T22:58:47+02:00
wizards: Sourceful upload for GHC 9.10
- - - - -
27 changed files:
- p/haskell-only/debian/changelog
- + p/haskell-only/debian/patches/newer-deps
- + p/haskell-only/debian/patches/series
- p/haskell-parallel/debian/changelog
- p/haskell-parallel/debian/patches/newer-deps
- p/haskell-patience/debian/changelog
- + p/haskell-patience/debian/patches/newer-deps
- + p/haskell-patience/debian/patches/series
- p/haskell-primitive-unaligned/debian/changelog
- p/haskell-primitive-unaligned/debian/control
- p/haskell-primitive-unaligned/debian/patches/haskell-primitive-unaligned-add-support-for-loongarch64.patch
- p/haskell-primitive-unaligned/debian/patches/newer-deps
- p/haskell-primitive-unaligned/debian/patches/support-more-arches
- p/haskell-readable/debian/changelog
- p/haskell-readable/debian/patches/newer-deps
- p/haskell-setlocale/debian/changelog
- p/haskell-setlocale/debian/patches/newer-deps
- p/haskell-some/debian/changelog
- + p/haskell-some/debian/patches/newer-deps
- + p/haskell-some/debian/patches/series
- p/haskell-sop-core/debian/changelog
- p/haskell-sop-core/debian/patches/newer-deps
- p/haskell-stringsearch/debian/changelog
- p/haskell-stringsearch/debian/patches/newer-deps
- p/haskell-wizards/debian/changelog
- p/haskell-wizards/debian/patches/newer-deps
- p/magic-haskell/debian/changelog
Changes:
=====================================
p/haskell-only/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-only (0.1-7) UNRELEASED; urgency=medium
+haskell-only (0.1-7) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:43 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:02 +0200
haskell-only (0.1-6) unstable; urgency=medium
=====================================
p/haskell-only/debian/patches/newer-deps
=====================================
@@ -0,0 +1,46 @@
+Index: b/Only.cabal
+===================================================================
+--- a/Only.cabal
++++ b/Only.cabal
+@@ -1,19 +1,29 @@
+ name: Only
+ version: 0.1
++x-revision: 2
+ synopsis: The 1-tuple type or single-value "collection"
+ license: BSD3
+ license-file: LICENSE
+ author: Herbert Valerio Riedel
+ maintainer: hvr at gnu.org
+-bug-reports: https://github.com/hvr/Only/issues
++bug-reports: https://github.com/haskell-hvr/Only/issues
+ category: Data
+ build-type: Simple
+ cabal-version: >=1.10
+-description: This package provides the canonical anonymous 1-tuple type missing from Haskell for attaching typeclass instances.
++description:
++ This package provides a canonical anonymous 1-tuple type missing
++ from Haskell for attaching typeclass instances.
++ .
++ NOTE: There is also the </package/OneTuple OneTuple package> which
++ by using a boxed @data at -type provides a 1-tuple type which has
++ laziness properties which are more faithful to the ones of Haskell's
++ native tuples; whereas the primary purpose of 'Only' is to
++ provide the traditionally so named type-wrapper for attaching typeclass
++ instances.
+
+ Source-Repository head
+ Type: git
+- Location: https://github.com/hvr/Only.git
++ Location: https://github.com/haskell-hvr/Only.git
+
+ library
+ hs-source-dirs: src
+@@ -26,7 +36,7 @@ library
+ , Safe
+
+ build-depends: base >= 4.5 && <5
+- , deepseq >= 1.1 && <1.5
++ , deepseq >= 1.1 && <1.6
+
+ if impl(ghc == 7.4.*)
+ build-depends: ghc-prim
=====================================
p/haskell-only/debian/patches/series
=====================================
@@ -0,0 +1 @@
+newer-deps
=====================================
p/haskell-parallel/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-parallel (3.2.2.0-7) UNRELEASED; urgency=medium
+haskell-parallel (3.2.2.0-7) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:15 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:02 +0200
haskell-parallel (3.2.2.0-6) unstable; urgency=medium
=====================================
p/haskell-parallel/debian/patches/newer-deps
=====================================
@@ -1,11 +1,70 @@
+Index: b/parallel.cabal
+===================================================================
--- a/parallel.cabal
+++ b/parallel.cabal
-@@ -43,7 +43,7 @@ library
+@@ -1,5 +1,7 @@
++cabal-version: >=1.10
+ name: parallel
+ version: 3.2.2.0
++x-revision: 10
+ -- NOTE: Don't forget to update ./changelog.md
+ license: BSD3
+ license-file: LICENSE
+@@ -8,18 +10,39 @@ bug-reports: https://github.com/haske
+ synopsis: Parallel programming library
+ category: Control, Parallelism
+ build-type: Simple
+-cabal-version: >=1.10
+-tested-with: GHC==8.6.1, GHC==8.4.3, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2, GHC==7.2.2, GHC==7.0.4
++
++tested-with:
++ GHC == 9.12.0
++ GHC == 9.10.1
++ GHC == 9.8.2
++ GHC == 9.6.6
++ GHC == 9.4.8
++ GHC == 9.2.8
++ GHC == 9.0.2
++ GHC == 8.10.7
++ GHC == 8.8.4
++ GHC == 8.6.5
++ GHC == 8.4.4
++ GHC == 8.2.2
++ GHC == 8.0.2
++ -- Drop these old GHCs from CI:
++ -- GHC == 7.10.3
++ -- GHC == 7.8.4
++ -- GHC == 7.6.3
++ -- GHC == 7.4.2
++ -- GHC == 7.2.2
++ -- GHC == 7.0.4
++
+ description:
+ This package provides a library for parallel programming.
+ .
+- For documentation start from the "Control.Parallel.Strategies"
++ For documentation, start from the "Control.Parallel.Strategies"
+ module below.
+ .
+- For more tutorial documentation, see the book <http://simonmar.github.io/pages/pcph.html Parallel and Concurrent Programming in Haskell>.
++ For more tutorial documentation, see the book <https://simonmar.github.io/pages/pcph.html Parallel and Concurrent Programming in Haskell>.
+ .
+ To understand the principles behind the library, see
+- <http://simonmar.github.io/bib/papers/strategies.pdf Seq no more: Better Strategies for Parallel Haskell>.
++ <https://simonmar.github.io/bib/papers/strategies.pdf Seq no more: Better Strategies for Parallel Haskell>.
+
+
+ extra-source-files: changelog.md
+@@ -43,9 +66,9 @@ library
build-depends:
array >= 0.3 && < 0.6,
- base >= 4.3 && < 4.13,
-+ base >= 4.3 && < 5,
- containers >= 0.4 && < 0.7,
- deepseq >= 1.1 && < 1.5
+- containers >= 0.4 && < 0.7,
+- deepseq >= 1.1 && < 1.5
++ base >= 4.3 && < 4.22,
++ containers >= 0.4 && < 0.9,
++ deepseq >= 1.1 && < 1.6
+
+ ghc-options: -Wall
=====================================
p/haskell-patience/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-patience (0.3-5) UNRELEASED; urgency=medium
+haskell-patience (0.3-5) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:12:06 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:02 +0200
haskell-patience (0.3-4) unstable; urgency=medium
=====================================
p/haskell-patience/debian/patches/newer-deps
=====================================
@@ -0,0 +1,43 @@
+Index: b/patience.cabal
+===================================================================
+--- a/patience.cabal
++++ b/patience.cabal
+@@ -3,6 +3,7 @@ name:
+ patience
+ version:
+ 0.3
++x-revision: 1
+ license:
+ BSD3
+ license-file:
+@@ -33,6 +34,20 @@ extra-source-files:
+ CHANGELOG.md
+ README.md
+
++tested-with:
++ GHC == 9.12.0
++ GHC == 9.10.1
++ GHC == 9.8.2
++ GHC == 9.6.6
++ GHC == 9.4.8
++ GHC == 9.2.8
++ GHC == 9.0.2
++ GHC == 8.10.7
++ GHC == 8.8.4
++ GHC == 8.6.5
++ GHC == 8.4.4
++ GHC == 8.2.2
++
+ library
+ hs-source-dirs:
+ src
+@@ -45,7 +60,8 @@ library
+ Haskell2010
+ build-depends:
+ base >= 4.3 && < 5
+- , containers >= 0.5.9 && < 0.7
++ -- Maybe bump base lower bound to 4.10 since this matches containers-0.5.9
++ , containers >= 0.5.9 && < 0.8
+
+ source-repository head
+ type: git
=====================================
p/haskell-patience/debian/patches/series
=====================================
@@ -0,0 +1 @@
+newer-deps
=====================================
p/haskell-primitive-unaligned/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-primitive-unaligned (0.1.1.2-6) UNRELEASED; urgency=medium
+haskell-primitive-unaligned (0.1.1.2-6) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:20 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:03 +0200
haskell-primitive-unaligned (0.1.1.2-5) unstable; urgency=medium
=====================================
p/haskell-primitive-unaligned/debian/control
=====================================
@@ -9,7 +9,7 @@ Build-Depends: debhelper-compat (= 13),
ghc (>= 9.4),
ghc-prof,
libghc-primitive-dev (>= 0.6.4),
- libghc-primitive-dev (<< 0.9),
+ libghc-primitive-dev (<< 0.10),
libghc-primitive-dev,
libghc-primitive-prof,
Build-Depends-Indep: ghc-doc,
=====================================
p/haskell-primitive-unaligned/debian/patches/haskell-primitive-unaligned-add-support-for-loongarch64.patch
=====================================
@@ -1,11 +1,13 @@
Description: Add support for loongarch64
Last-Update: 2023-10-09
---- haskell-primitive-unaligned-0.1.1.2.orig/primitive-unaligned.cabal
-+++ haskell-primitive-unaligned-0.1.1.2/primitive-unaligned.cabal
+Index: b/primitive-unaligned.cabal
+===================================================================
+--- a/primitive-unaligned.cabal
++++ b/primitive-unaligned.cabal
@@ -23,7 +23,7 @@ library
, base >=4.12.0.0 && <5
- , primitive >=0.6.4 && <0.9
+ , primitive >=0.6.4 && <0.10
hs-source-dirs: src
- if arch(aarch64) || arch(alpha) || arch(ia64) || arch(ppc64) || arch(powerpc64) || arch(powerpc64le) || arch(riscv64) || arch(s390x) || arch(sparc64) || arch(x86_64) || arch(mips64el)
+ if arch(aarch64) || arch(alpha) || arch(ia64) || arch(ppc64) || arch(powerpc64) || arch(powerpc64le) || arch(riscv64) || arch(s390x) || arch(sparc64) || arch(x86_64) || arch(mips64el) || arch(loongarch64)
=====================================
p/haskell-primitive-unaligned/debian/patches/newer-deps
=====================================
@@ -6,16 +6,25 @@ Index: b/primitive-unaligned.cabal
cabal-version: 2.2
name: primitive-unaligned
version: 0.1.1.2
-+x-revision: 1
++x-revision: 4
synopsis: Unaligned access to primitive arrays
description: Unaligned access to primitive arrays. The offsets are given in bytes rather than elements.
homepage: https://github.com/haskell-primitive/primitive-unaligned
+@@ -11,7 +12,7 @@ author: Andrew Martin
+ maintainer: Andrew Martin <andrew.thaddeus at gmail.com>
+ copyright: 2019 Andrew Martin
+ category: Data
+-tested-with: GHC == 8.6.4
++tested-with: GHC == 9.4.7
+
+ library
+ exposed-modules:
@@ -20,7 +21,7 @@ library
Data.Primitive.Unaligned.Mach
build-depends:
, base >=4.12.0.0 && <5
- , primitive >=0.6.4 && <0.8
-+ , primitive >=0.6.4 && <0.9
++ , primitive >=0.6.4 && <0.10
hs-source-dirs: src
if arch(aarch64) || arch(alpha) || arch(ia64) || arch(ppc64) || arch(x86_64)
hs-source-dirs: src-64
=====================================
p/haskell-primitive-unaligned/debian/patches/support-more-arches
=====================================
@@ -13,7 +13,7 @@ Index: b/primitive-unaligned.cabal
+++ b/primitive-unaligned.cabal
@@ -23,9 +23,9 @@ library
, base >=4.12.0.0 && <5
- , primitive >=0.6.4 && <0.9
+ , primitive >=0.6.4 && <0.10
hs-source-dirs: src
- if arch(aarch64) || arch(alpha) || arch(ia64) || arch(ppc64) || arch(x86_64)
+ if arch(aarch64) || arch(alpha) || arch(ia64) || arch(ppc64) || arch(powerpc64) || arch(powerpc64le) || arch(riscv64) || arch(s390x) || arch(sparc64) || arch(x86_64) || arch(mips64el)
=====================================
p/haskell-readable/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-readable (0.3.1-11) UNRELEASED; urgency=medium
+haskell-readable (0.3.1-11) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:52 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:03 +0200
haskell-readable (0.3.1-10) unstable; urgency=medium
=====================================
p/haskell-readable/debian/patches/newer-deps
=====================================
@@ -5,7 +5,7 @@ Index: b/readable.cabal
@@ -1,5 +1,6 @@
name: readable
version: 0.3.1
-+x-revision: 1
++x-revision: 2
synopsis: Reading from Text and ByteString
description:
@@ -32,14 +32,19 @@ Index: b/readable.cabal
extra-source-files:
CHANGELOG.md
LICENSE,
-@@ -29,8 +41,8 @@ Library
+@@ -29,12 +41,12 @@ Library
build-depends:
base >= 4 && < 5,
- bytestring >= 0.9 && < 0.11,
- text >= 0.11 && < 1.3
-+ bytestring >= 0.9 && < 0.12,
-+ text >= 0.11 && < 2.1
++ bytestring >= 0.9 && < 0.13,
++ text >= 0.11 && < 2.2
ghc-prof-options: -prof -auto-all
ghc-options: -Wall -fwarn-tabs
+
+ source-repository head
+ type: git
+- location: git://github.com/mightybyte/readable.git
++ location: https://github.com/mightybyte/readable.git
=====================================
p/haskell-setlocale/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-setlocale (1.0.0.10-4) UNRELEASED; urgency=medium
+haskell-setlocale (1.0.0.10-4) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:55 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:03 +0200
haskell-setlocale (1.0.0.10-3) unstable; urgency=medium
=====================================
p/haskell-setlocale/debian/patches/newer-deps
=====================================
@@ -5,7 +5,7 @@ Index: b/setlocale.cabal
@@ -1,5 +1,6 @@
name: setlocale
version: 1.0.0.10
-+x-revision: 4
++x-revision: 7
synopsis: Haskell bindings to setlocale
-- description:
license: BSD3
@@ -14,7 +14,7 @@ Index: b/setlocale.cabal
-- other-modules:
other-extensions: DeriveDataTypeable, ForeignFunctionInterface
- build-depends: base >=4.6 && <4.16
-+ build-depends: base >=4.6 && <4.20
++ build-depends: base >=4.6 && <4.23
-- hs-source-dirs:
build-tools: hsc2hs
default-language: Haskell2010
=====================================
p/haskell-some/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-some (1.0.6-2) UNRELEASED; urgency=medium
+haskell-some (1.0.6-2) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:50 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:03 +0200
haskell-some (1.0.6-1) unstable; urgency=medium
=====================================
p/haskell-some/debian/patches/newer-deps
=====================================
@@ -0,0 +1,35 @@
+Index: b/some.cabal
+===================================================================
+--- a/some.cabal
++++ b/some.cabal
+@@ -1,5 +1,6 @@
+ name: some
+ version: 1.0.6
++x-revision: 2
+ cabal-version: >=1.10
+ build-type: Simple
+ author:
+@@ -29,9 +30,11 @@ tested-with:
+ || ==8.10.4
+ || ==9.0.2
+ || ==9.2.8
+- || ==9.4.7
+- || ==9.6.3
+- || ==9.8.1
++ || ==9.4.8
++ || ==9.6.6
++ || ==9.8.4
++ || ==9.10.1
++ || ==9.12.1
+
+ extra-source-files: ChangeLog.md
+
+@@ -68,7 +71,7 @@ library
+
+ other-modules: Data.GADT.Internal
+ build-depends:
+- base >=4.12 && <4.20
++ base >=4.12 && <4.22
+ , deepseq >=1.4.4.0 && <1.6
+
+ if !impl(ghc >= 9.8)
=====================================
p/haskell-some/debian/patches/series
=====================================
@@ -0,0 +1 @@
+newer-deps
=====================================
p/haskell-sop-core/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-sop-core (0.5.0.2-4) UNRELEASED; urgency=medium
+haskell-sop-core (0.5.0.2-4) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:24 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:04 +0200
haskell-sop-core (0.5.0.2-3) unstable; urgency=medium
=====================================
p/haskell-sop-core/debian/patches/newer-deps
=====================================
@@ -2,27 +2,30 @@ Index: b/sop-core.cabal
===================================================================
--- a/sop-core.cabal
+++ b/sop-core.cabal
-@@ -1,4 +1,5 @@
+@@ -1,5 +1,6 @@
name: sop-core
-+x-revision: 2
version: 0.5.0.2
++x-revision: 5
synopsis: True Sums of Products
description:
+ Implementation of n-ary sums and n-ary products.
@@ -25,7 +26,7 @@ category: Data
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md doctest.sh
-tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.2, GHC == 8.10.4, GHC == 9.0.1, GHC == 9.2.1
-+tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.1
++tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.4, GHC == 9.6.6, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1
source-repository head
type: git
-@@ -41,7 +42,7 @@ library
+@@ -41,8 +42,8 @@ library
Data.SOP.NP
Data.SOP.NS
Data.SOP.Sing
- build-depends: base >= 4.9 && < 4.17,
-+ build-depends: base >= 4.9 && < 4.19,
- deepseq >= 1.3 && < 1.5
+- deepseq >= 1.3 && < 1.5
++ build-depends: base >= 4.9 && < 4.22,
++ deepseq >= 1.3 && < 1.6
hs-source-dirs: src
default-language: Haskell2010
+ ghc-options: -Wall
=====================================
p/haskell-stringsearch/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-stringsearch (0.3.6.6-14) UNRELEASED; urgency=medium
+haskell-stringsearch (0.3.6.6-14) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:42 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:04 +0200
haskell-stringsearch (0.3.6.6-13) unstable; urgency=medium
=====================================
p/haskell-stringsearch/debian/patches/newer-deps
=====================================
@@ -1,11 +1,21 @@
---- haskell-stringsearch-0.3.6.6.orig/stringsearch.cabal
-+++ haskell-stringsearch-0.3.6.6/stringsearch.cabal
-@@ -83,7 +83,7 @@ Library
+Index: b/stringsearch.cabal
+===================================================================
+--- a/stringsearch.cabal
++++ b/stringsearch.cabal
+@@ -8,6 +8,7 @@ Name: stringsearch
+ -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
+ -- standards guiding when and how versions should be incremented.
+ Version: 0.3.6.6
++x-revision: 2
+
+ Homepage: https://bitbucket.org/dafis/stringsearch
+ Bug-reports: https://bitbucket.org/dafis/stringsearch/issues
+@@ -83,7 +84,7 @@ Library
-- Packages needed in order to build this package.
if flag(base4)
Build-depends: base >= 4 && < 5, array >= 0.3 && < 0.6,
- bytestring >= 0.9 && < 1, containers >= 0.3 && < 0.6
-+ bytestring >= 0.9 && < 1, containers >= 0.3 && < 0.7
++ bytestring >= 0.9 && < 1, containers >= 0.3 && < 1
else
if flag(base3)
Build-depends: base >= 3 && < 4, array >= 0.1 && < 0.4,
=====================================
p/haskell-wizards/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-wizards (1.0.3-6) UNRELEASED; urgency=medium
+haskell-wizards (1.0.3-6) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:12:03 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:14:04 +0200
haskell-wizards (1.0.3-5) unstable; urgency=medium
=====================================
p/haskell-wizards/debian/patches/newer-deps
=====================================
@@ -6,7 +6,7 @@ Index: b/wizards.cabal
-- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
-- standards guiding when and how versions should be incremented.
Version: 1.0.3
-+x-revision: 2
++x-revision: 3
-- A short (one-line) description of the package.
Synopsis: High level, generic library for interrogative user interfaces
@@ -24,7 +24,7 @@ Index: b/wizards.cabal
-- Packages needed in order to build this package.
- Build-depends: base == 4.*, haskeline >= 0.6 && < 0.8, mtl >= 2.0 && < 2.3, transformers >= 0.1 && < 0.6, control-monad-free >= 0.5 && < 0.7, containers >= 0.4 && < 0.7
-+ Build-depends: base == 4.*, haskeline >= 0.6 && < 0.9, mtl >= 2.0 && < 2.4, transformers >= 0.1 && < 0.7, control-monad-free >= 0.5 && < 0.7, containers >= 0.4 && < 0.7
++ Build-depends: base == 4.*, haskeline >= 0.6 && < 0.9, mtl >= 2.0 && < 2.4, transformers >= 0.1 && < 0.7, control-monad-free >= 0.5 && < 0.7, containers >= 0.4 && < 0.8
-- Modules not exported by this package.
-- Other-modules:
=====================================
p/magic-haskell/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-magic-haskell (1.1-13) UNRELEASED; urgency=medium
+magic-haskell (1.1-13) unstable; urgency=medium
+ [ Scott Talbert ]
* Build using dh-haskell
- -- Scott Talbert <swt at techie.net> Sun, 09 Nov 2025 21:11:39 -0500
+ [ Ilias Tsitsimpis ]
+ * Sourceful upload for GHC 9.10
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org> Mon, 05 Jan 2026 22:13:40 +0200
magic-haskell (1.1-12) unstable; urgency=medium
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/compare/e8b692c7c20fcfc6b96032459267cb486ea2da45...2686b4e0d2a5df8f0e29039d4bdd7b9e9f89f8bb
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/compare/e8b692c7c20fcfc6b96032459267cb486ea2da45...2686b4e0d2a5df8f0e29039d4bdd7b9e9f89f8bb
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/20260105/bbbe98b2/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list