Package: ess
Version: 16.10-1
Severity: normal

  $ cat /var/log/apt/term.log
  ...
  install/ess: Handling install for emacsen flavor emacs21
  ERROR: install script from ess package failed
  dpkg: error processing package ess (--configure):
   subprocess installed post-installation script returned error exit status 1

The reason for an error is a file:

  $ cat /usr/lib/emacsen-common/packages/install/ess

  if [ ${FLAVOR} = emacs ]; then exit 0; fi

  if [ ${FLAVOR} = xemacs21 ]; then exit 0; fi

  if [ ${FLAVOR} = emacs22 ]; then exit 0; fi

  if [ ${FLAVOR} = emacs23 ]; then exit 0; fi

It's better to have:

  case ${FLAVOR} in xemacs*|emacs|emacs2[1-3]) exit 0;; esac

instead of those lines.

-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ess depends on:
ii  dpkg            1.18.10
ii  emacsen-common  2.0.8
ii  install-info    6.0.0.dfsg.1-3

Versions of packages ess recommends:
ii  r-base-core  3.3.2-1

Versions of packages ess suggests:
pn  jags       <none>
pn  julia      <none>
ii  pspp       0.8.5-4
pn  xlispstat  <none>

-- no debconf information

-- 
http://defun.work/

Reply via email to