It doesn't seem complicated, and with Simon's help I was able to uninstall older versions of Thunderbird.
I'm using WAPT-fixup with these lines of code
Code: Select all
def install():
prefixpkg = control.package.split('-',1)[0]
java8 = WAPT.is_installed('%s-java8'% prefixpkg)
if java8 and Version(java8.version) == Version('8.121-24'):
WAPT.remove(java8.package)
WAPT.install('%s-java8'% prefixpkg)Any idea what the problem is?
