one of the substrings "svn", "rc" or "beta".
+2010-02-02 Werner Koch <wk@g10code.com>
+
+ * src/gpg4win.mk.in (README.$(1).txt): Implement beta-warning hack.
+
2010-02-01 Emanuel Schuetze <emanuel.schuetze@intevation.de>
* NEWS: Update claws and kleaopatra.
+2010-02-02 Werner Koch <wk@g10code.com>
+
+ * beta-warning.txt: New.
+ * README.en.txt, README.de.txt: Add Beta warning tag.
+
2010-02-01 Emanuel Schuetze <emanuel.schuetze@intevation.de>
* logo/gpg4win-nsis-wizard-uninstall-164x314.bmp: Update image.
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
-EXTRA_DIST = nsi-mode.el pkg-copyright.txt \
+EXTRA_DIST = nsi-mode.el pkg-copyright.txt beta-warning.txt \
README.ar.txt README.de.txt README.en.txt README.es.txt \
README.fr.txt README.ru.txt
English README file for Gpg4win
===============================
-
+!BETA-WARNING!
+++ You are welcome to translate this file into Arabic!
Please contact the Gpg4win developer mailing list for contributing
and look at http://gpg4win.de/localize-gpg4win.html +++
Deutsche README Datei für Gpg4win
=================================
-
+!BETA-WARNING!
Dies ist Gpg4win, Version !VERSION!.
Inhalt:
English README file for Gpg4win
===============================
-
+!BETA-WARNING!
This is Gpg4win, version !VERSION!.
Content:
English README file for Gpg4win
===============================
-
+!BETA-WARNING!
+++ You are welcome to translate this file into Spanish!
Please contact the Gpg4win developer mailing list for contributing
and look at http://gpg4win.de/localize-gpg4win.html +++
English README file for Gpg4win
===============================
-
+!BETA-WARNING!
+++ You are welcome to translate this file into French!
Please contact the Gpg4win developer mailing list for contributing
and look at http://gpg4win.de/localize-gpg4win.html +++
English README file for Gpg4win
===============================
-
+!BETA-WARNING!
+++ You are welcome to translate this file into Russian!
Please contact the Gpg4win developer mailing list for contributing
and look at http://gpg4win.de/localize-gpg4win.html +++
--- /dev/null
+
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Attention: This is a BETA version of Gpg4win. This means, some
+ functionalities might be missing or NOT WORKING CORRECTLY.
+
+ Beta versions are intended for testing by experienced users or
+ administrators to learn about the upcoming version and to suggest
+ changes. They should not be used in a production environment.
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
# Template for README files
define README_template
-README.$(1).txt : versioninfo.txt NEWS.tmp $(top_srcdir)/doc/README.$(1).txt
+README.$(1).txt : versioninfo.txt NEWS.tmp $(top_srcdir)/doc/README.$(1).txt \
+ $(top_srcdir)/doc/beta-warning.txt
sed -e '/^;.*/d;/!VERSIONINFO!/{r versioninfo.txt' -e 'd;}' \
-e '/!NEWSFILE!/{r NEWS.tmp' -e 'd;}' \
+ -e '/!NEWSFILE!/{r NEWS.tmp' -e 'd;}' \
-e '/!PKG-COPYRIGHT!/{r $(top_srcdir)/doc/pkg-copyright.txt' -e 'd;}' \
-e 's,!VERSION!,$(VERSION),g' \
< $(top_srcdir)/doc/README.$(1).txt \
+ | (if echo "$(VERSION)" | egrep 'svn|rc|beta' >/dev/null; then \
+ sed -e '/!BETA-WARNING!/{r $(top_srcdir)/doc/beta-warning.txt' \
+ -e 'd;}'; else sed -e 's,!BETA-WARNING!,,g'; fi) \
| awk '{printf "%s\r\n", $$$$0}' >README.$(1).txt
endef
-
# Insert the template for each source package.
$(foreach spkg, $(gpg4win_spkgs), $(eval $(call SPKG_template,$(spkg))))