all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: ELPA (was: Re: How-to disable persistent *EBDB-Message* buffer?)
Date: Tue, 12 Jan 2021 20:53:32 +0100	[thread overview]
Message-ID: <87y2gyrkxv.fsf@zoho.eu> (raw)
In-Reply-To: 878s98561d.fsf_-_@zoho.eu

> Also... can you do it without having to do this
>
>   byte-compile=$(emacs) \
>      -batch \
>      -eval "(setq load-path (append load-path '(\"~/.emacs.d/elpa/gnuplot-mode-20171013.1616/\" \"~/.emacs.d/elpa/vterm-20201004.2057\" \"~/.emacs.d/elpa/markdown-mode-20201015.1327\" \"~/.emacs.d/elpa/w3m-20200818.141\" \"~/.emacs.d/emacs-init\" \"~/.emacs.d/emacs-init/ide\" \"~/.emacs.d/emacs-init/w3m\" \"~/.emacs.d/emacs-init/gnus\" \"~/.emacs.d/elpa/google-translate-20190620.1416\" )))" \
>      -f batch-byte-compile
>
> In the Makefile? (Set the load-path again for every pack, I mean.)
>
> https://dataswamp.org/~incal/emacs-init/Makefile

You can make it little more photogenic, a little less
error-prone, and give you a little more control by doing THIS,
but it's still the same, manual approach. Looks a lot better
tho so yeah, do it :)

emacs=/usr/local/bin/emacs

ema-path=~/.emacs.d/emacs-init
ema-gnus=\"${ema-path}/gnus\"
ema-ide=\"${ema-path}/ide\"
ema-init=\"${ema-path}\"
ema-w3m=\"${ema-path}/w3m\"
ema=${ema-gnus} ${ema-ide} ${ema-init} ${ema-w3m}

elpa-path=~/.emacs.d/elpa
markdown-mode=\"${elpa-path}/markdown-mode-20201220.253\"
w3m=\"${elpa-path}/w3m-20210104.424\"
elpa=${markdown-mode} ${w3m}

packs=${ema} ${elpa}

byte-compile=$(emacs)                                       \
	--batch                                                  \
	--eval "(setq load-path (append load-path '(${packs})))" \
	-f batch-byte-compile

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




      parent reply	other threads:[~2021-01-12 19:53 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-04 14:22 How-to disable persistent *EBDB-Message* buffer? Pankaj Jangid
2021-01-04 17:58 ` Eric Abrahamsen
2021-01-05  3:47   ` Pankaj Jangid
2021-01-05  5:03     ` ELPA (was: Re: How-to disable persistent *EBDB-Message* buffer?) Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-05 17:06       ` ELPA Eric Abrahamsen
2021-01-05 18:15         ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-05 18:52           ` ELPA Eric Abrahamsen
2021-01-05 18:57             ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-05 19:27               ` ELPA Eric Abrahamsen
2021-01-05 19:45       ` ELPA Stefan Monnier
2021-01-05 21:37         ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-12 18:00           ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-12 22:21             ` ELPA Stefan Monnier
2021-01-12 23:02               ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-13 15:01                 ` ELPA Stefan Monnier
2021-01-12 20:21           ` ELPA Stefan Monnier
2021-01-12 20:23             ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-12 21:29               ` ELPA Stefan Monnier
2021-01-12 21:35                 ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-12 21:57                   ` ELPA Emanuel Berg via Users list for the GNU Emacs text editor
2021-01-12 19:53       ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]

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=87y2gyrkxv.fsf@zoho.eu \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /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.