emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#14639: closed (package-initialize not run)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#14639: closed (package-initialize not run)
Date: Mon, 17 Jun 2013 15:38:02 +0000

Your message dated Mon, 17 Jun 2013 17:36:17 +0200
with message-id <address@hidden>
and subject line Re: bug#14639: package-initialize not run
has caused the debbugs.gnu.org bug report #14639,
regarding package-initialize not run
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
14639: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14639
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: package-initialize not run Date: Mon, 17 Jun 2013 04:34:16 +0200
Package: emacs
Version: 24.3.50
X-Debbugs-CC: address@hidden


package-initialize is not being run because the code to detect
description files does

  (when (let ((subdir (expand-file-name subdir dir)))
          (and (file-directory-p subdir)
               (file-exists-p
                (package--description-file subdir))))
    (throw 'package-dir-found t)))))))

but package--description-file does not return an absolute filename, so
file-exists-p fails.

Either this patch is needed,

=== modified file 'lisp/startup.el'
--- lisp/startup.el 2013-06-15 15:36:11 +0000
+++ lisp/startup.el 2013-06-17 02:21:06 +0000
@@ -1204,5 +1204,7 @@
                          (and (file-directory-p subdir)
                               (file-exists-p
-                               (package--description-file subdir))))
+                               (expand-file-name
+                                (package--description-file subdir)
+                                subdir))))
    (throw 'package-dir-found t)))))))
        (package-initialize))


or modifying package--description-file to return an absolute path.



--- End Message ---
--- Begin Message --- Subject: Re: bug#14639: package-initialize not run Date: Mon, 17 Jun 2013 17:36:17 +0200
On Mon, Jun 17, 2013 at 4:45 PM, Stefan Monnier
<address@hidden> wrote:

> Looks good (if you grep a bit, you'll see there are calls to
> package--description-file which need a relative file name, because it's
> used to find a file in a tar archive rather than in the file-system).

I see.

Committed in revno:113021


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]