Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
haskell-esqueleto: do not build doc package, better no docs than no module
· e05797c6
Steve Langasek
authored
Sep 27, 2019
e05797c6
haskell-haskell-gi: don't run tests on s390x, they hangs
· 5722d012
Gianfranco Costamagna
authored
Sep 27, 2019
5722d012
haskell-http-api-data: disable tests on s390x, they hangs
· 415a42c6
Gianfranco Costamagna
authored
Sep 27, 2019
415a42c6
Show whitespace changes
Inline
Side-by-side
p/haskell-esqueleto/debian/changelog
View file @
415a42c6
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.
...
...
p/haskell-esqueleto/debian/control
View file @
415a42c6
...
...
@@ -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}
p/haskell-haskell-gi/debian/changelog
View file @
415a42c6
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.
...
...
p/haskell-haskell-gi/debian/rules
View file @
415a42c6
#!/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
...
...
p/haskell-http-api-data/debian/changelog
View file @
415a42c6
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.
...
...
p/haskell-http-api-data/debian/rules
View file @
415a42c6
...
...
@@ -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
...
...