Gentoo Archives: gentoo-commits

From: "William Thomson (wltjr)" <wltjr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/firebird/files: firebird.conf.d.2 firebird.init.d.2 firebird-2.0.3.12981.0-paths.patch digest-firebird-2.0.3.12981.0-r1 firebird.xinetd.2 digest-firebird-2.0.1.12855.0-r5 digest-firebird-2.0.1.12855.0-r4 firebird-2.0.1.12855.0-make-deps.patch firebird-2.0.1.12855.0-external-libs.patch
Date: Fri, 21 Sep 2007 02:23:07
Message-Id: E1IYY2q-0007Cd-Nn@stork.gentoo.org
1 wltjr 07/09/21 02:15:04
2
3 Added: firebird.conf.d.2 firebird.init.d.2
4 firebird-2.0.3.12981.0-paths.patch
5 digest-firebird-2.0.3.12981.0-r1 firebird.xinetd.2
6 Removed: digest-firebird-2.0.1.12855.0-r5
7 digest-firebird-2.0.1.12855.0-r4
8 firebird-2.0.1.12855.0-make-deps.patch
9 firebird-2.0.1.12855.0-external-libs.patch
10 Log:
11 Major changes, Firebird is no longer installed in opt :). Added paths patch. Took over as sole maintainer since I am doing all the work anyway ;)
12 (Portage version: 2.1.3.9)
13
14 Revision Changes Path
15 1.1 dev-db/firebird/files/firebird.conf.d.2
16
17 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird.conf.d.2?rev=1.1&view=markup
18 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird.conf.d.2?rev=1.1&content-type=text/plain
19
20 Index: firebird.conf.d.2
21 ===================================================================
22 ISC_USER=SYSDBA
23 ISC_PASSWORD=masterke
24 FIREBIRD=/usr/share/firebird
25 FBRunUser=firebird
26
27
28
29 1.1 dev-db/firebird/files/firebird.init.d.2
30
31 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird.init.d.2?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird.init.d.2?rev=1.1&content-type=text/plain
33
34 Index: firebird.init.d.2
35 ===================================================================
36 #!/sbin/runscript
37 # Copyright 1999-2004 Gentoo Foundation
38 # Distributed under the terms of the GNU General Public License v2
39 # $Header: /var/cvsroot/gentoo-x86/dev-db/firebird/files/firebird.init.d.2,v 1.1 2007/09/21 02:15:04 wltjr Exp $
40
41
42 # NOTE: make sure you have localhost in your hosts.equiv file see next 2
43 # lines for example of hosts.equiv contents
44 #localhost.localdomain
45 #localhost
46
47
48 export FIREBIRD
49 export ISC_USER
50 export ISC_PASSWORD
51 export FBRunUser
52 MANAGER=/usr/bin/fbmgr.bin
53
54 depend() {
55 need net
56 }
57
58 start(){
59 ebegin "Starting Firebird server"
60 su $FBRunUser -c "${MANAGER} -start -forever"
61 eend $?
62 }
63
64 stop(){
65 ebegin "Stopping Firebird server"
66 $MANAGER -shut
67 eend $?
68 }
69
70
71
72 1.1 dev-db/firebird/files/firebird-2.0.3.12981.0-paths.patch
73
74 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird-2.0.3.12981.0-paths.patch?rev=1.1&view=markup
75 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird-2.0.3.12981.0-paths.patch?rev=1.1&content-type=text/plain
76
77 Index: firebird-2.0.3.12981.0-paths.patch
78 ===================================================================
79 diff -Naur Firebird-2.0.3.12981-0_orig/src/jrd/db_alias.cpp Firebird-2.0.3.12981-0/src/jrd/db_alias.cpp
80 --- Firebird-2.0.3.12981-0_orig/src/jrd/db_alias.cpp 2007-09-19 21:00:33.000000000 -0400
81 +++ Firebird-2.0.3.12981-0/src/jrd/db_alias.cpp 2007-09-20 19:26:44.000000000 -0400
82 @@ -29,7 +29,7 @@
83
84 typedef Firebird::PathName string;
85
86 -const char* ALIAS_FILE = "aliases.conf";
87 +const char* ALIAS_FILE = "../../../etc/firebird/aliases.conf";
88
89 bool ResolveDatabaseAlias(const string& alias, string& database)
90 {
91 diff -Naur Firebird-2.0.3.12981-0_orig/src/jrd/file_params.h Firebird-2.0.3.12981-0/src/jrd/file_params.h
92 --- Firebird-2.0.3.12981-0_orig/src/jrd/file_params.h 2007-09-19 21:00:33.000000000 -0400
93 +++ Firebird-2.0.3.12981-0/src/jrd/file_params.h 2007-09-20 18:48:00.000000000 -0400
94 @@ -38,17 +38,17 @@
95 const int EVENT_SEMAPHORES = 1;
96
97 #ifdef NOHOSTNAME
98 -static const char* EVENT_FILE = "isc_event1";
99 -static const char* LOCK_FILE = "isc_lock1.gbl";
100 -static const char* LOCK_HEADER = "isc_config";
101 -static const char* INIT_FILE = "isc_init1";
102 -static const char* GUARD_FILE = "isc_guard1";
103 +static const char* EVENT_FILE = "../../../var/run/firebird/isc_event1";
104 +static const char* LOCK_FILE = "../../../var/run/firebird/isc_lock1.gbl";
105 +static const char* LOCK_HEADER = "../../../var/run/firebird/isc_config";
106 +static const char* INIT_FILE = "../../../var/run/firebird/isc_init1";
107 +static const char* GUARD_FILE = "../../../var/run/firebird/isc_guard1";
108 #elif defined(SMALL_FILE_NAMES)
109 -static const char* EVENT_FILE = "isce1.%s";
110 -static const char* LOCK_FILE = "iscl1.%s";
111 -static const char* LOCK_HEADER = "isc_config";
112 -static const char* INIT_FILE = "isci1.%s";
113 -static const char* GUARD_FILE = "iscg1.%s";
114 +static const char* EVENT_FILE = "../../../var/run/firebird/isce1.%s";
115 +static const char* LOCK_FILE = "../../../var/run/firebird/iscl1.%s";
116 +static const char* LOCK_HEADER = "../../../var/run/firebird/isc_config";
117 +static const char* INIT_FILE = "../../../var/run/firebird/isci1.%s";
118 +static const char* GUARD_FILE = "../../../var/run/firebird/iscg1.%s";
119 #elif defined(VMS)
120 static const char* EVENT_FILE = "[000000]isc_event1.%s";
121 static const char* LOCK_FILE = "[000000]isc_lock1.%s";
122 @@ -62,11 +62,11 @@
123 static const char* INIT_FILE = "%s.int";
124 static const char* GUARD_FILE = "%s.grd";
125 #else
126 -static const char* EVENT_FILE = "isc_event1.%s";
127 -static const char* LOCK_FILE = "isc_lock1.%s";
128 -static const char* LOCK_HEADER = "isc_config";
129 -static const char* INIT_FILE = "isc_init1.%s";
130 -static const char* GUARD_FILE = "isc_guard1.%s";
131 +static const char* EVENT_FILE = "../../../var/run/firebird/isc_event1.%s";
132 +static const char* LOCK_FILE = "../../../var/run/firebird/isc_lock1.%s";
133 +static const char* LOCK_HEADER = "../../../var/run/firebird/isc_config";
134 +static const char* INIT_FILE = "../../../var/run/firebird/isc_init1.%s";
135 +static const char* GUARD_FILE = "../../../var/run/firebird/isc_guard1.%s";
136 #endif
137
138 #ifdef sun
139 @@ -97,7 +97,7 @@
140 static const char* MSG_FILE = "firebird.msg";
141 static const char MSG_FILE_LANG[]= "intl/%.10s.msg";
142 const int LOCALE_MAX = 10;
143 -static const char* LOGFILE = "firebird.log";
144 +static const char* LOGFILE = "../../../var/log/firebird/firebird.log";
145 #define TEMP_PATTERN "_XXXXXX"
146 #elif defined(WIN_NT)
147 static const char* WORKFILE = "c:\\temp\\";
148 @@ -139,7 +139,7 @@
149 static const char* MSG_FILE = "firebird.msg";
150 static const char MSG_FILE_LANG[]= "intl/%.10s.msg";
151 const int LOCALE_MAX = 10;
152 -static const char* LOGFILE = "firebird.log";
153 +static const char* LOGFILE = "../../../var/log/firebird/firebird.log";
154 #define TEMP_PATTERN "_XXXXXX"
155 #endif
156
157 diff -Naur Firebird-2.0.3.12981-0_orig/src/jrd/jrd_pwd.h Firebird-2.0.3.12981-0/src/jrd/jrd_pwd.h
158 --- Firebird-2.0.3.12981-0_orig/src/jrd/jrd_pwd.h 2007-09-19 21:00:33.000000000 -0400
159 +++ Firebird-2.0.3.12981-0/src/jrd/jrd_pwd.h 2007-09-20 18:48:18.000000000 -0400
160 @@ -58,7 +58,7 @@
161 #ifdef VMS
162 "[sysmgr]security2.fdb";
163 #else
164 - "security2.fdb";
165 + "../../../etc/firebird/security2.fdb";
166 #endif
167
168 gds__prefix(path_buffer, USER_INFO_NAME);
169 diff -Naur Firebird-2.0.3.12981-0_orig/src/jrd/os/config_root.h Firebird-2.0.3.12981-0/src/jrd/os/config_root.h
170 --- Firebird-2.0.3.12981-0_orig/src/jrd/os/config_root.h 2007-09-19 21:00:33.000000000 -0400
171 +++ Firebird-2.0.3.12981-0/src/jrd/os/config_root.h 2007-09-20 18:48:36.000000000 -0400
172 @@ -32,7 +32,7 @@
173 #include "../jrd/os/path_utils.h"
174 #include "../common/utils_proto.h"
175
176 -static const char* CONFIG_FILE = "firebird.conf";
177 +static const char* CONFIG_FILE = "../../../etc/firebird/firebird.conf";
178
179 /**
180 Since the original (isc.cpp) code wasn't able to provide powerful and
181 diff -Naur Firebird-2.0.3.12981-0_orig/src/jrd/svc.cpp Firebird-2.0.3.12981-0/src/jrd/svc.cpp
182 --- Firebird-2.0.3.12981-0_orig/src/jrd/svc.cpp 2007-09-19 21:00:33.000000000 -0400
183 +++ Firebird-2.0.3.12981-0/src/jrd/svc.cpp 2007-09-20 19:34:33.000000000 -0400
184 @@ -366,38 +366,38 @@
185 static serv_entry services[] =
186 {
187
188 - { isc_action_max, "print_cache", "-svc", "bin/fb_cache_print", NULL, 0 },
189 - { isc_action_max, "print_locks", "-svc", "bin/fb_lock_print", NULL, 0 },
190 - { isc_action_max, "start_cache", "-svc", "bin/fb_cache_manager", NULL, 0 },
191 - { isc_action_max, "analyze_database", "-svc", "bin/gstat", NULL, 0 },
192 - { isc_action_max, "backup", "-svc -b", "bin/gbak", MAIN_GBAK, 0 },
193 - { isc_action_max, "create", "-svc -c", "bin/gbak", MAIN_GBAK, 0 },
194 - { isc_action_max, "restore", "-svc -r", "bin/gbak", MAIN_GBAK, 0 },
195 - { isc_action_max, "gdef", "-svc", "bin/gdef", NULL, 0 },
196 - { isc_action_max, "gsec", "-svc", "bin/gsec", NULL, 0 },
197 - { isc_action_max, "disable_journal", "-svc -disable", "bin/gjrn", NULL, 0 },
198 - { isc_action_max, "dump_journal", "-svc -online_dump", "bin/gjrn", NULL, 0 },
199 - { isc_action_max, "enable_journal", "-svc -enable", "bin/gjrn", NULL, 0 },
200 - { isc_action_max, "monitor_journal", "-svc -console", "bin/gjrn", NULL, 0 },
201 + { isc_action_max, "print_cache", "-svc", "../../../usr/bin/fb_cache_print", NULL, 0 },
202 + { isc_action_max, "print_locks", "-svc", "../../../usr/bin/fb_lock_print", NULL, 0 },
203 + { isc_action_max, "start_cache", "-svc", "../../../usr/bin/fb_cache_manager", NULL, 0 },
204 + { isc_action_max, "analyze_database", "-svc", "../../../usr/bin/gstat", NULL, 0 },
205 + { isc_action_max, "backup", "-svc -b", "../../../usr/bin/gbak", MAIN_GBAK, 0 },
206 + { isc_action_max, "create", "-svc -c", "../../../usr/bin/gbak", MAIN_GBAK, 0 },
207 + { isc_action_max, "restore", "-svc -r", "../../../usr/bin/gbak", MAIN_GBAK, 0 },
208 + { isc_action_max, "gdef", "-svc", "../../../usr/bin/gdef", NULL, 0 },
209 + { isc_action_max, "gsec", "-svc", "../../../usr/bin/gsec", NULL, 0 },
210 + { isc_action_max, "disable_journal", "-svc -disable", "../../../usr/bin/gjrn", NULL, 0 },
211 + { isc_action_max, "dump_journal", "-svc -online_dump", "../../../usr/bin/gjrn", NULL, 0 },
212 + { isc_action_max, "enable_journal", "-svc -enable", "../../../usr/bin/gjrn", NULL, 0 },
213 + { isc_action_max, "monitor_journal", "-svc -console", "../../../usr/bin/gjrn", NULL, 0 },
214 { isc_action_max, "query_server", NULL, NULL, NULL, 0 },
215 - { isc_action_max, "start_journal", "-svc -server", "bin/gjrn", NULL, 0 },
216 - { isc_action_max, "stop_cache", "-svc -shut -cache", "bin/gfix", NULL, 0 },
217 - { isc_action_max, "stop_journal", "-svc -console", "bin/gjrn", NULL, 0 },
218 + { isc_action_max, "start_journal", "-svc -server", "../../../usr/bin/gjrn", NULL, 0 },
219 + { isc_action_max, "stop_cache", "-svc -shut -cache", "../../../usr/bin/gfix", NULL, 0 },
220 + { isc_action_max, "stop_journal", "-svc -console", "../../../usr/bin/gjrn", NULL, 0 },
221 { isc_action_max, "anonymous", NULL, NULL, NULL, 0 },
222
223 /* NEW VERSION 2 calls, the name field MUST be different from those names above
224 */
225 { isc_action_max, "service_mgr", NULL, NULL, NULL, 0 },
226 - { isc_action_svc_backup, "Backup Database", NULL, "bin/gbak", MAIN_GBAK, 0 },
227 - { isc_action_svc_restore, "Restore Database", NULL, "bin/gbak", MAIN_GBAK, 0 },
228 - { isc_action_svc_repair, "Repair Database", NULL, "bin/gfix", MAIN_GFIX, 0 },
229 - { isc_action_svc_add_user, "Add User", NULL, "bin/gsec", MAIN_GSEC, 0 },
230 - { isc_action_svc_delete_user, "Delete User", NULL, "bin/gsec", MAIN_GSEC, 0 },
231 - { isc_action_svc_modify_user, "Modify User", NULL, "bin/gsec", MAIN_GSEC, 0 },
232 - { isc_action_svc_display_user, "Display User", NULL, "bin/gsec", MAIN_GSEC, 0 },
233 - { isc_action_svc_properties, "Database Properties", NULL, "bin/gfix", MAIN_GFIX, 0 },
234 - { isc_action_svc_lock_stats, "Lock Stats", NULL, "bin/fb_lock_print", TEST_THREAD, 0 },
235 - { isc_action_svc_db_stats, "Database Stats", NULL, "bin/gstat", MAIN_GSTAT, 0 },
236 + { isc_action_svc_backup, "Backup Database", NULL, "../../../usr/bin/gbak", MAIN_GBAK, 0 },
237 + { isc_action_svc_restore, "Restore Database", NULL, "../../../usr/bin/gbak", MAIN_GBAK, 0 },
238 + { isc_action_svc_repair, "Repair Database", NULL, "../../../usr/bin/gfix", MAIN_GFIX, 0 },
239 + { isc_action_svc_add_user, "Add User", NULL, "../../../usr/bin/gsec", MAIN_GSEC, 0 },
240 + { isc_action_svc_delete_user, "Delete User", NULL, "../../../usr/bin/gsec", MAIN_GSEC, 0 },
241 + { isc_action_svc_modify_user, "Modify User", NULL, "../../../usr/bin/gsec", MAIN_GSEC, 0 },
242 + { isc_action_svc_display_user, "Display User", NULL, "../../../usr/bin/gsec", MAIN_GSEC, 0 },
243 + { isc_action_svc_properties, "Database Properties", NULL, "../../../usr/bin/gfix", MAIN_GFIX, 0 },
244 + { isc_action_svc_lock_stats, "Lock Stats", NULL, "../../../usr/bin/fb_lock_print", TEST_THREAD, 0 },
245 + { isc_action_svc_db_stats, "Database Stats", NULL, "../../../usr/bin/gstat", MAIN_GSTAT, 0 },
246 { isc_action_svc_get_fb_log, "Get Log File", NULL, NULL, SVC_read_fb_log, 0 },
247 /* actions with no names are undocumented */
248 { isc_action_svc_set_config, NULL, NULL, NULL, TEST_THREAD, 0 },
249 diff -Naur Firebird-2.0.3.12981-0_orig/src/utilities/fbcpl/fbdialog.cpp Firebird-2.0.3.12981-0/src/utilities/fbcpl/fbdialog.cpp
250 --- Firebird-2.0.3.12981-0_orig/src/utilities/fbcpl/fbdialog.cpp 2007-09-19 21:00:33.000000000 -0400
251 +++ Firebird-2.0.3.12981-0/src/utilities/fbcpl/fbdialog.cpp 2007-09-20 18:49:23.000000000 -0400
252 @@ -1335,7 +1335,7 @@
253 bool CFBDialog::UpdateFirebirdConf(CString option, CString value)
254 {
255 CStdioFile FbConfFile, FbConfFileNew;
256 - CString FirebirdConfFilename = m_Root_Path + "firebird.conf";
257 + CString FirebirdConfFilename = "../../../etc/firebird/firebird.conf";
258 CString FirebirdConfNewname = FirebirdConfFilename + ".new";
259 CString FirebirdConfOldname = FirebirdConfFilename + ".old";
260 CString FirebirdConfLine = "";
261 diff -Naur Firebird-2.0.3.12981-0_orig/src/utilities/gsec/security.epp Firebird-2.0.3.12981-0/src/utilities/gsec/security.epp
262 --- Firebird-2.0.3.12981-0_orig/src/utilities/gsec/security.epp 2007-09-19 21:00:34.000000000 -0400
263 +++ Firebird-2.0.3.12981-0/src/utilities/gsec/security.epp 2007-09-20 18:49:55.000000000 -0400
264 @@ -41,7 +41,7 @@
265 #endif
266 #include "../common/utils_proto.h"
267
268 -DATABASE DB = STATIC FILENAME "security2.fdb";
269 +DATABASE DB = STATIC FILENAME "../../../etc/firebird/security2.fdb";
270
271 static const char* SYSDBA_USER_NAME = "SYSDBA";
272
273 diff -Naur Firebird-2.0.3.12981-0_orig/src/utilities/guard/guard.cpp Firebird-2.0.3.12981-0/src/utilities/guard/guard.cpp
274 --- Firebird-2.0.3.12981-0_orig/src/utilities/guard/guard.cpp 2007-09-19 21:00:34.000000000 -0400
275 +++ Firebird-2.0.3.12981-0/src/utilities/guard/guard.cpp 2007-09-20 19:33:31.000000000 -0400
276 @@ -51,7 +51,7 @@
277 const USHORT IGNORE = 3;
278 const USHORT NORMAL_EXIT= 0;
279
280 -const char* SUPER_SERVER_BINARY = "bin/fbserver";
281 +const char* SUPER_SERVER_BINARY = "../../../usr/bin/fbserver";
282
283 const char* INTERBASE_USER = "interbase";
284 const char* FIREBIRD_USER = "firebird";
285 diff -Naur Firebird-2.0.3.12981-0_orig/src/utilities/ibmgr/ibmgr.h Firebird-2.0.3.12981-0/src/utilities/ibmgr/ibmgr.h
286 --- Firebird-2.0.3.12981-0_orig/src/utilities/ibmgr/ibmgr.h 2007-09-19 21:00:34.000000000 -0400
287 +++ Firebird-2.0.3.12981-0/src/utilities/ibmgr/ibmgr.h 2007-09-20 19:33:06.000000000 -0400
288 @@ -31,7 +31,7 @@
289 static const char* FIREBIRD_USER_NAME = "firebird";
290 static const char* INTERBASE_USER_NAME = "interbase";
291 static const char* INTERBASE_USER_SHORT= "interbas";
292 -static const char* SERVER_GUARDIAN = "bin/fbguard";
293 +static const char* SERVER_GUARDIAN = "../../../usr/bin/fbguard";
294
295 const USHORT MSG_FAC = 18;
296 const int MSG_LEN = 128;
297 diff -Naur Firebird-2.0.3.12981-0_orig/src/utilities/ibmgr/srvrmgr.cpp Firebird-2.0.3.12981-0/src/utilities/ibmgr/srvrmgr.cpp
298 --- Firebird-2.0.3.12981-0_orig/src/utilities/ibmgr/srvrmgr.cpp 2007-09-19 21:00:34.000000000 -0400
299 +++ Firebird-2.0.3.12981-0/src/utilities/ibmgr/srvrmgr.cpp 2007-09-19 21:29:15.000000000 -0400
300 @@ -271,7 +271,7 @@
301 rs = "can not quit now, use shut -ign";
302 break;
303 case MSG_STARTERR:
304 - rs = "check $FIREBIRD/firebird.log file for errors";
305 + rs = "check /var/log/firebird/firebird.log file for errors";
306 break;
307 case MSG_STARTFAIL:
308 rs = "can not start server";
309
310
311
312 1.1 dev-db/firebird/files/digest-firebird-2.0.3.12981.0-r1
313
314 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/digest-firebird-2.0.3.12981.0-r1?rev=1.1&view=markup
315 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/digest-firebird-2.0.3.12981.0-r1?rev=1.1&content-type=text/plain
316
317 Index: digest-firebird-2.0.3.12981.0-r1
318 ===================================================================
319 MD5 9a28587a596a149eb01f006be1cb2ddb Firebird-2.0.3.12981-0.tar.bz2 12623689
320 RMD160 6a1139b30a77070e6e74bdaebc5d9bdd52e32509 Firebird-2.0.3.12981-0.tar.bz2 12623689
321 SHA256 7abda7a3a35abeb4d2ff38b99e6238d713184e6c70a786777b7adcbad6b1261e Firebird-2.0.3.12981-0.tar.bz2 12623689
322 MD5 e48478a6034eb449ad502495e83a0764 ib_b60_doc.zip 10530848
323 RMD160 c64b4b6bc9125929928517ba072558a58ddf577d ib_b60_doc.zip 10530848
324 SHA256 8c0158678b2a2fe3ba3abfea1f5487fc5af2644d66837ab8a558f5ad6b6cfd6d ib_b60_doc.zip 10530848
325
326
327
328 1.1 dev-db/firebird/files/firebird.xinetd.2
329
330 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird.xinetd.2?rev=1.1&view=markup
331 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/firebird/files/firebird.xinetd.2?rev=1.1&content-type=text/plain
332
333 Index: firebird.xinetd.2
334 ===================================================================
335 service gds_db
336 {
337 flags = REUSE
338 socket_type = stream
339 wait = no
340 user = firebird
341 log_on_success += USERID
342 log_on_failure += USERID
343 server = /usr/bin/fb_inet_server
344 disable = yes
345 }
346
347
348
349 --
350 gentoo-commits@g.o mailing list