Re: bbdb3

Ken Gunderson <[email protected]> Fri, 19 Jan 2018 19:54:18 -0700
Newsgroups gmane.mail.wanderlust.general
Organization Teamcool Networks
Message-ID <86a7x98ckl.lw-kgunders__863.499349407171$1516416974$gmane$org@teamcool.net>
On Thu, 18 Jan 2018 16:11:40 -0700,
Randy Bush wrote:
> 
> been using wl for a while.  now forced to use a second laptop in
> confined $dayjob environment.  trying to set it up clean.
> 
> macosx high sierra
> emacs 25.3.1 from the emacs for mac site
> git cloned el-get
> el-get installed wanderlust
> 
> so what is the easy recipe for installing bbb3 this season, and where is
> the how-to for a simple set-up which adds to the database?
> 
> thanks
> 
> randy
> 
Dunno... ;-P

But....  Mayhaps check out the built-in pkg management options avail
in Emacs-25.x.  Then also use Paradox.  Methinks you will find smooth
sailings.

I is elisp brain deaded but summptin' akin to:

(require 'package)
(setq package-enable-at-startup nil)

(setq package-archives
      '(("gnu" . "https://elpa.gnu.org/packages/")
        ("melpa" . "https://melpa.org/packages/")
	("melpa-stable" . "https://stable.melpa.org/packages/")))

;; Sweet new feature of Emacs25.  Indeed :D
(setq package-archive-priorities
      '(("melpa-stable" . 80)
	("gnu" . 50 )
	("melpa" . 10)))

;; If a maintainer has a version that they've marked 'stable' then the
   priorities prefs will prefer that, else if not, grab whatever...;)

(setq package-menu-hide-low-priority "archive")

;; No longer needed for emacs25?
;; (setq package-menu-async t)

(package-initialize)

;;; Paradox - A better package.el UI 
(require 'paradox)
(paradox-enable)

Then youse can do things like:

(paradox-require 'circe)


Peace-- Ken