all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug in handling of package-unsigned-archives
@ 2017-02-20 15:50 Andy Moreton
  2017-02-25 13:04 ` Andy Moreton
  2017-06-05 22:16 ` Dmitry Gutov
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Moreton @ 2017-02-20 15:50 UTC (permalink / raw)
  To: emacs-devel


Consider the following package archive setup:

(setq package-archives '(("melpa" . "https://melpa.org/packages/")
                         ("gnu"   . "https://elpa.gnu.org/packages/")))
(setq package-check-signature   t)
(setq package-unsigned-archives '("melpa"))

Using "M-x list-packages" results in an error being reported: "Unsigned
file ‘archive-contents’ at https://melpa.org/packages/". This is caused
by an incorrect check in package.el - the following patch fixes it.

2017-02-20  Andy Moreton  <andrewjmoreton@gmail.com>

	Fix check for package-unsigned-archives during retrieval.

	* lisp/emacs-lisp/package.el (package--download-one-archive):
          Fix check for package-unsigned-archives.

diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 6728f1b..13b8051 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1522,7 +1522,7 @@ package--download-one-archive
       (when (listp (read-from-string content))
         (make-directory dir t)
         (if (or (not package-check-signature)
-                (member archive package-unsigned-archives))
+                (member name package-unsigned-archives))
             ;; If we don't care about the signature, save the file and
             ;; we're done.
             (progn (write-region content nil local-file nil 'silent)




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: bug in handling of package-unsigned-archives
  2017-02-20 15:50 bug in handling of package-unsigned-archives Andy Moreton
@ 2017-02-25 13:04 ` Andy Moreton
  2017-06-05 16:18   ` Richard Copley
  2017-06-05 22:16 ` Dmitry Gutov
  1 sibling, 1 reply; 5+ messages in thread
From: Andy Moreton @ 2017-02-25 13:04 UTC (permalink / raw)
  To: emacs-devel


Ping!

On Mon 20 Feb 2017, Andy Moreton wrote:

> Consider the following package archive setup:
>
> (setq package-archives '(("melpa" . "https://melpa.org/packages/")
>                          ("gnu"   . "https://elpa.gnu.org/packages/")))
> (setq package-check-signature   t)
> (setq package-unsigned-archives '("melpa"))
>
> Using "M-x list-packages" results in an error being reported: "Unsigned
> file ‘archive-contents’ at https://melpa.org/packages/". This is caused
> by an incorrect check in package.el - the following patch fixes it.
>
> 2017-02-20  Andy Moreton  <andrewjmoreton@gmail.com>
>
> 	Fix check for package-unsigned-archives during retrieval.
>
> 	* lisp/emacs-lisp/package.el (package--download-one-archive):
>           Fix check for package-unsigned-archives.
>
> diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
> index 6728f1b..13b8051 100644
> --- a/lisp/emacs-lisp/package.el
> +++ b/lisp/emacs-lisp/package.el
> @@ -1522,7 +1522,7 @@ package--download-one-archive
>        (when (listp (read-from-string content))
>          (make-directory dir t)
>          (if (or (not package-check-signature)
> -                (member archive package-unsigned-archives))
> +                (member name package-unsigned-archives))
>              ;; If we don't care about the signature, save the file and
>              ;; we're done.
>              (progn (write-region content nil local-file nil 'silent)




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bug in handling of package-unsigned-archives
  2017-02-25 13:04 ` Andy Moreton
@ 2017-06-05 16:18   ` Richard Copley
  2017-06-05 22:12     ` Dmitry Gutov
  0 siblings, 1 reply; 5+ messages in thread
From: Richard Copley @ 2017-06-05 16:18 UTC (permalink / raw)
  To: Andy Moreton; +Cc: Emacs Development

Andy's patch obviously fixes an obvious bug. According to my testing
the bug definitely exists and the the patch definitely fixes it. Would
someone with commit rights please commit it?

On 25 February 2017 at 13:04, Andy Moreton <andrewjmoreton@gmail.com> wrote:
>
> Ping!
>
> On Mon 20 Feb 2017, Andy Moreton wrote:
>
>> Consider the following package archive setup:
>>
>> (setq package-archives '(("melpa" . "https://melpa.org/packages/")
>>                          ("gnu"   . "https://elpa.gnu.org/packages/")))
>> (setq package-check-signature   t)
>> (setq package-unsigned-archives '("melpa"))
>>
>> Using "M-x list-packages" results in an error being reported: "Unsigned
>> file ‘archive-contents’ at https://melpa.org/packages/". This is caused
>> by an incorrect check in package.el - the following patch fixes it.
>>
>> 2017-02-20  Andy Moreton  <andrewjmoreton@gmail.com>
>>
>>       Fix check for package-unsigned-archives during retrieval.
>>
>>       * lisp/emacs-lisp/package.el (package--download-one-archive):
>>           Fix check for package-unsigned-archives.
>>
>> diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
>> index 6728f1b..13b8051 100644
>> --- a/lisp/emacs-lisp/package.el
>> +++ b/lisp/emacs-lisp/package.el
>> @@ -1522,7 +1522,7 @@ package--download-one-archive
>>        (when (listp (read-from-string content))
>>          (make-directory dir t)
>>          (if (or (not package-check-signature)
>> -                (member archive package-unsigned-archives))
>> +                (member name package-unsigned-archives))
>>              ;; If we don't care about the signature, save the file and
>>              ;; we're done.
>>              (progn (write-region content nil local-file nil 'silent)
>
>



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bug in handling of package-unsigned-archives
  2017-06-05 16:18   ` Richard Copley
@ 2017-06-05 22:12     ` Dmitry Gutov
  0 siblings, 0 replies; 5+ messages in thread
From: Dmitry Gutov @ 2017-06-05 22:12 UTC (permalink / raw)
  To: Richard Copley, Andy Moreton; +Cc: Emacs Development

On 6/5/17 7:18 PM, Richard Copley wrote:
> Andy's patch obviously fixes an obvious bug. According to my testing
> the bug definitely exists and the the patch definitely fixes it. Would
> someone with commit rights please commit it?

Done.	



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: bug in handling of package-unsigned-archives
  2017-02-20 15:50 bug in handling of package-unsigned-archives Andy Moreton
  2017-02-25 13:04 ` Andy Moreton
@ 2017-06-05 22:16 ` Dmitry Gutov
  1 sibling, 0 replies; 5+ messages in thread
From: Dmitry Gutov @ 2017-06-05 22:16 UTC (permalink / raw)
  To: Andy Moreton, emacs-devel

On 2/20/17 5:50 PM, Andy Moreton wrote:

> Using "M-x list-packages" results in an error being reported: "Unsigned
> file ‘archive-contents’ at https://melpa.org/packages/". This is caused
> by an incorrect check in package.el - the following patch fixes it.

Thank you, patch installed.

Please send it as a .patch file new time, though, so I don't need to 
copy-paste stuff from here to there. Especially if the next patch is bigger.



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-06-05 22:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-20 15:50 bug in handling of package-unsigned-archives Andy Moreton
2017-02-25 13:04 ` Andy Moreton
2017-06-05 16:18   ` Richard Copley
2017-06-05 22:12     ` Dmitry Gutov
2017-06-05 22:16 ` Dmitry Gutov

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.