Activity log for bug #1597537

Date Who What changed Old value New value Message
2016-06-29 21:58:21 Bill Scales bug added bug
2016-06-29 22:16:25 Steve Langasek update-notifier (Ubuntu): importance Undecided High
2016-06-29 22:16:25 Steve Langasek update-notifier (Ubuntu): status New Triaged
2016-06-29 22:16:25 Steve Langasek update-notifier (Ubuntu): assignee Brian Murray (brian-murray)
2016-07-11 22:26:25 Launchpad Janitor branch linked lp:update-notifier
2016-07-11 23:46:04 Launchpad Janitor update-notifier (Ubuntu): status Triaged Fix Released
2017-01-03 17:10:07 Brian Murray nominated for series Ubuntu Xenial
2017-01-03 17:10:07 Brian Murray bug task added update-notifier (Ubuntu Xenial)
2017-01-03 17:10:18 Brian Murray update-notifier (Ubuntu Xenial): status New Triaged
2017-01-03 17:10:21 Brian Murray update-notifier (Ubuntu Xenial): importance Undecided High
2017-01-19 18:45:24 Erich E. Hoover bug added subscriber Erich E. Hoover
2017-02-24 08:19:56 Jani Uusitalo bug added subscriber Jani Uusitalo
2017-08-11 19:02:19 Brian Murray description Release: $ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 Pacakge: $ apt-cache policy update-notifier update-notifier: Installed: 3.168 Candidate: 3.168 Version table: *** 3.168 500 500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages 100 /var/lib/dpkg/status What should happen: $/usr/lib/update-notifier$ /usr/lib/update-notifier/apt-check -p wine-devel-amd64 wine-devel google-chrome-stable winehq-devel wine-devel-i386 What actually happened: $/usr/lib/update-notifier/apt-check -p E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Whats wrong: apt_check.py line 143: ignored = ul._is_ignored_phased_update(aptcache[pkg.name]) needs to use a full package name that includes the arch: ignored = ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)]) There are many other reports of this problem - the suggested 'solution' in many cases is to run package manager/apt to install all the updates which then 'fixes' the problem until the next update for wine becomes available. https://bugs.launchpad.net/pipelight/+bug/1318321 http://askubuntu.com/questions/409243/update-notifier-doesnt-work-cache-issue https://www.kubuntuforums.net/showthread.php?64504-Update-notifier-doesn-t-work-cache-issue http://askubuntu.com/questions/581480/unknown-error-class-keyerror-the-cache-has-no-package-named-wine-stagin http://askubuntu.com/questions/594888/how-can-i-resolve-repeated-package-dependency-error-involving-wine-staging-i38 http://ubuntuforums.org/showthread.php?t=2222677 [Test Case] 1) wget https://dl.winehq.org/wine-builds/Release.key 2) sudo apt-key add Release.key 3) sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/' 4) sudo apt-get install wine-devel-i386=2.10.0~xenial 5) /usr/lib/update-notifier/apt-check -p 6) Observe the following crash: E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Original Description -------------------- Release: $ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 Pacakge: $ apt-cache policy update-notifier update-notifier:   Installed: 3.168   Candidate: 3.168   Version table:  *** 3.168 500         500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages         100 /var/lib/dpkg/status What should happen: $/usr/lib/update-notifier$ /usr/lib/update-notifier/apt-check -p wine-devel-amd64 wine-devel google-chrome-stable winehq-devel wine-devel-i386 What actually happened: $/usr/lib/update-notifier/apt-check -p E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Whats wrong: apt_check.py line 143: ignored = ul._is_ignored_phased_update(aptcache[pkg.name]) needs to use a full package name that includes the arch: ignored = ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)]) There are many other reports of this problem - the suggested 'solution' in many cases is to run package manager/apt to install all the updates which then 'fixes' the problem until the next update for wine becomes available. https://bugs.launchpad.net/pipelight/+bug/1318321 http://askubuntu.com/questions/409243/update-notifier-doesnt-work-cache-issue https://www.kubuntuforums.net/showthread.php?64504-Update-notifier-doesn-t-work-cache-issue http://askubuntu.com/questions/581480/unknown-error-class-keyerror-the-cache-has-no-package-named-wine-stagin http://askubuntu.com/questions/594888/how-can-i-resolve-repeated-package-dependency-error-involving-wine-staging-i38 http://ubuntuforums.org/showthread.php?t=2222677
2017-08-11 19:03:01 Brian Murray description [Test Case] 1) wget https://dl.winehq.org/wine-builds/Release.key 2) sudo apt-key add Release.key 3) sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/' 4) sudo apt-get install wine-devel-i386=2.10.0~xenial 5) /usr/lib/update-notifier/apt-check -p 6) Observe the following crash: E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Original Description -------------------- Release: $ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 Pacakge: $ apt-cache policy update-notifier update-notifier:   Installed: 3.168   Candidate: 3.168   Version table:  *** 3.168 500         500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages         100 /var/lib/dpkg/status What should happen: $/usr/lib/update-notifier$ /usr/lib/update-notifier/apt-check -p wine-devel-amd64 wine-devel google-chrome-stable winehq-devel wine-devel-i386 What actually happened: $/usr/lib/update-notifier/apt-check -p E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Whats wrong: apt_check.py line 143: ignored = ul._is_ignored_phased_update(aptcache[pkg.name]) needs to use a full package name that includes the arch: ignored = ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)]) There are many other reports of this problem - the suggested 'solution' in many cases is to run package manager/apt to install all the updates which then 'fixes' the problem until the next update for wine becomes available. https://bugs.launchpad.net/pipelight/+bug/1318321 http://askubuntu.com/questions/409243/update-notifier-doesnt-work-cache-issue https://www.kubuntuforums.net/showthread.php?64504-Update-notifier-doesn-t-work-cache-issue http://askubuntu.com/questions/581480/unknown-error-class-keyerror-the-cache-has-no-package-named-wine-stagin http://askubuntu.com/questions/594888/how-can-i-resolve-repeated-package-dependency-error-involving-wine-staging-i38 http://ubuntuforums.org/showthread.php?t=2222677 [Test Case] 1) wget https://dl.winehq.org/wine-builds/Release.key 2) sudo apt-key add Release.key 3) sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/' 4) sudo apt-get update 5) sudo apt-get install wine-devel-i386=2.10.0~xenial 6) /usr/lib/update-notifier/apt-check -p 7) Observe the following crash: E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Original Description -------------------- Release: $ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 Pacakge: $ apt-cache policy update-notifier update-notifier:   Installed: 3.168   Candidate: 3.168   Version table:  *** 3.168 500         500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages         100 /var/lib/dpkg/status What should happen: $/usr/lib/update-notifier$ /usr/lib/update-notifier/apt-check -p wine-devel-amd64 wine-devel google-chrome-stable winehq-devel wine-devel-i386 What actually happened: $/usr/lib/update-notifier/apt-check -p E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Whats wrong: apt_check.py line 143: ignored = ul._is_ignored_phased_update(aptcache[pkg.name]) needs to use a full package name that includes the arch: ignored = ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)]) There are many other reports of this problem - the suggested 'solution' in many cases is to run package manager/apt to install all the updates which then 'fixes' the problem until the next update for wine becomes available. https://bugs.launchpad.net/pipelight/+bug/1318321 http://askubuntu.com/questions/409243/update-notifier-doesnt-work-cache-issue https://www.kubuntuforums.net/showthread.php?64504-Update-notifier-doesn-t-work-cache-issue http://askubuntu.com/questions/581480/unknown-error-class-keyerror-the-cache-has-no-package-named-wine-stagin http://askubuntu.com/questions/594888/how-can-i-resolve-repeated-package-dependency-error-involving-wine-staging-i38 http://ubuntuforums.org/showthread.php?t=2222677
2017-08-11 19:16:49 Brian Murray description [Test Case] 1) wget https://dl.winehq.org/wine-builds/Release.key 2) sudo apt-key add Release.key 3) sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/' 4) sudo apt-get update 5) sudo apt-get install wine-devel-i386=2.10.0~xenial 6) /usr/lib/update-notifier/apt-check -p 7) Observe the following crash: E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Original Description -------------------- Release: $ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 Pacakge: $ apt-cache policy update-notifier update-notifier:   Installed: 3.168   Candidate: 3.168   Version table:  *** 3.168 500         500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages         100 /var/lib/dpkg/status What should happen: $/usr/lib/update-notifier$ /usr/lib/update-notifier/apt-check -p wine-devel-amd64 wine-devel google-chrome-stable winehq-devel wine-devel-i386 What actually happened: $/usr/lib/update-notifier/apt-check -p E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Whats wrong: apt_check.py line 143: ignored = ul._is_ignored_phased_update(aptcache[pkg.name]) needs to use a full package name that includes the arch: ignored = ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)]) There are many other reports of this problem - the suggested 'solution' in many cases is to run package manager/apt to install all the updates which then 'fixes' the problem until the next update for wine becomes available. https://bugs.launchpad.net/pipelight/+bug/1318321 http://askubuntu.com/questions/409243/update-notifier-doesnt-work-cache-issue https://www.kubuntuforums.net/showthread.php?64504-Update-notifier-doesn-t-work-cache-issue http://askubuntu.com/questions/581480/unknown-error-class-keyerror-the-cache-has-no-package-named-wine-stagin http://askubuntu.com/questions/594888/how-can-i-resolve-repeated-package-dependency-error-involving-wine-staging-i38 http://ubuntuforums.org/showthread.php?t=2222677 [Test Case] 1) wget https://dl.winehq.org/wine-builds/Release.key 2) sudo apt-key add Release.key 3) sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/' 4) sudo apt-get update 5) sudo apt-get install wine-devel-i386=2.10.0~xenial 6) /usr/lib/update-notifier/apt-check -p 7) Observe the following crash: E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") With the version of the package from proposed you'll be able to run apt-check -p with no Error being reported. Original Description -------------------- Release: $ lsb_release -rd Description: Ubuntu 16.04 LTS Release: 16.04 Pacakge: $ apt-cache policy update-notifier update-notifier:   Installed: 3.168   Candidate: 3.168   Version table:  *** 3.168 500         500 http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages         100 /var/lib/dpkg/status What should happen: $/usr/lib/update-notifier$ /usr/lib/update-notifier/apt-check -p wine-devel-amd64 wine-devel google-chrome-stable winehq-devel wine-devel-i386 What actually happened: $/usr/lib/update-notifier/apt-check -p E: Unknown Error: '<class 'KeyError'>' ("The cache has no package named 'wine-devel-i386'") Whats wrong: apt_check.py line 143: ignored = ul._is_ignored_phased_update(aptcache[pkg.name]) needs to use a full package name that includes the arch: ignored = ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)]) There are many other reports of this problem - the suggested 'solution' in many cases is to run package manager/apt to install all the updates which then 'fixes' the problem until the next update for wine becomes available. https://bugs.launchpad.net/pipelight/+bug/1318321 http://askubuntu.com/questions/409243/update-notifier-doesnt-work-cache-issue https://www.kubuntuforums.net/showthread.php?64504-Update-notifier-doesn-t-work-cache-issue http://askubuntu.com/questions/581480/unknown-error-class-keyerror-the-cache-has-no-package-named-wine-stagin http://askubuntu.com/questions/594888/how-can-i-resolve-repeated-package-dependency-error-involving-wine-staging-i38 http://ubuntuforums.org/showthread.php?t=2222677
2017-08-11 19:17:01 Brian Murray update-notifier (Ubuntu Xenial): assignee Brian Murray (brian-murray)
2017-08-11 19:17:06 Brian Murray update-notifier (Ubuntu Xenial): status Triaged In Progress
2017-08-17 22:58:34 Brian Murray update-notifier (Ubuntu Xenial): status In Progress Fix Committed
2017-08-17 22:58:36 Brian Murray bug added subscriber Ubuntu Stable Release Updates Team
2017-08-17 22:58:40 Brian Murray bug added subscriber SRU Verification
2017-08-17 22:58:46 Brian Murray tags verification-needed verification-needed-xenial
2017-08-25 12:49:43 Jean-Baptiste Lallement tags verification-needed verification-needed-xenial verification-done verification-done-xenial
2017-08-28 14:10:51 Launchpad Janitor update-notifier (Ubuntu Xenial): status Fix Committed Fix Released
2017-08-28 14:10:54 Łukasz Zemczak removed subscriber Ubuntu Stable Release Updates Team