pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/x11/stalonetray Fix portability bug that caused spurio...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/52af4c2422db
branches:  trunk
changeset: 539891:52af4c2422db
user:      smb <smb%pkgsrc.org@localhost>
date:      Sat Mar 15 20:35:26 2008 +0000

description:
Fix portability bug that caused spurious error message on NetBSD (patch
reported upstream).

Update to newest upstream version.
0.7.6 news
- fix bug with sticky mode under Openbox
- fix bug with dissappearing window under WindowMaker (sf.net bug #1858069)
- fix layout bug which prevented tray to shrink properly
- fix resizing bug when grow gravity seemed to be ignored
- fix regression: KDE icons are collected at startup again
- fix focus model so that it (more-or-less) matches ICCM

0.7.5 news
- fix silly bug with window states (sticky works now)
- code cleanup in xembed implementation

0.7.4 news
- fix sample rc file (Debian bug #446899)
- fix fallback support mode for KDE icons (now KDE icons
  work in Xmonad)
- detect if stalonetrays` window is no longer toplevel
  and do not try to fix geometry (fixes excessive CPU
  usage as reported in Debian bug #444748)

0.7.3 news
- fix freedesktop.org icons support on amd64 (Debian bug #445056)

0.7.2 news
- fix typo in parameter name for maximal tray height (Debian bug #444717)

0.7.1 news:
- fix crash on invalid rc file (Debian bug #443543)
- fix occasional KDE icons dissapearance (sf.net bug #1676375)

0.7 release highlights:
- tinting and fuzzy edges
- layout improvements
- XEMBED imlementation fixes
- massive code cleanup

diffstat:

 x11/stalonetray/Makefile         |   4 ++--
 x11/stalonetray/distinfo         |   9 +++++----
 x11/stalonetray/patches/patch-pa |  14 ++++++++++++++
 3 files changed, 21 insertions(+), 6 deletions(-)

diffs (44 lines):

diff -r 6aff6aee31c3 -r 52af4c2422db x11/stalonetray/Makefile
--- a/x11/stalonetray/Makefile  Sat Mar 15 20:29:35 2008 +0000
+++ b/x11/stalonetray/Makefile  Sat Mar 15 20:35:26 2008 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2007/08/16 21:57:04 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2008/03/15 20:35:26 smb Exp $
 #
-DISTNAME=stalonetray-0.6.5
+DISTNAME=stalonetray-0.7.6
 CATEGORIES=x11
 MASTER_SITES=${MASTER_SITE_SOURCEFORGE:=stalonetray/}
 
diff -r 6aff6aee31c3 -r 52af4c2422db x11/stalonetray/distinfo
--- a/x11/stalonetray/distinfo  Sat Mar 15 20:29:35 2008 +0000
+++ b/x11/stalonetray/distinfo  Sat Mar 15 20:35:26 2008 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1 2007/08/04 13:44:21 smb Exp $
+$NetBSD: distinfo,v 1.2 2008/03/15 20:35:26 smb Exp $
 
-SHA1 (stalonetray-0.6.5.tar.gz) = dcfc0a96c90f56b259da7450860a17b14b829576
-RMD160 (stalonetray-0.6.5.tar.gz) = ee6ec9a7f462e6823b495d8cf0eba748ce458174
-Size (stalonetray-0.6.5.tar.gz) = 135304 bytes
+SHA1 (stalonetray-0.7.6.tar.gz) = 0900717162b2ea79ac0eb8f1f4e8f0d31e655c25
+RMD160 (stalonetray-0.7.6.tar.gz) = 5c58f6b5d7f9bc0ac9234f9b656031b5a7456798
+Size (stalonetray-0.7.6.tar.gz) = 172358 bytes
+SHA1 (patch-pa) = 70c1fa740edabf6b1057afe860102938785b393f
diff -r 6aff6aee31c3 -r 52af4c2422db x11/stalonetray/patches/patch-pa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/stalonetray/patches/patch-pa  Sat Mar 15 20:35:26 2008 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-pa,v 1.1 2008/03/15 20:35:26 smb Exp $
+
+--- src/settings.c.orig        2008-03-15 16:06:02.000000000 -0400
++++ src/settings.c     2008-03-15 16:06:34.000000000 -0400
+@@ -535,7 +535,8 @@
+       while (!feof(cfg)) {
+               lnum++;
+               if (fgets(buf, READ_BUF_SZ, cfg) == NULL) {
+-                      if (errno) ERR(("read error (%s)\n", strerror(errno)));
++                      if (ferror(cfg))
++                              ERR(("read error (%s)\n", strerror(errno)));
+                       break;
+               }
+ 



Home | Main Index | Thread Index | Old Index