all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: emacs-devel@gnu.org
Subject: Re: Installing binaries with package.el
Date: Tue, 07 Feb 2017 11:05:23 -0500	[thread overview]
Message-ID: <jwvwpd23shv.fsf-monnier+gmane.emacs.devel@gnu.org> (raw)
In-Reply-To: 3fdcbe78-969e-f9e1-2a9d-a5f8494c35b3@mit.edu

> Can package.el install binaries?  That is, if my package includes a command
> line interface, can I ask package.el to install it to somewhere like
> .emacs.d/bin, or ~/.bin?  Or should I do this by adding autoloaded code that
> runs at package installation time?

package.el installs packages using a very simple procedure:
- untar the package into ~/.emacs.d/elpa/<pkg>-<vers>
- create the autoloads file.
- byte-compile the .el files.

If you want to do something else, you have to abuse one of the above
steps, and the only one that can be abused reliably is the byte-compile
step.  E.g. you can place in one of the .el files something like

    (eval-when-compile
      ...copy some file to ~/bin...)

The same trick can be used by pdf-tools and dynloaded modules.
But obviously, package.el should be extended to support this more directly.

In your case the problem of course, is that when uninstalling a package,
the procedure is even simpler:
- rm -r ~/.emacs.d/elpa/<pkg>-<vers>
and I don't know of any way to abuse this to also remove something you
might have added to ~/bin.

Notice that this second problem doesn't affect cases such as dynloaded
modules or pdf-tools.


        Stefan




  parent reply	other threads:[~2017-02-07 16:05 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-07  2:09 Installing binaries with package.el Clément Pit--Claudel
2017-02-07  5:29 ` Marcin Borkowski
2017-02-07  5:33   ` Clément Pit-Claudel
2017-02-07  7:22     ` Marcin Borkowski
2017-02-07 13:12       ` Clément Pit-Claudel
2017-02-07 15:07         ` Ted Zlatanov
2017-02-07 16:15           ` Clément Pit-Claudel
2017-02-07 19:40             ` Ted Zlatanov
2017-02-09 13:10               ` Stefan Monnier
2017-02-09 16:20                 ` Ted Zlatanov
2017-02-09 17:39                   ` Stefan Monnier
2017-02-09 19:36                     ` Ted Zlatanov
2017-02-09 22:43                     ` Stephen Leake
2017-02-08 18:40     ` Andreas Politz
2017-02-09 15:33       ` Stefan Monnier
2017-02-09 21:55         ` Andreas Politz
2017-02-10  6:09           ` Stefan Monnier
2017-02-07 16:05 ` Stefan Monnier [this message]
2017-02-07 16:16   ` Clément Pit-Claudel
2017-02-07 16:58     ` Aurélien Aptel
2017-02-07 17:45       ` Stefan Monnier
2017-02-07 20:17 ` Achim Gratz
2017-02-07 21:58   ` Clément Pit-Claudel
2017-02-07 23:34     ` Kaushal Modi
2017-02-08  1:35       ` Clément Pit-Claudel
2017-02-08 18:52     ` Achim Gratz
2017-02-08 19:17       ` Andreas Politz
2017-02-08 19:44         ` Achim Gratz
2017-02-08 21:36       ` Clément Pit-Claudel
2017-02-09 19:47         ` Achim Gratz
2017-02-09 20:11           ` Clément Pit-Claudel
2017-02-09 22:48           ` Stephen Leake

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwvwpd23shv.fsf-monnier+gmane.emacs.devel@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.