Re: GARNOME 0.26.0 is OUT!
- From: Emilio Jesús Gallego Arias <egallego telefonica net>
- To: Jeff Waugh <jdub perkypants org>
- Cc: "garnome-list gnome org" <garnome-list gnome org>
- Subject: Re: GARNOME 0.26.0 is OUT!
- Date: Sun, 31 Aug 2003 06:26:12 +0200
Hope this help!
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/abiword/Makefile garnome-0.26.0-ne/gnome/abiword/Makefile
--- garnome-0.26.0/gnome/abiword/Makefile Sun Aug 31 04:29:06 2003
+++ garnome-0.26.0-ne/gnome/abiword/Makefile Sun Aug 31 06:14:40 2003
@@ -1,5 +1,5 @@
GARNAME = abiword
-GARVERSION = 1.99.3
+GARVERSION = 1.99.5
CATEGORIES = gnome
DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/abiword/checksums garnome-0.26.0-ne/gnome/abiword/checksums
--- garnome-0.26.0/gnome/abiword/checksums Sun Aug 31 04:29:06 2003
+++ garnome-0.26.0-ne/gnome/abiword/checksums Sun Aug 31 06:14:39 2003
@@ -1 +1 @@
-b5637c9bc95ae77aafdac24249787264 download/abiword-1.99.3.tar.bz2
+4b6fac4f358c0e83ffdd190260d9b6c4 download/abiword-1.99.5.tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/firestarter/Makefile garnome-0.26.0-ne/gnome/firestarter/Makefile
--- garnome-0.26.0/gnome/firestarter/Makefile Sun Aug 31 04:29:07 2003
+++ garnome-0.26.0-ne/gnome/firestarter/Makefile Sun Aug 31 06:14:39 2003
@@ -1,7 +1,8 @@
GARNAME = firestarter
-GARVERSION = 0.9.1
+GARVERSION = 0.9.2
CATEGORIES = gnome
DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz
+PATCHFILES = firestarter-kernel-2.6.patch
MASTER_SITES = http://dl.sourceforge.net/firestarter/
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/firestarter/checksums garnome-0.26.0-ne/gnome/firestarter/checksums
--- garnome-0.26.0/gnome/firestarter/checksums Sun Aug 31 04:29:07 2003
+++ garnome-0.26.0-ne/gnome/firestarter/checksums Sun Aug 31 06:14:39 2003
@@ -1 +1,2 @@
-d2b2b22182a340e2bd06a94d4800d26c download/firestarter-0.9.1.tar.gz
+68b7b18663581fd20bb434cee4bbcc1a download/firestarter-0.9.2.tar.gz
+f6dc39a662681022807624031063fcae download/firestarter-kernel-2.6.patch
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/firestarter/files/firestarter-kernel-2.6.patch garnome-0.26.0-ne/gnome/firestarter/files/firestarter-kernel-2.6.patch
--- garnome-0.26.0/gnome/firestarter/files/firestarter-kernel-2.6.patch Thu Jan 1 01:00:00 1970
+++ garnome-0.26.0-ne/gnome/firestarter/files/firestarter-kernel-2.6.patch Sun Aug 31 06:19:27 2003
@@ -0,0 +1,44 @@
+--- firestarter/src/util.c 2003-06-12 20:50:21.000000000 +0300
++++ firestarter/src/util.c 2003-08-12 20:18:57.000000000 +0300
+@@ -85,13 +85,14 @@
+ }
+
+ /* [ detect_netfilter ]
+- * Return true if Linux 2.4 or 2.5 kernel found
++ * Return true if kernel supports netfilter (Linux 2.4 and newer)
+ */
+ gboolean
+ detect_netfilter (void)
+ {
+ FILE *f;
+ gchar buf[512];
++ char *ver;
+
+ /* The detection is only done once */
+ static gint detected = 0;
+@@ -112,15 +113,17 @@
+ result = TRUE;
+ } else {
+ while (fgets (buf, 512, f) != NULL) {
+- if ((strstr (buf, " 2.4.") != NULL) || (strstr (buf, " 2.5.") != NULL)) {
+- g_print ("NETFILTER detected\n");
+-
+- if (access("/sbin/modprobe", R_OK) == 0)
+- system ("/sbin/modprobe --autoclean ip_tables");
+- else
+- system ("`which modprobe` --autoclean ip_tables");
++ if (strstr (buf, "2.") != NULL){
++ ver = strstr (buf, "2.");
++ if(ver[2] >= '4') {
++ g_print ("NETFILTER detected\n");
++ if (access("/sbin/modprobe", R_OK) == 0)
++ system ("/sbin/modprobe --autoclean ip_tables");
++ else
++ system ("`which modprobe` --autoclean ip_tables");
+
+- result = TRUE;
++ result = TRUE;
++ }
+ }
+ }
+ fclose (f);
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/gaim/Makefile garnome-0.26.0-ne/gnome/gaim/Makefile
--- garnome-0.26.0/gnome/gaim/Makefile Sun Aug 31 04:29:06 2003
+++ garnome-0.26.0-ne/gnome/gaim/Makefile Sun Aug 31 06:14:38 2003
@@ -1,5 +1,5 @@
GARNAME = gaim
-GARVERSION = 0.66
+GARVERSION = 0.67
CATEGORIES = gnome
DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/gaim/checksums garnome-0.26.0-ne/gnome/gaim/checksums
--- garnome-0.26.0/gnome/gaim/checksums Sun Aug 31 04:29:06 2003
+++ garnome-0.26.0-ne/gnome/gaim/checksums Sun Aug 31 06:14:38 2003
@@ -1 +1 @@
-80c52fc8c969a65ea7bbd6444142fe5f download/gaim-0.66.tar.bz2
+1b28da4a480e2217f0b653bb95a5e4c5 download/gaim-0.67.tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/gkrellm/Makefile garnome-0.26.0-ne/gnome/gkrellm/Makefile
--- garnome-0.26.0/gnome/gkrellm/Makefile Sun Aug 31 04:29:09 2003
+++ garnome-0.26.0-ne/gnome/gkrellm/Makefile Sun Aug 31 06:14:38 2003
@@ -1,5 +1,5 @@
GARNAME = gkrellm
-GARVERSION = 2.1.14
+GARVERSION = 2.1.15
CATEGORIES = gnome
DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/gkrellm/checksums garnome-0.26.0-ne/gnome/gkrellm/checksums
--- garnome-0.26.0/gnome/gkrellm/checksums Sun Aug 31 04:29:09 2003
+++ garnome-0.26.0-ne/gnome/gkrellm/checksums Sun Aug 31 06:14:38 2003
@@ -1 +1 @@
-55644afe628dc345d90d022d8ae7ca99 download/gkrellm-2.1.14.tar.bz2
+ee113c2ca99084b31980896308581765 download/gkrellm-2.1.15.tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/pan/Makefile garnome-0.26.0-ne/gnome/pan/Makefile
--- garnome-0.26.0/gnome/pan/Makefile Sun Aug 31 04:29:10 2003
+++ garnome-0.26.0-ne/gnome/pan/Makefile Sun Aug 31 06:14:38 2003
@@ -1,5 +1,5 @@
GARNAME = pan
-GARVERSION = 0.14.0.90
+GARVERSION = 0.14.0.96
CATEGORIES = gnome
DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/pan/checksums garnome-0.26.0-ne/gnome/pan/checksums
--- garnome-0.26.0/gnome/pan/checksums Sun Aug 31 04:29:10 2003
+++ garnome-0.26.0-ne/gnome/pan/checksums Sun Aug 31 06:14:37 2003
@@ -1 +1 @@
-59612bf2551650c0060b214f9742a105 download/pan-0.14.0.90.tar.bz2
+352ad0d01b2e4940c2b7e8a844c6fc78 download/pan-0.14.0.96.tar.bz2
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/xchat/Makefile garnome-0.26.0-ne/gnome/xchat/Makefile
--- garnome-0.26.0/gnome/xchat/Makefile Sun Aug 31 04:29:08 2003
+++ garnome-0.26.0-ne/gnome/xchat/Makefile Sun Aug 31 06:14:37 2003
@@ -1,7 +1,8 @@
GARNAME = xchat
-GARVERSION = 2.0.3
+GARVERSION = 2.0.4
CATEGORIES = gnome
DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2
+PATCHFILES = xc204-fixperlui.diff
MASTER_SITES = http://xchat.org/files/source/2.0/
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/xchat/checksums garnome-0.26.0-ne/gnome/xchat/checksums
--- garnome-0.26.0/gnome/xchat/checksums Sun Aug 31 04:29:08 2003
+++ garnome-0.26.0-ne/gnome/xchat/checksums Sun Aug 31 06:14:37 2003
@@ -1 +1,2 @@
-8a7a981bf2401e09efdfe278713a2c6c download/xchat-2.0.3.tar.bz2
+bd987cd3b49cc16e875cfd8cb9b77c29 download/xchat-2.0.4.tar.bz2
+21dd9fea251bf505cfaaf4c555f9bd27 download/xc204-fixperlui.diff
diff -Nur --exclude=RCS --exclude=CVS --exclude=SCCS --exclude=BitKeeper --exclude=ChangeSet garnome-0.26.0/gnome/xchat/files/xc204-fixperlui.diff garnome-0.26.0-ne/gnome/xchat/files/xc204-fixperlui.diff
--- garnome-0.26.0/gnome/xchat/files/xc204-fixperlui.diff Thu Jan 1 01:00:00 1970
+++ garnome-0.26.0-ne/gnome/xchat/files/xc204-fixperlui.diff Sun Aug 31 06:19:40 2003
@@ -0,0 +1,11 @@
+--- xchat-2.0.4/plugins/perl/perl.c 2003-05-24 19:52:24.000000000 +1000
++++ xchat-2.0.4p1/plugins/perl/perl.c 2003-08-03 03:33:28.000000000 +1000
+@@ -619,7 +619,7 @@
+ {
+ nick = xchat_list_str (ph, list, "nick");
+
+- if (xchat_nickcmp (ph, (char *)nick, (char *)find_nick))
++ if (xchat_nickcmp (ph, (char *)nick, (char *)find_nick) == 0)
+ {
+ XST_mPV (i, nick);
+ i++;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]