GNU bug report logs -
#14639
package-initialize not run
Previous Next
Reported by: Juanma Barranquero <lekktu <at> gmail.com>
Date: Mon, 17 Jun 2013 02:36:01 UTC
Severity: normal
Found in version 24.3.50
Done: Juanma Barranquero <lekktu <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Mon, 17 Jun 2013 17:36:17 +0200
with message-id <CAAeL0SSJiVbdDyMEs=s9CLOLFWJ+mr2K0iWdbRFGK2FQ7NmcQg <at> mail.gmail.com>
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
help-debbugs <at> gnu.org.)
--
14639: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14639
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Package: emacs
Version: 24.3.50
X-Debbugs-CC: monnier <at> iro.umontreal.ca
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.
[Message part 3 (message/rfc822, inline)]
On Mon, Jun 17, 2013 at 4:45 PM, Stefan Monnier
<monnier <at> iro.umontreal.ca> 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
This bug report was last modified 12 years and 33 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.