Commit 1c1539ff 1c1539fff7f954dc8f3f1183e66e7bc2baf85210 by Sergey Poznyakoff

Version 2.1 "Ten Years Later"

* NEWS: Update for version 2.1
* configure.ac: Update for version 2.1
(AM_INIT_AUTOMAKE): Add dist-lzma and dist-xz.
* bootstrap (slurp): Remove call to silentize:
not needed with recent gnulib.
1 parent 8bc5aa14
1 GNU mailutils NEWS -- history of user-visible changes. 2009-09-01 1 GNU mailutils NEWS -- history of user-visible changes. 2009-09-10
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009 Free Software Foundation, Inc. 3 2008, 2009 Free Software Foundation, Inc.
4 See the end of file for copying conditions. 4 See the end of file for copying conditions.
...@@ -6,7 +6,14 @@ See the end of file for copying conditions. ...@@ -6,7 +6,14 @@ See the end of file for copying conditions.
6 Please send mailutils bug reports to <bug-mailutils@gnu.org>. 6 Please send mailutils bug reports to <bug-mailutils@gnu.org>.
7 7
8 8
9 Version 2.0.90 (Git) 9 Version 2.1 "Ten Years Later" - 2009-09-10:
10
11 This release marks the 10 years anniversary of GNU Mailutils.
12
13 * New distribution tarballs
14
15 Mailutils tar archives are distributed in four compressed formats:
16 gzip, bzip2, lzma and xz.
10 17
11 * Ticket files 18 * Ticket files
12 19
...@@ -34,14 +41,15 @@ to copy mailbox ownership, if the utility is run with root privileges. ...@@ -34,14 +41,15 @@ to copy mailbox ownership, if the utility is run with root privileges.
34 41
35 * Maidag 42 * Maidag
36 43
37 Improved scripting capability allow to use mail filters written in 44 Improved scripting capability allows to use mail filters written in
38 the Python language. 45 the Python language.
39 46
40 The `--script' command line option set the name pattern for 47 The `--script' command line option sets the name pattern for
41 user-defined mail filter. 48 user-defined mail filters. Maidag uses the script suffix to
42 49 deduce what language it is written in. Supported suffixes are:
43 The `--language' command line option define scripting language for 50 `sv', `siv' and `sieve' for Sieve, `scm' and `scheme' for Scheme,
44 the next --script option. 51 `py' and `pyc' for Python. Additionally, the language may be
52 defined using the `--language' command line option.
45 53
46 * Mail 54 * Mail
47 55
...@@ -148,9 +156,11 @@ Public License. ...@@ -148,9 +156,11 @@ Public License.
148 156
149 * API 157 * API
150 158
151 * Renamed libsieve to libmu_sieve. 159 * New library naming scheme
152 160
153 * Renamed libcfg to libmu_cfg. 161 The names of all mailutils inferior libraries are prefixed with
162 `libmu_', e.g.: libmu_sieve, libmu_imap, etc. In particular,
163 `libsieve' is now named `libmu_sieve' and `libcfg' - `libmu_cfg'.
154 164
155 * Wicket/Ticket functions 165 * Wicket/Ticket functions
156 166
......
...@@ -507,7 +507,6 @@ slurp() { ...@@ -507,7 +507,6 @@ slurp() {
507 rm -f $dir/$gnulib_mk && 507 rm -f $dir/$gnulib_mk &&
508 sed "$remove_intl" $1/$dir/$file >$dir/$gnulib_mk 508 sed "$remove_intl" $1/$dir/$file >$dir/$gnulib_mk
509 } 509 }
510 silentize $dir/$gnulib_mk
511 elif { test "${2+set}" = set && test -r $2/$dir/$file; } || 510 elif { test "${2+set}" = set && test -r $2/$dir/$file; } ||
512 version_controlled_file $dir $file; then 511 version_controlled_file $dir $file; then
513 echo "$0: $dir/$file overrides $1/$dir/$file" 512 echo "$0: $dir/$file overrides $1/$dir/$file"
......
...@@ -18,10 +18,10 @@ dnl with GNU Mailutils; if not, write to the Free Software Foundation, ...@@ -18,10 +18,10 @@ dnl with GNU Mailutils; if not, write to the Free Software Foundation,
18 dnl Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 dnl Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 19
20 AC_PREREQ(2.63) 20 AC_PREREQ(2.63)
21 AC_INIT([GNU Mailutils], [2.0.90], [bug-mailutils@gnu.org], [mailutils]) 21 AC_INIT([GNU Mailutils], [2.1], [bug-mailutils@gnu.org], [mailutils])
22 AC_CONFIG_SRCDIR([mailbox/mailbox.c]) 22 AC_CONFIG_SRCDIR([mailbox/mailbox.c])
23 AC_CONFIG_AUX_DIR([build-aux]) 23 AC_CONFIG_AUX_DIR([build-aux])
24 AM_INIT_AUTOMAKE([gnits 1.11 dist-bzip2 std-options silent-rules]) 24 AM_INIT_AUTOMAKE([gnits 1.11 dist-bzip2 dist-lzma dist-xz std-options silent-rules])
25 AC_CONFIG_HEADERS([config.h]) 25 AC_CONFIG_HEADERS([config.h])
26 AC_CONFIG_MACRO_DIR([m4]) 26 AC_CONFIG_MACRO_DIR([m4])
27 27
......