From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lawrence Bottorff Subject: Can't install org-plus-contrib from org elpa Date: Wed, 25 Jan 2017 15:24:40 -0500 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a1130c122b8741f0546f105dd Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWU7Y-0000Uy-4u for emacs-orgmode@gnu.org; Wed, 25 Jan 2017 15:24:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWU7X-0001gf-6g for emacs-orgmode@gnu.org; Wed, 25 Jan 2017 15:24:44 -0500 Received: from mail-ot0-x22a.google.com ([2607:f8b0:4003:c0f::22a]:34986) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cWU7X-0001gV-1G for emacs-orgmode@gnu.org; Wed, 25 Jan 2017 15:24:43 -0500 Received: by mail-ot0-x22a.google.com with SMTP id 65so160741655otq.2 for ; Wed, 25 Jan 2017 12:24:41 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode Mailinglist --001a1130c122b8741f0546f105dd Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable I'm trying a clean install with this in my init.el (require 'package) (add-to-list 'package-archives '("melpa-stable" . "http://melpa-stable.milkbox.net/packages/")) (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) ;; Initialize all the ELPA packages (what is installed using the packages commands) (package-initialize) (when (not package-archive-contents) (package-refresh-contents)) (defvar my-packages '(;; org mode org ;; org mode plus contrib org-plus-contrib)) (dolist (p my-packages) (when (not (package-installed-p p)) (package-install p))) eval-buffer-ing this gives package-compute-transaction: Package =E2=80=98org-plus-contrib-=E2=80=99 is= unavailable It's as if it's looking for a specific org-plus-contrib-xxxx.tar ? Never had this problem before. LB --001a1130c122b8741f0546f105dd Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
I'm trying a clean install with this in my init.el
(require 'package)
(add-to-list 'pac= kage-archives
=C2=A0 '("melpa-stable" . "http://melpa-stable.milkbo= x.net/packages/"))

(add-to-list 'pack= age-archives
=C2=A0 =C2=A0 '("org" . "http://orgmode.org/elpa/"))
;; Initialize all the ELPA packages (what is installed using t= he packages commands)
(package-initialize)

(when (not package-archive-contents)
=C2=A0 (package-refresh-c= ontents))


(defvar my-packages
=
=C2=A0 '(;; org mode
=C2=A0 =C2=A0 org
=C2=A0 = =C2=A0 ;; org mode plus contrib
=C2=A0 =C2=A0 org-plus-contrib))<= /div>


(dolist (p my-packages)
= =C2=A0 (when (not (package-installed-p p))
=C2=A0 =C2=A0 (package= -install p)))


eval-buffer-ing= this gives

package-compute-transaction:= Package =E2=80=98org-plus-contrib-=E2=80=99 is unavailable
=

It's as if it's looking for a specific=C2= =A0org-plus-contrib-xxxx.tar ? Never had this problem before.
LB
--001a1130c122b8741f0546f105dd--