Skip to content
Commits on Source (3)
haskell-blaze-markup (0.8.2.1-4) unstable; urgency=medium
* Backport upstream patch to relax constraints on base,
containers, and tasty.
-- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 17 Oct 2018 12:39:58 +0300
haskell-blaze-markup (0.8.2.1-3) unstable; urgency=medium
* Remove build dependency on libghc-text-dev (provided by ghc-8.4.3)
......
......@@ -21,7 +21,7 @@ Build-Depends:
libghc-quickcheck2-dev (<< 2.12),
libghc-quickcheck2-prof,
libghc-tasty-dev (>= 1.0),
libghc-tasty-dev (<< 1.1),
libghc-tasty-dev (<< 1.2),
libghc-tasty-prof,
libghc-tasty-hunit-dev (>= 0.10),
libghc-tasty-hunit-dev (<< 0.11),
......
From 57af819ead3b4e4570887b0e9134787b88c1e673 Mon Sep 17 00:00:00 2001
From: Dan Burton <danburton.email@gmail.com>
Date: Tue, 25 Sep 2018 07:26:12 -0700
Subject: [PATCH] Relax constraints on base, containers, and tasty for ghc 8.6
---
blaze-markup.cabal | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: b/blaze-markup.cabal
===================================================================
--- a/blaze-markup.cabal
+++ b/blaze-markup.cabal
@@ -36,7 +36,7 @@ Library
Text.Blaze.Renderer.Utf8
Build-depends:
- base >= 4 && < 4.12,
+ base >= 4 && < 4.13,
blaze-builder >= 0.3 && < 0.5,
text >= 0.10 && < 1.3,
bytestring >= 0.9 && < 0.11
@@ -60,12 +60,12 @@ Test-suite blaze-markup-tests
Build-depends:
HUnit >= 1.2 && < 1.7,
QuickCheck >= 2.7 && < 2.12,
- containers >= 0.3 && < 0.6,
- tasty >= 1.0 && < 1.1,
+ containers >= 0.3 && < 0.7,
+ tasty >= 1.0 && < 1.2,
tasty-hunit >= 0.10 && < 0.11,
tasty-quickcheck >= 0.10 && < 0.11,
-- Copied from regular dependencies...
- base >= 4 && < 4.12,
+ base >= 4 && < 4.13,
blaze-builder >= 0.3 && < 0.5,
text >= 0.10 && < 1.3,
bytestring >= 0.9 && < 0.11
--- a/blaze-markup.cabal
+++ b/blaze-markup.cabal
@@ -63,7 +63,7 @@
containers >= 0.3 && < 0.6,
tasty >= 1.0 && < 1.1,
tasty-hunit >= 0.10 && < 0.11,
- tasty-quickcheck >= 0.10 && < 0.11,
+ tasty-quickcheck >= 0.9 && < 0.11,
-- Copied from regular dependencies...
base >= 4 && < 4.12,
blaze-builder >= 0.3 && < 0.5,
haskell-integer-logarithms (1.0.2.2-2) unstable; urgency=medium
* Relax build-dependency on libghc-tasty-dev
* Re-enable tests
-- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 17 Oct 2018 12:20:28 +0300
haskell-integer-logarithms (1.0.2.2-1) unstable; urgency=medium
[ Clint Adams ]
......
......@@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 10),
libghc-smallcheck-dev (>= 1.1.3),
libghc-smallcheck-dev (<< 1.2),
libghc-tasty-dev (>= 0.10),
libghc-tasty-dev (<< 1.1),
libghc-tasty-dev (<< 1.2),
libghc-tasty-hunit-dev (>= 0.9),
libghc-tasty-hunit-dev (<< 0.11),
libghc-tasty-quickcheck-dev (>= 0.8),
......@@ -25,7 +25,7 @@ Build-Depends-Indep: ghc-doc,
Standards-Version: 4.1.4
Homepage: https://github.com/Bodigrim/integer-logarithms
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-integer-logarithms
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git
Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-integer-logarithms]
X-Description: integer logarithms
Math.NumberTheory.Logarithms and Math.NumberTheory.Powers.Integer
from the arithmoi package.
......
......@@ -5,16 +5,10 @@ Source: https://hackage.haskell.org/package/integer-logarithms
Files: *
Copyright: 2011-2014 Daniel Fischer
2016 Andrew Lelechenko
2017 Oleg Grenrus
License: Expat
Files: test-suite/Math/NumberTheory/TestUtils.hs
test-suite/Math/NumberTheory/Powers/IntegerTests.hs
test-suite/Math/NumberTheory/Powers/NaturalTests.hs
test-suite/Math/NumberTheory/LogarithmsTests.hs
Copyright: 2016 Andrew Lelechenko
License: Expat
Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: Expat
......
#!/usr/bin/make -f
# needs QuickCheck 2.10 which is newer than current LTS
DEB_ENABLE_TESTS = no
DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = integer-logarithms
DEB_DEFAULT_COMPILER = ghc
DEB_ENABLE_TESTS = yes
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
haskell-prettyprinter-ansi-terminal (1.1.1.2-4) unstable; urgency=medium
* Don't build test executables with RTS -N; most of Debian's
architectures lack SMP support.
-- Ilias Tsitsimpis <iliastsi@debian.org> Wed, 17 Oct 2018 12:09:19 +0300
haskell-prettyprinter-ansi-terminal (1.1.1.2-3) unstable; urgency=medium
* Remove build dependency on libghc-text-dev (provided by ghc-8.4.3)
......
Index: b/prettyprinter-ansi-terminal.cabal
===================================================================
--- a/prettyprinter-ansi-terminal.cabal
+++ b/prettyprinter-ansi-terminal.cabal
@@ -51,7 +51,7 @@ test-suite doctest
build-depends:
base >= 4.7 && < 5
, doctest >= 0.9
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded
default-language: Haskell2010
if impl (ghc < 7.10)
buildable: False