emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/bbdb 4ab0a77: Update copyright; update README.


From: Roland Winkler
Subject: [elpa] externals/bbdb 4ab0a77: Update copyright; update README.
Date: Sun, 24 Dec 2017 01:02:38 -0500 (EST)

branch: externals/bbdb
commit 4ab0a77d386b2ff8dc88368a47533f98d63410eb
Author: Roland Winkler <address@hidden>
Commit: Roland Winkler <address@hidden>

    Update copyright; update README.
---
 ChangeLog.old |  2 +-
 NEWS          |  4 +++-
 README        | 42 ++++++++++++++++++++++++++++--------------
 TODO          |  4 ++--
 bbdb.el       |  2 +-
 bbdb.info     | 16 ++++++++--------
 doc/bbdb.texi |  2 +-
 7 files changed, 44 insertions(+), 28 deletions(-)

diff --git a/ChangeLog.old b/ChangeLog.old
index c9fd35d..99135ad 100644
--- a/ChangeLog.old
+++ b/ChangeLog.old
@@ -2312,7 +2312,7 @@
 ;; coding: utf-8
 ;; End:
 
-  Copyright (C) 2010-2017 Roland Winkler <address@hidden>
+  Copyright (C) 2010-2017 Free Software Foundation, Inc.
 
   This file is part of the Insidious Big Brother Database (aka BBDB),
 
diff --git a/NEWS b/NEWS
index 388565e..706f075 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
 BBDB NEWS -- history of user-visible changes.
 
-Copyright (C) 2013-2017 Roland Winkler <address@hidden>
+Copyright (C) 2013-2017 Free Software Foundation, Inc.
 See the end of the file for license conditions.
 
 This file is about changes in BBDB version 3.
@@ -40,6 +40,8 @@ Initial release
 
 
 ----------------------------------------------------------------------
+Copyright (C) 2013-2017 Free Software Foundation, Inc.
+
 This file is part of the Insidious Big Brother Database (aka BBDB),
 
 BBDB is free software: you can redistribute it and/or modify
diff --git a/README b/README
index 03dbbc7..e830034 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Copyright (C) 2010-2017 Roland Winkler <address@hidden>
+Copyright (C) 2010-2017 Free Software Foundation, Inc.
 See the end of the file for license conditions.
 
 BBDB is the Insidious Big Brother Database for GNU Emacs.
@@ -8,6 +8,11 @@ clients (Message and Mail mode, Rmail, Gnus, MH-E, Mu4e, VM, 
and
 Wanderlust).  BBDB is fully customizable.
 
 BBDB is available at
+http://elpa.gnu.org/packages/bbdb.html
+To install this package, run in Emacs:
+M-x package-install RET bbdb RET
+
+BBDB is also available at
 http://savannah.nongnu.org/projects/bbdb/
 To check it out, use
 git clone git://git.savannah.nongnu.org/bbdb.git
@@ -18,9 +23,14 @@ To subscribe to this list, go to
 https://lists.nongnu.org/mailman/listinfo/bbdb-user.
 
 ==================================================================
-Installation:   (see also the generic file INSTALL)
+Installation:
+
+To install this package from GNU ELPA, run in Emacs:
+
+   M-x package-install RET bbdb RET
 
-To compile and install BBDB with `make':
+To compile and install BBDB from Savannah with `make'
+(see also the generic file INSTALL):
 
 0) (BBDB development version only)
 
@@ -64,24 +74,24 @@ To compile and install BBDB with `make':
    You can override these defaults via respective options
    for the configure script.
 
-   The TeX files in the tex directories are installed in ${datadir}
+   The TeX files in the ./tex directory are installed in ${datadir}
    which defaults to /usr/local/share/bbdb/.  These files are only
-   used by BBDB.  They need not be made known to your local TeX
-   installation.  See the user variable bbdb-print-tex-path below.
+   used by BBDB.  They need not be known to your local TeX installation.
+   See the user variable bbdb-tex-path below.
 
    `make install' is not required to run BBDB.
 
 4) Activate BBDB:
 
    i)   If the BBDB lisp files are in a directory
-        "/path/to/bbdb/lisp" you can use in your emacs init file
+        "/path/to/bbdb/lisp" you can use in your Emacs init file
 
         (require 'bbdb-loaddefs "/path/to/bbdb/lisp/bbdb-loaddefs.el")
 
         This adds "/path/to/bbdb/lisp" to the load-path; so it is all
-        you need to make BBDB known to your Emacs.
+        you need to make BBDB known to Emacs.
 
-   ii)  The user variable bbdb-print-tex-path should point to the directory
+   ii)  The user variable bbdb-tex-path should point to the directory
         where the BBDB TeX files reside (default /usr/local/share/bbdb).
 
 ===============================================================================
