Bug#889829: ghc: error while loading shared libraries: libHShaskeline-0.7.3.0-ghc8.0.2.so

2018-02-08 Thread Petter Reinholdtsen
[Clint Adams]
> objdump -p /usr/lib/ghc/bin/ghc-pkg | grep RUNPATH

Sorry, I removed ghc from my chroot to get the upgrade going, and when I
reinstalled it now the problem has disappeared.

-- 
Happy hacking
Petter Reinholdtsen

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#889829: ghc: error while loading shared libraries: libHShaskeline-0.7.3.0-ghc8.0.2.so

2018-02-07 Thread Petter Reinholdtsen
o-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/lib/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/lib/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/lib/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying 
file=/usr/lib/tls/x86_64/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying 
file=/usr/lib/tls/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying 
file=/usr/lib/tls/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/usr/lib/tls/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying 
file=/usr/lib/x86_64/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/usr/lib/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/usr/lib/x86_64/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:   trying file=/usr/lib/libHSterminfo-0.4.0.2-ghc8.0.2.so
 15427:
/usr/lib/ghc/bin/ghc-pkg: error while loading shared libraries: 
libHSterminfo-0.4.0.2-ghc8.0.2.so: cannot open shared object file: No such file 
or directory
#

-- 
Happy hacking
Petter Reinholdtsen

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#867664: pandoc: Include doctype header in generated docbook output?

2017-07-08 Thread Petter Reinholdtsen

Package: pandoc
Version: 1.12.4.2~dfsg-1

The DocBook output generated by pandoc is missing the XML header
documenting the format.  Is there a reason for this?

Instead of getting this result,

% printf "header\n===\n\nbody\n"|pandoc -o - -t docbook -

  header
  
body
  

%

I suggest to return something like this:

% printf "header\n===\n\nbody\n"|pandoc -o - -t docbook -

http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd;>

  header
  
body
  

%

This allow XML validators to check the content.

-- 
Happy hacking
Petter Reinholdtsen

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#856123: pandoc: Convert markdown to bad docbook for non-ascii titles

2017-02-25 Thread Petter Reinholdtsen
Control: reassign -1 dblatex
Control: found -1 0.3.5-2

[John MacFarlane]
> I'd say it's a dblatex problem.

I am unsure, and do not disagree, so lets reassign to dblatex for a
different viewpoint.  I worked around the issue using
'sed s/id=\".*\"//' for now. :/

-- 
Happy hacking
Petter Reinholdtsen

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#856123: pandoc: Convert markdown to bad docbook for non-ascii titles

2017-02-25 Thread Petter Reinholdtsen

Package: pandoc
Version: 1.12.4.2~dfsg-1+b14

This issue is also present with pandoc version 1.17.2~dfsg-3 in
unstable.

When trying to convert a Norwegian text file from markdown to docbook
using pandoc, the resulting docbook file contain section IDs rejected by
dblatex if the section title have non-ascii characters.

This script demonstrate the problem:

=
#!/bin/sh
# Script demonstrating invalid docbook output from pandoc.

cat << EOF > dblatex-nonascii-title-book.xml


http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd; []>


  demontrate problem in title

http://www.w3.org/2001/XInclude"/>

EOF

cat < dblatex-nonascii-title-first-level.xml

http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd;>

chapter title
http://www.w3.org/2001/XInclude"/>

EOF

cat < dblatex-nonascii-title-second-level.md
The title with æøå  ÆØÅ

For some reason, this do not work.

subtitle with æøå ÆØÅ
-
This do not work either
EOF
pandoc -f markdown -t docbook dblatex-nonascii-title-second-level.md \
   --output dblatex-nonascii-title-second-level.xml
# This result in , which is an
# invalid docbook ID according to dblatex.
dblatex dblatex-nonascii-title-book.xml
=

It would be nice if pandoc created IDs with only ascii characters.

If you believe this is a problem with dblatex instead, please reassign
it there.  I've tested using dblatex 0.3.5-2 and 0.3.9-1.

-- 
Happy hacking
Petter Reinholdtsen

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers