From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: samer Newsgroups: gmane.emacs.devel Subject: Re: master 3b8b549: emacs-lisp/package.el (package--incompatible-p): Check dependencies. Date: Sat, 14 Feb 2015 00:17:44 -0800 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1423901895 16169 80.91.229.3 (14 Feb 2015 08:18:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 14 Feb 2015 08:18:15 +0000 (UTC) Cc: bruce.connor.am@gmail.com To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 14 09:18:07 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YMXvS-00011f-So for ged-emacs-devel@m.gmane.org; Sat, 14 Feb 2015 09:18:07 +0100 Original-Received: from localhost ([::1]:59083 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMXvS-00009P-28 for ged-emacs-devel@m.gmane.org; Sat, 14 Feb 2015 03:18:06 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58591) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMXvF-000093-8W for emacs-devel@gnu.org; Sat, 14 Feb 2015 03:17:54 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YMXvA-00026n-6l for emacs-devel@gnu.org; Sat, 14 Feb 2015 03:17:53 -0500 Original-Received: from samertm.com ([162.243.37.26]:52015 helo=mail.samertm.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMXvA-00026W-3D for emacs-devel@gnu.org; Sat, 14 Feb 2015 03:17:48 -0500 Original-Received: by mail.samertm.com (Postfix, from userid 1010) id 7610E82104; Sat, 14 Feb 2015 08:17:46 +0000 (UTC) Original-Received: from samertm.com (localhost [127.0.0.1]) by mail.samertm.com (Postfix) with ESMTP id 9C2658071F; Sat, 14 Feb 2015 08:17:44 +0000 (UTC) X-Sender: samer@samertm.com User-Agent: Roundcube Webmail/0.9.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] X-Received-From: 162.243.37.26 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:183043 Archived-At: This commit breaks `package-initialize', because `package--initialized' is only set to t at the end of `package-initialize', but `package-initialize' calls `package-read-all-archive-contents', which calls `package--mapc', which calls `package-installed-p', which throws an error if `package--initialized' is nil. I don't know the intent of these changes well enough to suggest a fix. -samer