Activity log for bug #1300991

Date Who What changed Old value New value Message
2014-04-01 20:29:39 iw2snl bug added bug
2014-04-01 20:39:10 iw2snl description 1)Description: Ubuntu 13.10 Release: 13.10 Note: Actually Kubuntu 13.10 2)auto-apt: Installed: 0.3.23 Candidate: 0.3.23 Version table: *** 0.3.23 0 500 http://md.archive.ubuntu.com/ubuntu/ saucy/universe amd64 Packages 100 /var/lib/dpkg/status 3) $ sudo auto-apt update $ sudo auto-apt updatedb Both commands should update the databases 4) $ sudo auto-apt update $ sudo auto-apt updatedb Both commands output: put: 0 files, 0 entries done (xx seconds) where xx is about 10 seconds. And, no update is performed. 5) The bug is caused by line 145 in /usr/bin/auto-apt sed -ne 's=^[[:space:]][[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | i.e. by the two trailing spaces in the beginning ^[[:space:]][[:space:]]*deb At least my /etc/apt/sources.list doesn't contain any trailing spaces, which causes the sed to return 0 sources and no update is performed by auto-apt. 6) A workaround (or maybe a fix) is to delete those [[:space:]][[:space:]]* so the line should look like sed -ne 's=^deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | Or, at least the first trailing space in case sources.list may actually contain any trailing spaces. 1)Description: Ubuntu 13.10 Release: 13.10 Note: Actually Kubuntu 13.10 2)auto-apt:   Installed: 0.3.23   Candidate: 0.3.23   Version table:  *** 0.3.23 0         500 http://md.archive.ubuntu.com/ubuntu/ saucy/universe amd64 Packages         100 /var/lib/dpkg/status 3) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands should update the databases 4) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands output: put: 0 files, 0 entries done (xx seconds) where xx is about 10 seconds. And, no update is performed. 5) The bug is caused by line 145 in /usr/bin/auto-apt  sed -ne 's=^[[:space:]][[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | i.e. by the one trailing space in the beginning ^[[:space:]][[:space:]]*deb At least my /etc/apt/sources.list doesn't contain any trailing spaces, which causes the sed to return 0 sources and no update is performed by auto-apt. 6) A workaround (or maybe a fix) is to delete the first trailing space [[:space:]] so the line should look like sed -ne 's=^[[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' |
2014-04-05 19:19:33 Launchpad Janitor auto-apt (Ubuntu): status New Confirmed
2014-04-05 19:19:37 Bruno Nova bug added subscriber Bruno Nova
2014-04-06 11:54:44 Bruno Nova branch linked lp:~brunonova/ubuntu/trusty/auto-apt/lp1300987_lp1300991
2014-05-01 10:28:11 Bruno Nova tags trusty
2014-05-01 10:44:38 Bruno Nova tags trusty saucy trusty
2014-05-01 11:09:33 Bruno Nova description 1)Description: Ubuntu 13.10 Release: 13.10 Note: Actually Kubuntu 13.10 2)auto-apt:   Installed: 0.3.23   Candidate: 0.3.23   Version table:  *** 0.3.23 0         500 http://md.archive.ubuntu.com/ubuntu/ saucy/universe amd64 Packages         100 /var/lib/dpkg/status 3) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands should update the databases 4) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands output: put: 0 files, 0 entries done (xx seconds) where xx is about 10 seconds. And, no update is performed. 5) The bug is caused by line 145 in /usr/bin/auto-apt  sed -ne 's=^[[:space:]][[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | i.e. by the one trailing space in the beginning ^[[:space:]][[:space:]]*deb At least my /etc/apt/sources.list doesn't contain any trailing spaces, which causes the sed to return 0 sources and no update is performed by auto-apt. 6) A workaround (or maybe a fix) is to delete the first trailing space [[:space:]] so the line should look like sed -ne 's=^[[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | [Impact] * auto-apt fails to update its local database of package information. - Due to this, auto-apt is unusable in Trusty (and Saucy). * The new version 0.3.24 fixes this bug, LP: #1300987 and a dpkg warning about an obsolete argument. [Test Case] * Run the commands 'sudo auto-apt update' and 'sudo auto-apt updatedb'. - With version 0.3.23, the local database is not updated and the commands print 'put: 0 files, 0 entries done (xx seconds)' or similar. - With the news version 0.3.24, the local database is successfully updated. The commands take a lot more time to complete and display more output. [Regression Potential] * auto-apt is already non-functional in Trusty (and Saucy), therefore there is no regression potential. [Other Info] * The original bug report for Saucy follows: 1)Description: Ubuntu 13.10 Release: 13.10 Note: Actually Kubuntu 13.10 2)auto-apt:   Installed: 0.3.23   Candidate: 0.3.23   Version table:  *** 0.3.23 0         500 http://md.archive.ubuntu.com/ubuntu/ saucy/universe amd64 Packages         100 /var/lib/dpkg/status 3) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands should update the databases 4) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands output: put: 0 files, 0 entries done (xx seconds) where xx is about 10 seconds. And, no update is performed. 5) The bug is caused by line 145 in /usr/bin/auto-apt  sed -ne 's=^[[:space:]][[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | i.e. by the one trailing space in the beginning ^[[:space:]][[:space:]]*deb At least my /etc/apt/sources.list doesn't contain any trailing spaces, which causes the sed to return 0 sources and no update is performed by auto-apt. 6) A workaround (or maybe a fix) is to delete the first trailing space [[:space:]] so the line should look like sed -ne 's=^[[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' |
2014-05-01 11:27:30 Bruno Nova description [Impact] * auto-apt fails to update its local database of package information. - Due to this, auto-apt is unusable in Trusty (and Saucy). * The new version 0.3.24 fixes this bug, LP: #1300987 and a dpkg warning about an obsolete argument. [Test Case] * Run the commands 'sudo auto-apt update' and 'sudo auto-apt updatedb'. - With version 0.3.23, the local database is not updated and the commands print 'put: 0 files, 0 entries done (xx seconds)' or similar. - With the news version 0.3.24, the local database is successfully updated. The commands take a lot more time to complete and display more output. [Regression Potential] * auto-apt is already non-functional in Trusty (and Saucy), therefore there is no regression potential. [Other Info] * The original bug report for Saucy follows: 1)Description: Ubuntu 13.10 Release: 13.10 Note: Actually Kubuntu 13.10 2)auto-apt:   Installed: 0.3.23   Candidate: 0.3.23   Version table:  *** 0.3.23 0         500 http://md.archive.ubuntu.com/ubuntu/ saucy/universe amd64 Packages         100 /var/lib/dpkg/status 3) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands should update the databases 4) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands output: put: 0 files, 0 entries done (xx seconds) where xx is about 10 seconds. And, no update is performed. 5) The bug is caused by line 145 in /usr/bin/auto-apt  sed -ne 's=^[[:space:]][[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | i.e. by the one trailing space in the beginning ^[[:space:]][[:space:]]*deb At least my /etc/apt/sources.list doesn't contain any trailing spaces, which causes the sed to return 0 sources and no update is performed by auto-apt. 6) A workaround (or maybe a fix) is to delete the first trailing space [[:space:]] so the line should look like sed -ne 's=^[[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | [Impact] * auto-apt fails to update its local database of package information.   - Due to this, auto-apt is unusable in Trusty (and Saucy). * The new version 0.3.24 fixes this bug, LP: #1300987 and a dpkg warning about an   obsolete argument. [Test Case] * Run the commands 'sudo auto-apt update' and 'sudo auto-apt updatedb'.   - With version 0.3.23, the local database is not updated and the commands print     'put: 0 files, 0 entries done (xx seconds)' or similar.   - With the new version 0.3.24, the local database is successfully updated. The     commands take a lot more time to complete and display more output. [Regression Potential] * auto-apt is already non-functional in Trusty (and Saucy), therefore there is no   regression potential. [Other Info] * The original bug report for Saucy follows: 1)Description: Ubuntu 13.10 Release: 13.10 Note: Actually Kubuntu 13.10 2)auto-apt:   Installed: 0.3.23   Candidate: 0.3.23   Version table:  *** 0.3.23 0         500 http://md.archive.ubuntu.com/ubuntu/ saucy/universe amd64 Packages         100 /var/lib/dpkg/status 3) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands should update the databases 4) $ sudo auto-apt update      $ sudo auto-apt updatedb Both commands output: put: 0 files, 0 entries done (xx seconds) where xx is about 10 seconds. And, no update is performed. 5) The bug is caused by line 145 in /usr/bin/auto-apt  sed -ne 's=^[[:space:]][[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' | i.e. by the one trailing space in the beginning ^[[:space:]][[:space:]]*deb At least my /etc/apt/sources.list doesn't contain any trailing spaces, which causes the sed to return 0 sources and no update is performed by auto-apt. 6) A workaround (or maybe a fix) is to delete the first trailing space [[:space:]] so the line should look like sed -ne 's=^[[:space:]]*deb[[:space:]][[:space:]]*\([^:[:space:]]*\):\([^[:space:]]*\)[[:space:]][[:space:]]*\([^[:space:]]*\)[[:space:]][[:space:]]*.*=\1 \2/dists/\3=p' |
2014-05-01 11:41:54 Bruno Nova auto-apt (Ubuntu): status Confirmed Fix Released
2014-05-01 12:27:12 Bruno Nova bug added subscriber Ubuntu Sponsors Team
2014-05-01 19:57:10 C de-Avillez nominated for series Ubuntu Trusty
2014-05-01 19:57:10 C de-Avillez bug task added auto-apt (Ubuntu Trusty)
2014-06-03 14:19:36 Robie Basak removed subscriber Ubuntu Sponsors Team
2014-06-03 14:20:00 Robie Basak auto-apt (Ubuntu Trusty): status New Triaged
2014-06-04 15:17:38 Stéphane Graber auto-apt (Ubuntu Trusty): status Triaged Fix Committed
2014-06-04 15:17:40 Stéphane Graber bug added subscriber Ubuntu Stable Release Updates Team
2014-06-04 15:17:43 Stéphane Graber bug added subscriber SRU Verification
2014-06-04 15:17:45 Stéphane Graber tags saucy trusty saucy trusty verification-needed
2014-06-05 21:56:17 Bruno Nova tags saucy trusty verification-needed saucy trusty verification-done
2014-06-17 11:50:10 Colin Watson removed subscriber Ubuntu Stable Release Updates Team
2014-06-17 11:55:21 Launchpad Janitor auto-apt (Ubuntu Trusty): status Fix Committed Fix Released