r795 - in /trunk/boinc/debian: changelog patches/201_fix_terminal_activity_detection.patch patches/series

fst at users.alioth.debian.org fst at users.alioth.debian.org
Sun Dec 30 21:36:50 UTC 2007


Author: fst
Date: Sun Dec 30 21:36:50 2007
New Revision: 795

URL: http://svn.debian.org/wsvn/pkg-boinc/?sc=1&rev=795
Log:
debian/patches/: Added 201_fix_terminal_activity_detection.patch to fix the
activity detection in terminal applications. (closes: #448982)

Added:
    trunk/boinc/debian/patches/201_fix_terminal_activity_detection.patch
Modified:
    trunk/boinc/debian/changelog
    trunk/boinc/debian/patches/series

Modified: trunk/boinc/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/changelog?rev=795&op=diff
==============================================================================
--- trunk/boinc/debian/changelog (original)
+++ trunk/boinc/debian/changelog Sun Dec 30 21:36:50 2007
@@ -1,17 +1,18 @@
 boinc (5.10.30-3) unstable; urgency=low
 
-  * NOT RELEASED YET
-
-  [ Frank S. Thomas ]
-  * debian/patches/: Renamed 201_missing_headers_for_gcc4.3.patch to
-    102_... because it has been applied upstream in r14436.
+  [ Frank S. Thomas ]
+  * debian/patches/:
+    - Renamed 201_missing_headers_for_gcc4.3.patch to 102_... because it has
+      been applied upstream in r14436.
+    - Added 201_fix_terminal_activity_detection.patch to fix the activity
+      detection in terminal applications. (closes: #448982)
   * debian/rules: Pass "LDFLAGS=-Wl,--as-needed" to configure in order to
     remove unnecessary library dependencies.
   * debian/boinc-client.postinst: Changed the default permission of the
     global_prefs_override.xml conffile from 0644 to 0664 so that that local
     preferences are saved when GUI RPCs are used to set them. (closes: #458007)
 
- -- Frank S. Thomas <fst at debian.org>  Sun, 30 Dec 2007 20:23:57 +0100
+ -- Frank S. Thomas <fst at debian.org>  Sun, 30 Dec 2007 22:31:28 +0100
 
 boinc (5.10.30-2) unstable; urgency=low
 

Added: trunk/boinc/debian/patches/201_fix_terminal_activity_detection.patch
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/patches/201_fix_terminal_activity_detection.patch?rev=795&op=file
==============================================================================
--- trunk/boinc/debian/patches/201_fix_terminal_activity_detection.patch (added)
+++ trunk/boinc/debian/patches/201_fix_terminal_activity_detection.patch Sun Dec 30 21:36:50 2007
@@ -1,0 +1,17 @@
+This patch fixes:
+http://bugs.debian.org/448982
+http://boinc.berkeley.edu/trac/ticket/463
+
+Index: boinc-5.10.30/client/hostinfo_unix.C
+===================================================================
+--- boinc-5.10.30.orig/client/hostinfo_unix.C
++++ boinc-5.10.30/client/hostinfo_unix.C
+@@ -956,7 +956,7 @@
+ bool HOST_INFO::users_idle(bool check_all_logins, double idle_time_to_run) {
+     time_t idle_time = time(0) - (long) (60 * idle_time_to_run);
+ 
+-    if (check_all_logins) {
++    if (!check_all_logins) {
+ #ifdef HAVE_UTMP_H
+         if (!all_logins_idle(idle_time)) return false;
+ #endif

Modified: trunk/boinc/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-boinc/trunk/boinc/debian/patches/series?rev=795&op=diff
==============================================================================
--- trunk/boinc/debian/patches/series (original)
+++ trunk/boinc/debian/patches/series Sun Dec 30 21:36:50 2007
@@ -4,3 +4,4 @@
 004_exclude_sea.patch
 101_fix_memory_detection_on_kfreebsd.patch
 102_missing_headers_for_gcc4.3.patch
+201_fix_terminal_activity_detection.patch




More information about the pkg-boinc-commits mailing list