Skip to content
haskell-esqueleto (2.6.0-2) unstable; urgency=medium
[ Steve Langasek ]
* Don't build the docs package, it's more useful to at least have the
module package available for now, working around Debian bug #915646.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 27 Sep 2019 12:44:18 +0200
haskell-esqueleto (2.6.0-1) unstable; urgency=medium
* New upstream version.
......
......@@ -32,15 +32,6 @@ Build-Depends: debhelper (>= 10),
libghc-persistent-dev,
libghc-persistent-sqlite-dev (>= 2.1.3),
libghc-persistent-template-dev (>= 2.1),
Build-Depends-Indep: ghc-doc,
libghc-blaze-html-doc,
libghc-conduit-doc,
libghc-monad-logger-doc,
libghc-persistent-doc,
libghc-resourcet-doc,
libghc-tagged-doc,
libghc-unliftio-doc,
libghc-unordered-containers-doc,
Standards-Version: 4.4.0
Homepage: https://github.com/bitemyapp/esqueleto
Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-esqueleto
......@@ -79,15 +70,3 @@ Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
${haskell:LongDescription}
.
${haskell:Blurb}
Package: libghc-esqueleto-doc
Architecture: all
Section: doc
Depends: ${misc:Depends},
${haskell:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
${haskell:LongDescription}
.
${haskell:Blurb}
haskell-haskell-gi (0.21.5-2) unstable; urgency=medium
* Don't run tests on s390x, they hang
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 27 Sep 2019 12:46:47 +0200
haskell-haskell-gi (0.21.5-1) unstable; urgency=medium
* New upstream version.
......
#!/usr/bin/make -f
ifeq (s390x,$(DEB_HOST_ARCH))
DEB_ENABLE_TESTS = no
else
DEB_ENABLE_TESTS = yes
endif
DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = haskell-gi
DEB_DEFAULT_COMPILER = ghc
......
haskell-http-api-data (0.4-3) unstable; urgency=medium
* Disable tests on s390x, they hangs
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 01 Sep 2019 22:17:08 +0200
haskell-http-api-data (0.4-2) unstable; urgency=medium
* Add missing build dependency on cabal-doctest.
......
......@@ -3,7 +3,11 @@
DEB_CABAL_PACKAGE = http-api-data
DEB_DEFAULT_COMPILER = ghc
ifeq (s390x,$(DEB_HOST_ARCH))
DEB_ENABLE_TESTS = no
else
DEB_ENABLE_TESTS = yes
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
......