unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21138: 24.5; package system not initializing
@ 2015-07-27  4:09 Jerry Asher
  2015-07-27  6:25 ` Glenn Morris
  2015-07-27  9:44 ` Artur Malabarba
  0 siblings, 2 replies; 7+ messages in thread
From: Jerry Asher @ 2015-07-27  4:09 UTC (permalink / raw)
  To: 21138

On a fresh install of 24.5, I am not seeing the package system initialize.

package-enable-at-startup is t

and based on

http://www.gnu.org/software/emacs/manual/html_node/elisp/Packaging-Basics.html#Packaging-Basics


> Whenever Emacs starts up, it automatically calls the function package-initialize to load installed packages. This is done after loading the init file and abbrev file (if any) and before running after-init-hook (see Startup Summary). Automatic package loading is disabled if the user option package-enable-at-startup is nil.

I am not calling package-initialize.

Do I need to call package-initialize in 24.5? The documentation
implies I do not.

Thanks,

Jerry





In GNU Emacs 24.5.1 (i686-pc-mingw32)
 of 2015-04-11 on LEG570
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --prefix=/c/usr --host=i686-pc-mingw32'

Important settings:
  value of $LANG: ENU
  locale-coding-system: cp1252

Major mode: Package Menu

Minor modes in effect:
  tooltip-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  buffer-read-only: t
  line-number-mode: t
  transient-mark-mode: t

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
zlib library not found
Contacting host: elpa.gnu.org:80

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug sendmail mule-util mm-archive message
format-spec rfc822 mml easymenu mml-sec mailabbrev gmm-utils mailheader
mm-decode mm-bodies mm-encode mail-utils network-stream starttls
url-http tls mail-parse rfc2231 rfc2047 rfc2045 ietf-drums url-gw
url-cache url-auth url url-proxy url-privacy url-expand url-methods
url-history url-cookie url-domsuf url-util mailcap url-handlers
url-parse auth-source eieio byte-opt bytecomp byte-compile cl-extra
cl-loaddefs cl-lib cconv eieio-core gnus-util mm-util help-fns
mail-prsvr password-cache url-vars finder-inf package epg-config
time-date tooltip electric uniquify ediff-hook vc-hooks lisp-float-type
mwheel dos-w32 ls-lisp w32-common-fns disp-table w32-win w32-vars
tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment
lisp-mode prog-mode register page menu-bar rfn-eshadow timer select
scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham
georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese hebrew greek romanian slovak czech european ethiopic
indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple
abbrev minibuffer nadvice loaddefs button faces cus-face macroexp files
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget hashtable-print-readable backquote make-network-process
w32notify w32 multi-tty emacs)

Memory information:
((conses 8 120956 13531)
 (symbols 32 20353 0)
 (miscs 32 36 89)
 (strings 16 20741 3703)
 (string-bytes 1 556580)
 (vectors 8 13196)
 (vector-slots 4 421956 13306)
 (floats 8 68 262)
 (intervals 28 4156 591)
 (buffers 508 12))





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

* bug#21138: 24.5; package system not initializing
  2015-07-27  4:09 bug#21138: 24.5; package system not initializing Jerry Asher
@ 2015-07-27  6:25 ` Glenn Morris
  2015-07-27  9:44 ` Artur Malabarba
  1 sibling, 0 replies; 7+ messages in thread
From: Glenn Morris @ 2015-07-27  6:25 UTC (permalink / raw)
  To: Jerry Asher; +Cc: 21138

Jerry Asher wrote:

> On a fresh install of 24.5, I am not seeing the package system initialize.

Works for me:

rm -rf /tmp/foo
mkdir /tmp/foo
HOME=/tmp/foo emacs-24.5
M-x list-packages RET
install "coffee-mode" as a random example
C-x C-c
HOME=/tmp/foo emacs-24.5 1.coffee
   -> buffer is in Coffee mode





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

* bug#21138: 24.5; package system not initializing
  2015-07-27  4:09 bug#21138: 24.5; package system not initializing Jerry Asher
  2015-07-27  6:25 ` Glenn Morris
@ 2015-07-27  9:44 ` Artur Malabarba
  2015-07-27 11:29   ` Alexis
  1 sibling, 1 reply; 7+ messages in thread
From: Artur Malabarba @ 2015-07-27  9:44 UTC (permalink / raw)
  To: Jerry Asher; +Cc: 21138

> Do I need to call package-initialize in 24.5? The documentation
> implies I do not.

You do not.

> On a fresh install of 24.5, I am not seeing the package system initialize.

What makes you think that?
What values do you get for `package--initialized` and for
`package-enable-at-startup` after Emacs has finished starting up?





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

* bug#21138: 24.5; package system not initializing
  2015-07-27  9:44 ` Artur Malabarba
