Looks like the NMU to 0.67-0.1 broke installation. The changelog says:

  * Remove the debconf note that's displayed only in very rare
   situations and rather pertains to README.Debian

and debian/config has been removed, but the postinst still contains:

   . /usr/share/debconf/confmodule
   db_get language-env/installation_is_insufficient

which causes it to exit since set -e is given and db_get returns 10
(language-env/installation_is_insufficient doesn't exist).

I've attached a patch which fixes this and am preparing an NMU

Matt

--
Matthew Johnson
http://www.matthew.ath.cx/
--- postinst.orig       2006-11-25 19:24:54.859463743 +0000
+++ postinst    2006-11-25 19:25:02.542517590 +0000
@@ -25,9 +25,6 @@
 case "$1" in
     configure)

-       . /usr/share/debconf/confmodule
-       db_get language-env/installation_is_insufficient
-
 #      echo "---------------------------------------"
 #      echo "language-env does not change any setup unless"
 #      echo "the user execute the configuration command: "

Reply via email to