From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Artur Malabarba Newsgroups: gmane.emacs.devel Subject: Re: package.el dependencies Date: Wed, 28 Jan 2015 08:47:58 -0200 Message-ID: References: <87wq4dpqib.fsf@gmail.com> <87zj93uzuo.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a113d5b7cd1b069050db41a51 X-Trace: ger.gmane.org 1422452155 16810 80.91.229.3 (28 Jan 2015 13:35:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 Jan 2015 13:35:55 +0000 (UTC) Cc: Stefan Monnier , emacs-devel To: Thierry Volpiatto Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jan 28 14:35:55 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 1YGSmg-0004ny-BL for ged-emacs-devel@m.gmane.org; Wed, 28 Jan 2015 14:35:54 +0100 Original-Received: from localhost ([::1]:53557 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGSmf-00008i-Ov for ged-emacs-devel@m.gmane.org; Wed, 28 Jan 2015 08:35:53 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGQAC-0004o6-Dc for emacs-devel@gnu.org; Wed, 28 Jan 2015 05:48:01 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGQAB-0000T3-E7 for emacs-devel@gnu.org; Wed, 28 Jan 2015 05:48:00 -0500 Original-Received: from mail-oi0-x22e.google.com ([2607:f8b0:4003:c06::22e]:55830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGQAB-0000Sz-9c for emacs-devel@gnu.org; Wed, 28 Jan 2015 05:47:59 -0500 Original-Received: by mail-oi0-f46.google.com with SMTP id a141so16956097oig.5 for ; Wed, 28 Jan 2015 02:47:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=/0uGgPsGLhQc86zKAvH3SSl9gu1YWwqqCh/SgwrwikI=; b=Ay2pdaSBV77D4ve4t/xzXkk47LpQgn7zOw3lxxkus5FOZiic63rfRRnNrjuIC6c5+d 8i8tMNiYLorGp6P67YOI83mMjYoH3P6c1YqqQPZX/itfZjpymNGAaK6ScfHax8XgwT/c 2bEpAUqC125s7/Gzb9lcmX5+/OvLW1/kivkk5teEx5QEYPdGcxUXzJzmkWKaeoepJOO9 e7dNwj7EJjPiL041nIG+aBqs4qcQ3EqzE/nHmFPIPwlZlSOS6Jg1EoSSRezOefdMutv0 j5pj0SzdcQmIqg00nuFjeEk/C9hed3F0IaNcLcw0BR4Yi7KCWwT5m18ODUE7mfseN8tY bn3w== X-Received: by 10.202.218.135 with SMTP id r129mr1598582oig.26.1422442078775; Wed, 28 Jan 2015 02:47:58 -0800 (PST) Original-Received: by 10.76.125.1 with HTTP; Wed, 28 Jan 2015 02:47:58 -0800 (PST) In-Reply-To: <87zj93uzuo.fsf@gmail.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c06::22e X-Mailman-Approved-At: Wed, 28 Jan 2015 08:35:20 -0500 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:181905 Archived-At: --001a113d5b7cd1b069050db41a51 Content-Type: text/plain; charset=UTF-8 Hi, I'll read the rest later, but I just wanted to say one thing before leaving the house. On 28 Jan 2015 05:30, "Thierry Volpiatto" wrote: > diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el > index 88fc950..df3a108 100644 > --- a/lisp/emacs-lisp/package.el > +++ b/lisp/emacs-lisp/package.el > @@ -333,6 +333,15 @@ contents of the archive." > :group 'package > :version "24.4") > > +(defcustom packages-installed-directly nil > + "Store here packages installed explicitely by user. > +This variable will be feeded automaticaly by emacs, > +so you should not modify it yourself. Then don't make it a defcustom :-). `customize-save-variable' will work on any variable (even unbound ones), so a defvar is enough here. --001a113d5b7cd1b069050db41a51 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

Hi,
I'll read the rest later, but I just wanted to say one thing before lea= ving the house.

On 28 Jan 2015 05:30, "Thierry Volpiatto" <thierry.volpia= tto@gmail.com> wrote:
> diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el > index 88fc950..df3a108 100644
> --- a/lisp/emacs-lisp/package.el
> +++ b/lisp/emacs-lisp/package.el
> @@ -333,6 +333,15 @@ contents of the archive."
> =C2=A0 =C2=A0:group 'package
> =C2=A0 =C2=A0:version "24.4")
>
> +(defcustom packages-installed-directly nil
> +=C2=A0 "Store here packages installed explicitely by user.
> +This variable will be feeded automaticaly by emacs,
> +so you should not modify it yourself.

Then don't make it a defcustom :-). `customize-save-vari= able' will work on any variable (even unbound ones), so a defvar is eno= ugh here.

--001a113d5b7cd1b069050db41a51--