[SCM] BOINC packaging branch, master, updated. debian/6.10.17+dfsg-3-163-g3a2aace

Steffen Moeller moeller at debian.org
Sun Jan 16 23:43:20 UTC 2011


The following commit has been merged in the master branch:
commit 1a8c75c7745294d78dc88d0da658042a2fa9a1fd
Author: Steffen Moeller <moeller at debian.org>
Date:   Mon Jan 17 00:02:44 2011 +0100

    Fixing #600134 on renice -n

diff --git a/debian/boinc-client.init b/debian/boinc-client.init
index 676e483..e63323b 100644
--- a/debian/boinc-client.init
+++ b/debian/boinc-client.init
@@ -139,7 +139,9 @@ chrt_many()
    shift 3
    for i in "$@"; do
      chrt -p $POLICY $PRIO $i || return
-     renice -n $NICE -p $i
+     # increasing compatibility with older versions of renice
+     # in reaction to bug report #600134
+     renice $NICE -p $i > /dev/null || renice -n $NICE -p $i
    done
 }
 
diff --git a/debian/changelog b/debian/changelog
index ac66313..ca907dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,12 @@
-boinc (6.12.8+dfsg-5) UNRELEASED; urgency=low
+boinc (6.12.8+dfsg-6) experimental; urgency=low
+
+  * Explicitly giving binary-arch target (Closes: #609428).
+  * Helping init file to remain compatible with renice
+    that does not understand "-n" (as in sarge) (Closes: #600134).
+
+ -- Steffen Moeller <moeller at debian.org>  Sun, 09 Jan 2011 15:00:14 +0100
+
+boinc (6.12.8+dfsg-5) experimental; urgency=low
 
   * Added python to build dependencies (Closes: #608895).
   * Renamed package 'boinc-server' to 'boinc-server-maker'.
@@ -23,7 +31,7 @@ boinc (6.12.8+dfsg-3) experimental; urgency=low
 
 boinc (6.12.8+dfsg-2) experimental; urgency=low
 
-  * Developing the Server package further.
+  * Developing the server package further.
   * Added libtool as build dependency (Closes: #608509).
 
  -- Steffen Moeller <moeller at debian.org>  Sun, 26 Dec 2010 01:14:18 +0100

-- 
BOINC packaging



More information about the pkg-boinc-commits mailing list