Hello,

The bug could be resolved by replacing the scripts
residing in /var/lib/dpkg/info/ with the attached versions.

In both scripts "python-meep" was replaced by "python3-meep".
python-meep seems to be removed now. With this the system seems
consistent again according to "apt-get upgrade". However, I am not sure
if this modification is ok as I am not aware of the mechanisms behind.

Best regards, thank you so much for you nice distro and have a very nice
Christmas,

Claus Fütterer



-- 
Dr. Claus Fütterer
Biophysical Tools GmbH
Leipzig/Germany
E-Mail: c.fuette...@biophysical-tools.de
Internet: www.biophysical-tools.de
Telefon: +49 (0)341/39298131
Lieferadresse: Heinrichstraße 35, 04317 Leipzig
Besucher/Visitors: Deutscher Platz 5b, 04103 Leipzig
https://www.youtube.com/watch?v=jDPycIETO7o


-----
Handelsregister: HRB 31187, Amtsgericht Leipzig, Heinrichstr. 35, 04317
Leipzig
Geschäftsführer: Dr. Claus Fütterer, Kateryna Prasol

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. If you have received this email in error please notify the
system manager. This message contains confidential information and is
intended only for the individual named. If you are not the named
addressee you should not disseminate, distribute or copy this e-mail.
Please notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system. If you are
not the intended recipient you are notified that disclosing, copying,
distributing or taking any action in reliance on the contents of this
information is strictly prohibited.
#!/bin/sh

set -e

if which pycompile >/dev/null 2>&1; then
  pycompile -p python3-meep
fi



#!/bin/sh

set -e

if which pyclean >/dev/null 2>&1; then
  pyclean -p python3-meep 
else
  dpkg -L python3-meep | grep \.py$ | while read file
  do  
    rm -f "${file}"[co] >/dev/null
    done
fi



Reply via email to