[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-25 Thread Launchpad Bug Tracker
This bug was fixed in the package pm-utils - 1.4.1-13ubuntu0.2 --- pm-utils (1.4.1-13ubuntu0.2) trusty-proposed; urgency=medium * 17-fix-wireless-hook.patch: Some drivers actually do have an "enable" attribute, so accept both "enable" and "enabled". Also invert the logic

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-17 Thread Dirk F
Confirmed fix with 1.4.1-13ubuntu0.2, other details per original report. ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to pm-utils in Ubuntu.

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-16 Thread Mathew Hodson
** Changed in: pm-utils (Ubuntu Trusty) Importance: Undecided => High -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to pm-utils in Ubuntu. https://bugs.launchpad.net/bugs/1544612 Title: Missing fix for 1299975 claimed to be in

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-16 Thread Brian Murray
Hello Dirk, or anyone else affected, Accepted pm-utils into trusty-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/pm- utils/1.4.1-13ubuntu0.2 in a few hours, and then in the -proposed repository. Please help us by testing this new package. See

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-16 Thread Martin Pitt
> Hence my original proposed test for the file's existence. This isn't very robust, as it blows up if the glob expands to more than one file. That also Should Not Happen™, but I prefer to just quiesce the error. I fixed that in http://anonscm.debian.org/cgit/collab-maint/pm-

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-15 Thread Dirk F
Thanks, Martin. But, the absence of the enable[d] file is apparently a legitimate case, and your patch as it stands causes an undesirable error message in the PM log in that case, such as: cat: /sys/class/net/wlan0/device/enable*: No such file or directory Hence my original proposed test for

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-15 Thread Launchpad Bug Tracker
This bug was fixed in the package pm-utils - 1.4.1-16 --- pm-utils (1.4.1-16) unstable; urgency=medium * 17-fix-wireless-hook.patch: Some drivers actually do have an "enable" attribute, so accept both "enable" and "enabled". Also invert the logic so that if neither

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-15 Thread Bug Watch Updater
** Changed in: pm-utils (Debian) Status: Unknown => Fix Released -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to pm-utils in Ubuntu. https://bugs.launchpad.net/bugs/1544612 Title: Missing fix for 1299975 claimed to be in

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-15 Thread Martin Pitt
I uploaded the adjusted patch to the trusty-proposed SRU queue. ** Tags added: hw-specific ** Changed in: pm-utils (Ubuntu Trusty) Status: New => In Progress -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to pm-utils in Ubuntu.

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-15 Thread Martin Pitt
Thanks Dirk! I committed http://anonscm.debian.org/cgit/collab-maint/pm- utils.git/commit/?id=1b7600eca which is more liberal about the spelling now. ** Changed in: pm-utils (Ubuntu) Status: In Progress => Fix Committed -- You received this bug notification because you are a member of

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-15 Thread Martin Pitt
** Bug watch added: Debian Bug tracker #773647 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773647 ** Also affects: pm-utils (Debian) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773647 Importance: Unknown Status: Unknown ** Changed in: pm-utils (Ubuntu)

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-13 Thread Dirk F
Actually, this is more tricky than I thought. The validity of the bug 1299975 patch depends on which wireless driver is in use, apparently reflecting some crufty aspects of sysfs and its driver implementations. In bug 1299975, on rereading, the reporter (savage) says that with an Intel wireless

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-12 Thread Brian Murray
** Tags added: regression-release ** Changed in: pm-utils (Ubuntu) Assignee: (unassigned) => Martin Pitt (pitti) ** Tags removed: trusty ** Tags added: rls-x-incomingtrusty ** Tags removed: rls-x-incomingtrusty ** Tags added: rls-x-incoming trusty -- You received this bug notification

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-11 Thread Dirk F
NB The mod identified in the line from the automated package report Package: pm-utils 1.4.1-13ubuntu0.1 [modified: usr/lib/pm-utils/pm-functions] arises from my manually applied fix for https://bugs.freedesktop.org/show_bug.cgi?id=52572. It would be good to get that into the repos too.

[Bug 1544612] Re: Missing fix for 1299975 claimed to be in pm-utils (1.4.1-13ubuntu0.1)

2016-02-11 Thread Brian Murray
The patch, as one can see athttps://launchpadlibrarian.net/179682498/pm- utils_1.4.1-13_1.4.1-13ubuntu0.1.diff.gz, actually makes the following change: +-[ "$(cat /sys/class/net/$1/device/enable)" = "1" ] || return 1 ++[ "$(cat /sys/class/net/$1/device/enabled)" = "1" ] || return 1 So