On Fri, Jul 11, 2014 at 3:42 PM, Joachim Breitner <[email protected]>
wrote:
> Hi,
>
> Am Freitag, den 11.07.2014, 13:12 -0700 schrieb David Fox:
>
> > Either way works for me, it is just that I'm getting build errors
> > because our builder decides it needs to build those packages and then,
> > because the cabal versions are the same, they collide with
> > the .haddock files in ghc.
>
> patch welcome :-)
>
> I built about 500 different packages with the attached patch. It just
removes terminfo, haskeline, and xhtml from the ignored list in
debian/provided_substvars.
--- old/debian/provided_substvars 2014-06-10 01:47:34.000000000 -0700
+++ new/debian/provided_substvars 2014-07-12 06:34:38.637057410 -0700
@@ -5,7 +5,7 @@
open PKG, 'inplace/bin/ghc-pkg list --simple-output |'
or die "ghc-pkg list failed: $!";
-my @ignored = ('ghc', 'mtl', 'terminfo', 'haskeline', 'utf8-string', 'xhtml',
'rts', 'stm', 'parallel');
+my @ignored = ('ghc', 'mtl', 'utf8-string', 'rts', 'stm', 'parallel');
my %ignored;
$ignored{$_}++ for @ignored;