Skip to content

Commits on Source 4

haskell-ekg-core (0.1.1.4-4) unstable; urgency=medium
* Newer build-deps from hackage
-- Ilias Tsitsimpis <iliastsi@debian.org> Mon, 15 Oct 2018 16:25:54 +0300
haskell-ekg-core (0.1.1.4-3) unstable; urgency=medium
* Remove build dependency on libghc-text-dev (provided by ghc-8.4.3)
......
Index: b/ekg-core.cabal
===================================================================
--- a/ekg-core.cabal
+++ b/ekg-core.cabal
@@ -33,8 +33,8 @@ library
build-depends:
ghc-prim < 0.6,
- base >= 4.5 && < 4.11,
- containers >= 0.5 && < 0.6,
+ base >= 4.5 && < 4.12,
+ containers >= 0.5 && < 0.7,
text < 1.3,
unordered-containers < 0.3
haskell-hashable (1.2.7.0-5) unstable; urgency=medium
* Fix "FTBFS when built with dpkg-buildpackage -A" by preprocessing
the .hsc files before calling haddock (Closes: #906602).
-- Ilias Tsitsimpis <iliastsi@debian.org> Mon, 15 Oct 2018 15:54:10 +0300
haskell-hashable (1.2.7.0-4) unstable; urgency=medium
* Remove build dependency on libghc-text-dev (provided by ghc-8.4.3)
......
......@@ -9,3 +9,10 @@ DEB_ENABLE_TESTS := yes
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
# Avoid haddock bug with ppHsc2hs by first running cabal build, which does the
# preprocessing of the .hsc files correctly. Then haddock doesn't choke on the
# preprocessing, and builds the docs for the library component.
# For more information, see:
# https://github.com/haskell/cabal/issues/4215#issuecomment-273486201
build-haddock-stamp: build-ghc-stamp
haskell-hgettext (0.1.31.0-3) unstable; urgency=medium
* Newer build-deps from hackage
-- Ilias Tsitsimpis <iliastsi@debian.org> Mon, 15 Oct 2018 16:33:06 +0300
haskell-hgettext (0.1.31.0-2) unstable; urgency=medium
[ Clint Adams ]
......
Index: b/hgettext.cabal
===================================================================
--- a/hgettext.cabal
+++ b/hgettext.cabal
@@ -31,8 +31,8 @@ library
other-modules: Internal
hs-source-dirs: src
- build-depends: base >=4.5 && <4.11
- , Cabal >=1.14 && <1.25 || == 2.0.*
+ build-depends: base >=4.5 && <4.12
+ , Cabal >=1.14 && <1.25 || == 2.0.* || == 2.2.*
, containers >=0.4.2 && <0.6
, directory >=1.1 && <1.4
, filepath >=1.3 && <1.5
haskell-hint (0.8.0-3) unstable; urgency=medium
* Fix typo in package description
* Add missing build-deps on libghc-temporary-{dev,prof,doc}
-- Ilias Tsitsimpis <iliastsi@debian.org> Mon, 15 Oct 2018 16:38:47 +0300
haskell-hint (0.8.0-2) unstable; urgency=medium
* Remove build dependency on libghc-mtl-dev (provided by ghc-8.4.3)
......
......@@ -19,11 +19,14 @@ Build-Depends:
libghc-ghc-paths-prof,
libghc-random-dev,
libghc-random-prof,
libghc-temporary-dev,
libghc-temporary-prof,
Build-Depends-Indep:
ghc-doc,
libghc-exceptions-doc,
libghc-ghc-paths-doc,
libghc-random-doc,
libghc-temporary-doc,
Standards-Version: 4.1.4
Homepage: https://github.com/mvdan/hint
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-hint
......@@ -43,7 +46,7 @@ Description: runtime Haskell interpreter (GHC API wrapper)${haskell:ShortBlurb}
This library defines an Interpreter monad. It allows one to load Haskell
modules, browse them, type-check and evaluate strings with Haskell expressions
and even coerce them into values. The library is thread-safe and type-safe
(even the coercion of expressions to values). It is, esentially, a huge subset
(even the coercion of expressions to values). It is, essentially, a huge subset
of the GHC API wrapped in a simpler API. Works with GHC.10.x and 6.8.x (this
version was not tested with GHC.6).
.
......