pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/chat/climm Update to 0.6.3. Zillions of bug fixes, se...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/15732a2bf912
branches:  trunk
changeset: 549658:15732a2bf912
user:      snj <snj%pkgsrc.org@localhost>
date:      Thu Nov 06 19:59:04 2008 +0000

description:
Update to 0.6.3.  Zillions of bug fixes, see the included ChangeLog for
details.

diffstat:

 chat/climm/Makefile         |   6 +---
 chat/climm/distinfo         |   9 +++----
 chat/climm/patches/patch-aa |  47 ---------------------------------------------
 3 files changed, 6 insertions(+), 56 deletions(-)

diffs (79 lines):

diff -r 3a0182d0b782 -r 15732a2bf912 chat/climm/Makefile
--- a/chat/climm/Makefile       Thu Nov 06 19:07:41 2008 +0000
+++ b/chat/climm/Makefile       Thu Nov 06 19:59:04 2008 +0000
@@ -1,8 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2008/06/12 02:14:16 joerg Exp $
-#
+# $NetBSD: Makefile,v 1.6 2008/11/06 19:59:04 snj Exp $
 
-DISTNAME=      climm-0.6.2
-#PKGREVISION=  2
+DISTNAME=      climm-0.6.3
 CATEGORIES=    chat
 MASTER_SITES=  http://www.climm.org/source/
 EXTRACT_SUFX=  .tgz
diff -r 3a0182d0b782 -r 15732a2bf912 chat/climm/distinfo
--- a/chat/climm/distinfo       Thu Nov 06 19:07:41 2008 +0000
+++ b/chat/climm/distinfo       Thu Nov 06 19:59:04 2008 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2008/03/01 21:14:11 mjl Exp $
+$NetBSD: distinfo,v 1.3 2008/11/06 19:59:04 snj Exp $
 
-SHA1 (climm-0.6.2.tgz) = 42ab55aa576a9ab0b51d83b38dc06af1a5467941
-RMD160 (climm-0.6.2.tgz) = 7a52b4d26456c1068707e5cc3bafdbad31a28e2a
-Size (climm-0.6.2.tgz) = 1190182 bytes
-SHA1 (patch-aa) = e5a5fea34fd165efe5f91e71a1c9cd9cb4a7cb84
+SHA1 (climm-0.6.3.tgz) = ea4a17d4ad86f25719957ca906dd9d46e00caaa9
+RMD160 (climm-0.6.3.tgz) = 849fe9185bb93d94ffd18289d837f4c51061192b
+Size (climm-0.6.3.tgz) = 1189460 bytes
diff -r 3a0182d0b782 -r 15732a2bf912 chat/climm/patches/patch-aa
--- a/chat/climm/patches/patch-aa       Thu Nov 06 19:07:41 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2007/11/28 11:45:34 mjl Exp $
-
---- src/os_unix.c.orig 2007-11-28 11:58:20.000000000 +0100
-+++ src/os_unix.c      2007-11-28 12:13:49.000000000 +0100
-@@ -17,6 +17,12 @@
- #include <ctype.h>
- #endif
- 
-+#ifndef MAXINT
-+#include <limits.h>
-+#include <utmpx.h>
-+#define MAXINT INT_MAX
-+#endif
-+
- static int console_idle (time_t now, struct utmp *u)
- {
-     struct stat sbuf;
-@@ -43,7 +49,7 @@
- */
- UDWORD os_DetermineIdleTime (time_t now, time_t last)
- {
--    struct utmp *u;
-+    struct utmpx *u;
-     struct passwd *pass;
-     uid_t uid;
-     int tmp, min = MAXINT;
-@@ -54,9 +60,8 @@
-     if (!pass)
-         return -1;
- 
--    utmpname (UTMP_FILE);
--    setutent();
--    while ((u = getutent()))
-+    setutxent();
-+    while ((u = getutxent()))
-     {
-         if (u->ut_type != USER_PROCESS)
-             continue;
-@@ -67,7 +72,7 @@
-         tmp = console_idle (now, u);
-         min = (tmp < min) ? tmp : min ;
-     }
--    endutent();
-+    endutxent();
-     if (min == MAXINT || now - last < min)
-         min = now - last;
-     return min;



Home | Main Index | Thread Index | Old Index