@@ -146,13 +156,16 @@ MUA commands include
  bbdb-mua-edit-field, bbdb-mua-edit-field-sender, 
bbdb-mua-edit-field-recipients
 
 These MUA commands operate either on existing records only.  Or they
-can create new records.
+can also create new records.
 
-They are all controlled by bbdb-mua-update-interactive-p.
+All these commands are controlled by bbdb-mua-update-interactive-p.
 This is a cons pair (WITHOUT-PREFIX . WITH-PREFIX).
 The car is used if the command is called without a prefix.
 The cdr is used if the command is called with a prefix (and if the prefix
         is not used for another purpose).
+The underlying idea is that the car can provide a less aggressive default
+such as `search' or `update' (see below), whereas the cdr can provide more
+aggressive behavior such as `create'.
 
 WITHOUT-PREFIX and WITH-PREFIX may take the values
 (here ADDRESS is an email address found in a message):
@@ -169,8 +182,9 @@ WITHOUT-PREFIX and WITH-PREFIX may take the values
  read         Read the value interactively.
 
 BBDB 2 also used MUA-specific variables bbdb/MUA-update-records-mode
-to control its interfaces with MUAs.  Use function bbdb-mua to define
-your own function to get MUA-specific values.
+to control its interfaces with MUAs.  If you liked this feature, use
+the function bbdb-mua to define your own function to get MUA-specific
+values for WITHOUT-PREFIX and WITH-PREFIX.
 
 Noninteractive functions
 ------------------------
@@ -214,7 +228,7 @@ sequence of calls is
 
 ==================================================================
 
-Copyright (C) 2010-2017 Roland Winkler <address@hidden>
+Copyright (C) 2010-2017 Free Software Foundation, Inc.
 
 This file is part of the Insidious Big Brother Database (aka BBDB),
 
diff --git a/TODO b/TODO
index 3953037..f81771d 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,6 @@
 BBDB todo List                                                   -*-outline-*-
 
-Copyright (C) 2011-2017 Roland Winkler <address@hidden>
+Copyright (C) 2011-2017 Free Software Foundation, Inc.
 See the end of the file for license conditions.
 
 * Bug fixes
@@ -72,7 +72,7 @@ See the end of the file for license conditions.
    2011-05-05 Leo <address@hidden>
 
 
-Copyright (C) 2011-2017 Roland Winkler <address@hidden>
+Copyright (C) 2011-2017 Free Software Foundation, Inc.
 
 This file is part of the Insidious Big Brother Database (aka BBDB),
 
diff --git a/bbdb.el b/bbdb.el
index 935b2f6..e38ac17 100644
--- a/bbdb.el
+++ b/bbdb.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2010-2017  Free Software Foundation, Inc.
 
-;; Version: 0
+;; Version: 3.2
 ;; Package-Requires: ((emacs "24"))
 
 ;; This file is part of the Insidious Big Brother Database (aka BBDB),
diff --git a/bbdb.info b/bbdb.info
index 22bf44f..8d1f21f 100644
--- a/bbdb.info
+++ b/bbdb.info
@@ -1,8 +1,8 @@
-This is bbdb.info, produced by makeinfo version 6.5 from bbdb.texi.
+This is bbdb.info, produced by makeinfo version 6.1 from bbdb.texi.
 
 This file documents the Insidious Big Brother Database (BBDB)
 
-   Copyright (C) 2011-2017 Roland Winkler <address@hidden>
+   Copyright (C) 2011-2017 Free Software Foundation, Inc.
 
      Permission is granted to copy, distribute and/or modify this
      document under the terms of the GNU Free Documentation License,
@@ -23,7 +23,7 @@ BBDB User Manual
 
 This file documents the Insidious Big Brother Database (BBDB)
 
-   Copyright (C) 2011-2017 Roland Winkler <address@hidden>
+   Copyright (C) 2011-2017 Free Software Foundation, Inc.
 
      Permission is granted to copy, distribute and/or modify this
      document under the terms of the GNU Free Documentation License,
@@ -1274,10 +1274,10 @@ Index
 
 
 Tag Table:
-Node: Top728
-Node: First Chapter1831
-Node: Copying2061
-Node: GNU Free Documentation License39627
-Node: Index64773
+Node: Top726
+Node: First Chapter1827
+Node: Copying2057
+Node: GNU Free Documentation License39623
+Node: Index64769
 
 End Tag Table
diff --git a/doc/bbdb.texi b/doc/bbdb.texi
index f8191b3..7932f14 100644
--- a/doc/bbdb.texi
+++ b/doc/bbdb.texi
@@ -7,7 +7,7 @@
 @copying
 This file documents the Insidious Big Brother Database (BBDB)
 
-Copyright (C) 2011-2017 Roland Winkler <winkler@@gnu.org>
+Copyright (C) 2011-2017 Free Software Foundation, Inc.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document



reply via email to

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