@ 2015-07-27 11:29   ` Alexis
  2015-07-27 12:02     ` Artur Malabarba
  2015-07-27 16:05     ` Glenn Morris
  0 siblings, 2 replies; 7+ messages in thread
From: Alexis @ 2015-07-27 11:29 UTC (permalink / raw)
  To: 21138


Artur Malabarba <bruce.connor.am@gmail.com> writes:

>> Do I need to call package-initialize in 24.5? The documentation 
>> implies I do not.
>
> You do not.
>
>> On a fresh install of 24.5, I am not seeing the package system 
>> initialize.
>
> What makes you think that?  What values do you get for 
> `package--initialized` and for `package-enable-at-startup` after 
> Emacs has finished starting up?

i'm on 24.5.2 (manually compiled on Debian Jessie x86_64), and 
when i comment out `package-initialize' from my init.el and start 
a non-daemonised instance of Emacs, startup doesn't fully complete 
due to `package-archives' being a void variable on which my config 
tries to use `add-to-list'. Then, commenting out such lines, i get 
errors on calls to things like `emms-all' - i have 
emms-20150519.736 installed from MELPA. After startup completes, 
`package--initialized' and `package-enable-at-startup' are both 
set to `t'.


Alexis.





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

* bug#21138: 24.5; package system not initializing
  2015-07-27 11:29   ` Alexis
@ 2015-07-27 12:02     ` Artur Malabarba
  2015-07-27 16:05     ` Glenn Morris
  1 sibling, 0 replies; 7+ messages in thread
From: Artur Malabarba @ 2015-07-27 12:02 UTC (permalink / raw)
  To: Alexis; +Cc: 21138

> i'm on 24.5.2 (manually compiled on Debian Jessie x86_64), and when i
> comment out `package-initialize' from my init.el and start a non-daemonised
> instance of Emacs, startup doesn't fully complete due to `package-archives'
> being a void variable on which my config tries to use `add-to-list'. Then,
> commenting out such lines, i get errors on calls to things like `emms-all' -
> i have emms-20150519.736 installed from MELPA. After startup completes,
> `package--initialized' and `package-enable-at-startup' are both set to `t'.

That's all expected. ;-)
In 24.5, by default, package-initialize is called at the *end* of
initialization. So packages have not yet been activated while your
init file is being loaded.





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

* bug#21138: 24.5; package system not initializing
  2015-07-27 11:29   ` Alexis
  2015-07-27 12:02     ` Artur Malabarba
@ 2015-07-27 16:05     ` Glenn Morris
  2015-07-28  5:09       ` Alexis
  1 sibling, 1 reply; 7+ messages in thread
From: Glenn Morris @ 2015-07-27 16:05 UTC (permalink / raw)
  To: Alexis; +Cc: 21138

Alexis wrote:

> i'm on 24.5.2 (manually compiled on Debian Jessie x86_64), and when i
> comment out `package-initialize' from my init.el and start a
> non-daemonised instance of Emacs, startup doesn't fully complete due
> to `package-archives' being a void variable on which my config tries
> to use `add-to-list'. Then, commenting out such lines, i get errors on
> calls to things like `emms-all' - i have emms-20150519.736 installed
> from MELPA. After startup completes, `package--initialized' and
> package-enable-at-startup' are both set to `t'.

The documentation that you quoted in your initial report explained that
packages are initialized _after_ processing the init file. So if you
want to use a package in your init file, then yes, you need to manually
init the package system before doing so. If all you wanted to do was
manipulate package-archives, then you could require package, or use
customize, as for any other such variable.





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

* bug#21138: 24.5; package system not initializing
  2015-07-27 16:05     ` Glenn Morris
@ 2015-07-28  5:09       ` Alexis
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis @ 2015-07-28  5:09 UTC (permalink / raw)
  To: 21138


Glenn Morris <rgm@gnu.org> writes:

> The documentation that you quoted in your initial report 
> explained that packages are initialized _after_ processing the 
> init file. So if you want to use a package in your init file, 
> then yes, you need to manually init the package system before 
> doing so.

i'm not the OP, but thanks, noted. :-)


Alexis.





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

end of thread, other threads:[~2015-07-28  5:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-27  4:09 bug#21138: 24.5; package system not initializing Jerry Asher
2015-07-27  6:25 ` Glenn Morris
2015-07-27  9:44 ` Artur Malabarba
2015-07-27 11:29   ` Alexis
2015-07-27 12:02     ` Artur Malabarba
2015-07-27 16:05     ` Glenn Morris
2015-07-28  5:09       ` Alexis

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).