trans-coord-devel
[Top][All Lists]
Advanced

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

trans-coord/gnun/server/gnun ChangeLog GNUmakef...


From: Yavor Doganov
Subject: trans-coord/gnun/server/gnun ChangeLog GNUmakef...
Date: Mon, 02 Aug 2010 13:54:11 +0000

CVSROOT:        /sources/trans-coord
Module name:    trans-coord
Changes by:     Yavor Doganov <yavor>   10/08/02 13:54:11

Modified files:
        gnun/server/gnun: ChangeLog GNUmakefile Makefile.am NEWS 
                          config.mk config.mk.in 
        gnun/server/gnun/doc: gnun.texi 
Added files:
        gnun/server/gnun: gnun.conf 

Log message:
        Move *-addr definitions to a new configuration file gnun.conf.
        * GNUmakefile (devel-addr, web-addr, transl-addr): Move to a...
        * gnun.conf: ...new file.
        * Makefile.am (dist_sysconf_DATA): Define to gnun.conf.
        * config.mk.in: Include @sysconfdir@/gnun.conf.
        (prefix): New variable.
        * doc/gnun.texi (Runtime Variables) <NOTIFY>: Update
        documentation, mention gnun.conf.
        * NEWS: Update.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/ChangeLog?cvsroot=trans-coord&r1=1.180&r2=1.181
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/GNUmakefile?cvsroot=trans-coord&r1=1.75&r2=1.76
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/Makefile.am?cvsroot=trans-coord&r1=1.16&r2=1.17
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/NEWS?cvsroot=trans-coord&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/config.mk?cvsroot=trans-coord&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/config.mk.in?cvsroot=trans-coord&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/gnun.conf?cvsroot=trans-coord&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/doc/gnun.texi?cvsroot=trans-coord&r1=1.21&r2=1.22

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -b -r1.180 -r1.181
--- ChangeLog   30 Jul 2010 14:06:29 -0000      1.180
+++ ChangeLog   2 Aug 2010 13:54:10 -0000       1.181
@@ -1,3 +1,15 @@
+2010-08-02  Yavor Doganov  <address@hidden>
+
+       Move *-addr definitions to a new configuration file gnun.conf.
+       * GNUmakefile (devel-addr, web-addr, transl-addr): Move to a...
+       * gnun.conf: ...new file.
+       * Makefile.am (dist_sysconf_DATA): Define to gnun.conf.
+       * config.mk.in: Include @sysconfdir@/gnun.conf.
+       (prefix): New variable.
+       * doc/gnun.texi (Runtime Variables) <NOTIFY>: Update
+       documentation, mention gnun.conf.
+       * NEWS: Update.
+
 2010-07-30  Yavor Doganov  <address@hidden>
 
        The official GNUN build runs thrice daily now.

Index: GNUmakefile
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/GNUmakefile,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -b -r1.75 -r1.76
--- GNUmakefile 1 Jul 2010 12:35:27 -0000       1.75
+++ GNUmakefile 2 Aug 2010 13:54:11 -0000       1.76
@@ -66,13 +66,6 @@
 NOTIFYSKIP := --dry-run
 endif
 
-# Email addresses for notifications.
-devel-addr := address@hidden
-# FIXME: Change to www-discuss in the official instance.
-web-addr := address@hidden
-# FIXME: Change to trans-coord-discuss in the official instance.
-transl-addr := address@hidden
-
 rootdir := ../..
 
 # FIXME: footer-short and footer-min are remnants from the old-new

Index: Makefile.am
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- Makefile.am 7 Jan 2010 14:43:04 -0000       1.16
+++ Makefile.am 2 Aug 2010 13:54:11 -0000       1.17
@@ -71,6 +71,7 @@
 doc_DATA = TODO
 example_DATA = gnun.mk GNUmakefile.team
 pkgdata_DATA = config.mk
+dist_sysconf_DATA = gnun.conf
 dist_pkgdata_DATA = GNUmakefile
 
 EXTRA_DIST = gnun.mk GNUmakefile.team \

Index: NEWS
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/NEWS,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- NEWS        19 Feb 2010 15:23:56 -0000      1.25
+++ NEWS        2 Aug 2010 13:54:11 -0000       1.26
@@ -5,6 +5,10 @@
 ** New GNUmakefile.team targets: format, publish, clean.
    Please refer to the manual for details.
 
+** New configuration file: gnun.conf.
+   The definitions of the `*-addr' variables are moved to this file,
+   which is installed in sysconfdir.
+
 * Changes in GNUnited Nations 0.4 (2009-11-11)
 
 ** New script `gnun-clear-previous'.

Index: config.mk
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/config.mk,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- config.mk   28 Sep 2009 12:10:21 -0000      1.3
+++ config.mk   2 Aug 2010 13:54:11 -0000       1.4
@@ -12,3 +12,5 @@
 MSGMERGE       := msgmerge
 PO4A_GETTEXTIZE := po4a-gettextize
 PO4A_TRANSLATE  := po4a-translate
+
+-include gnun.conf

Index: config.mk.in
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/config.mk.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- config.mk.in        28 Sep 2009 12:10:21 -0000      1.4
+++ config.mk.in        2 Aug 2010 13:54:11 -0000       1.5
@@ -1,3 +1,4 @@
+# -*-makefile-gmake-*-
 # @configure_input@
 
 # This variable is substituted via a Makefile rule.
@@ -13,3 +14,6 @@
 MSGMERGE       := @MSGMERGE@
 PO4A_GETTEXTIZE := @PO4A_GETTEXTIZE@
 PO4A_TRANSLATE  := @PO4A_TRANSLATE@
+
+prefix         := @prefix@
+-include @sysconfdir@/gnun.conf

Index: doc/gnun.texi
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/doc/gnun.texi,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- doc/gnun.texi       30 Jul 2010 14:06:29 -0000      1.21
+++ doc/gnun.texi       2 Aug 2010 13:54:11 -0000       1.22
@@ -518,7 +518,9 @@
 message as body to the concerned party.  The variables
 @code{devel-addr}, @code{web-addr} and @code{transl-addr} control the
 recipients; normally they should be set to the GNUN maintainers,
-webmasters and translators accordingly.
+webmasters and translators accordingly.  These variables are defined in
+the configuration file @file{gnun.conf} and by default are set to
address@hidden@@gnu.org}.
 
 @cindex VERBOSE
 @cindex output, detailed

Index: gnun.conf
===================================================================
RCS file: gnun.conf
diff -N gnun.conf
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ gnun.conf   2 Aug 2010 13:54:11 -0000       1.1
@@ -0,0 +1,16 @@
+# -*-makefile-gmake-*-
+# GNUnited Nations configuration file.
+
+# Email addresses to send notifications if NOTIFY=yes.  Each variable
+# can be defined to multiple comma or space separated addresses.
+
+# Possible errors that is likely to be fixed by developers only.
+devel-addr  := address@hidden
+
+# Errors from make-prototype and invalid (X)HTML of English articles;
+# webmasters' responsibility.
+web-addr    := address@hidden
+
+# Errors in .po files, or XHTML validation of generated .LANG.html;
+# translators' responsibility.
+transl-addr := address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]