[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#769065: marked as done (unblock: fatrace/0.9-1)



Your message dated Tue, 11 Nov 2014 08:09:14 +0100
with message-id <5461B61A.20004@thykier.net>
and subject line Re: Bug#769065: unblock: fatrace/0.9-1
has caused the Debian Bug report #769065,
regarding unblock: fatrace/0.9-1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
769065: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=769065
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

I recently noticed (through the autopkgtest regression [1]) that
fatrace's power-usage-report got broken with the latest powertop 2.6.
So I made a new upstream release 0.9 which adjusts the powertop output
format parsing accordingly. It's just a two line diff (complete
debdiff attached, there no build system noise etc.). Both the
automatic and a manual test are happy again now [2].

Thanks for considering,

Martin

unblock fatrace/0.9-1


[1] https://jenkins.qa.ubuntu.com/job/vivid-adt-fatrace/2/ARCH=i386,label=adt/console
[2] https://jenkins.qa.ubuntu.com/job/vivid-adt-fatrace/3/ARCH=i386,label=adt/console
-- 
Martin Pitt                        | http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)
diff -Nru fatrace-0.8/debian/changelog fatrace-0.9/debian/changelog
--- fatrace-0.8/debian/changelog	2014-09-23 16:07:44.000000000 +0200
+++ fatrace-0.9/debian/changelog	2014-11-07 09:19:03.000000000 +0100
@@ -1,3 +1,10 @@
+fatrace (0.9-1) unstable; urgency=medium
+
+  * New upstream release:
+    - power-usage-report: Adjust parsing to also work for powertop 2.6.
+
+ -- Martin Pitt <mpitt@debian.org>  Fri, 07 Nov 2014 09:18:56 +0100
+
 fatrace (0.8-1) unstable; urgency=medium
 
   * New upstream bug fix release: Fix the "Value too large for defined data
diff -Nru fatrace-0.8/NEWS fatrace-0.9/NEWS
--- fatrace-0.8/NEWS	2014-09-23 15:56:19.000000000 +0200
+++ fatrace-0.9/NEWS	2014-11-07 09:17:24.000000000 +0100
@@ -1,3 +1,7 @@
+0.9 (2014-11-07)
+----------------
+ - power-usage-report: Adjust parsing to also work for powertop 2.6.
+
 0.8 (2014-09-23)
 ----------------
  - The previous O_LARGEFILE change to fix "Value too large for defined data
diff -Nru fatrace-0.8/power-usage-report fatrace-0.9/power-usage-report
--- fatrace-0.8/power-usage-report	2014-09-23 15:56:19.000000000 +0200
+++ fatrace-0.9/power-usage-report	2014-11-07 09:17:24.000000000 +0100
@@ -166,7 +166,7 @@
 
     for (search_header, print_header) in blocks:
         # skip until search_header
-        while i < len(lines) and not lines[i].lower().startswith('**' + search_header):
+        while i < len(lines) and not search_header in lines[i].lower():
             i += 1
         i += 1  # skip header
         # skip empty lines
@@ -174,7 +174,7 @@
             i += 1
 
         print('====== %s ======' % print_header)
-        while i < len(lines) and lines[i]:
+        while i < len(lines) and lines[i] and not lines[i].startswith('_____'):
             print(lines[i])
             i += 1
         print('')

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
On 2014-11-11 08:04, Martin Pitt wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian.org@packages.debian.org
> Usertags: unblock
> 
> I recently noticed (through the autopkgtest regression [1]) that
> fatrace's power-usage-report got broken with the latest powertop 2.6.
> So I made a new upstream release 0.9 which adjusts the powertop output
> format parsing accordingly. It's just a two line diff (complete
> debdiff attached, there no build system noise etc.). Both the
> automatic and a manual test are happy again now [2].
> 
> Thanks for considering,
> 
> Martin
> 
> unblock fatrace/0.9-1
> 
> 
> [...]

Unblocked, thanks.

And thanks for keeping the diff minimal. :)

~Niels

--- End Message ---

Reply to: