all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: tomas@tuxteam.de
To: Arthur Miller <arthur.miller@live.com>
Cc: emacs-devel@gnu.org
Subject: Re: Add a configure option for NATIVE_FULL_AOT?
Date: Fri, 20 Aug 2021 09:20:14 +0200	[thread overview]
Message-ID: <20210820072014.GC9839@tuxteam.de> (raw)
In-Reply-To: <AM9PR09MB4977E1469667EC9F25AD902B96C09@AM9PR09MB4977.eurprd09.prod.outlook.com>

[-- Attachment #1: Type: text/plain, Size: 4731 bytes --]

On Thu, Aug 19, 2021 at 11:17:57PM +0200, Arthur Miller wrote:
> <tomas@tuxteam.de> writes:
> 
> > On Thu, Aug 19, 2021 at 02:57:55AM +0200, Arthur Miller wrote:
> >> Yuri D'Elia <wavexx@thregr.org> writes:
> >> 
> >> > On Wed, Aug 18 2021, Andreas Schwab wrote:
> >> >> On Aug 18 2021, Arthur Miller wrote:
> >> >>
> >> >>> Sorry, I picking on it, I know that most of distributions do so, but
> >> >>> that is unfortunate practice against the nature of Emacs as application,
> >> >>> since Emacs comes with sources as fully modifiable and extendable
> >> >>> editor.
> >> >>
> >> >> Nothing prevents you from reading and modifying the lisp files.
> >> Y
> >> > I don't want to add anything which hasn't been said by others already,
> >> > but just point out that the way that emacs is packaged in debian is
> >> > actually pretty nice and convenient for many users, especially in a
> >> > multi-tenant setup.
> >> I haven't seen a Debian since somewhere around 2001 or something, so I
> >> really don't know how they do. But I think that many distros put elisp
> >> in /usr/share which is not user modifiable location by default.
> >
> > Basically, this is the FHS. /usr/share is for architecture-independent,
> > mostly immutable [1] stuff. Scripts written in some scripting language.
> > Timezone data. Bytecodes. That kind of stuff.
> 
> So emacs sources should not be in there.

That depends on what you mean by "sources" :-)

C sources "typically" not. But .el sources can be thought of as "scripts",
so possibly yes. Operatively, they can be replaced by the .elc, so a
distro which wants to give users the choice of "not installing sources"
(e.g. you want to *use* Emacs on your constrained Raspi, but to hack
on it you've got your shining new $10K Linux laptop), .el wouldn't go
there.

Debian, for example has one source package for each (set of) binary
package(s), including all the necessary buildery to reproduce those.
If you want sources, you download those. I think RedHat-ish distros
work more or less the same.

>                                          But than as other stuff also
> will also not end there, like .elc files if .el files are not there it
> almost implied that nothing of Emacs should be in /usr/share :-).

.elc are arch-independent files. Those are the typical examples of
things which go there. Also possibly .el, especially in the cases
you don't want them compiled. Icons, .xml, that kind of stuff. Docs
(/usr/share/doc).

To get an idea on what Debian (courtesy of the Emacsen maintainer,
Rob Browning) puts there for Emacs, have a look at [1].

>                                                                  So I
> guess, as suggested, someone who wishes to modify Emacs sources should
> download sources to their home directories and load after so all
> headaches avoided :).

That's the way I do it, since I compile from sources anyway. But if
someone wants to just override one .el in the whole kaboodle, and
this perhaps only temporarily, I don't see why the distro would have
to force her to do that, while there are easier ways.

> > But in these days of emulators [...] share... my /usr/share,
> > which is kind of nifty :-)
> 
> Indeed, that is nifty.

Actually this is just the repetition of one pattern, that of the
"nested environments", so dear to us in programming languages (think
scopes). The innermost environment takes precedence over the next
outer layers of the onion [2]. The world is a tree, where "your"
private world only depends on your path to the root. Yadda, yadda.

In the current OS context, there are three main layers -- operating
system (/bin, /lib, /usr/bin, etc.), machine instance (/usr/local
and so on, but also /etc), user whithin machine (/home/foo, mostly).

Somewhere between OS and machine instance there is another layer,
machine architecture.

That's why I was so surprised to see the tendency here "every user
has all of their .eln files in a local place". I'm not convinced
at all that this is a good idea [4]. Eli seems to be convinced of
this, and he's a much smarter person than me. Interesting :-)

Cheers
[1] https://packages.debian.org/buster/all/emacs-common/filelist
[2] I should rather say "shallot" [3], since it has several cores,
   resembling more the tree structure. Besides... yummy ;-)
[3] https://packages.debian.org/buster/all/emacs-common/filelist
[4] I'd prefer those .eln derived from (unchanged) system files
   to live in system places (outer layers of the shallot), and
   be provided, pre-compiled, by the system. Possibly in the
   architecture-dependent layer (they're architecture-dependent,
   I guess).

 - t

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  reply	other threads:[~2021-08-20  7:20 UTC|newest]

Thread overview: 86+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-17  8:53 Add a configure option for NATIVE_FULL_AOT? Ulrich Mueller
2021-08-17 11:42 ` Eli Zaretskii
2021-08-17 11:56   ` Ulrich Mueller
2021-08-17 12:09     ` Lars Ingebrigtsen
2021-08-17 13:03       ` Eli Zaretskii
2021-08-18 14:44         ` Lars Ingebrigtsen
2021-08-17 12:53     ` Eli Zaretskii
2021-08-17 13:07       ` Arthur Miller
2021-08-17 15:32       ` Yuri D'Elia
2021-08-17 17:01         ` Eli Zaretskii
2021-08-17 17:12           ` Yuri D'Elia
2021-08-17 18:19             ` Eli Zaretskii
2021-08-17 18:33           ` Andreas Schwab
2021-08-17 18:42             ` Eli Zaretskii
2021-08-17 18:46               ` Andreas Schwab
2021-08-17 19:01                 ` Eli Zaretskii
2021-08-17 19:05                   ` Andreas Schwab
2021-08-17 19:09                     ` Eli Zaretskii
2021-08-17 19:36               ` Ulrich Mueller
2021-08-18  0:48                 ` Arthur Miller
2021-08-18  7:29                   ` Andreas Schwab
2021-08-18 15:43                     ` Yuri D'Elia
2021-08-19  0:57                       ` Arthur Miller
2021-08-19  7:04                         ` tomas
2021-08-19 21:17                           ` Arthur Miller
2021-08-20  7:20                             ` tomas [this message]
2021-08-20 12:06                               ` Arthur Miller
2021-08-20 13:13                                 ` tomas
2021-08-20 19:51                                   ` Arthur Miller
2021-08-20 20:06                                     ` tomas
2021-08-20 21:25                                       ` Arthur Miller
2021-08-21  6:44                                         ` tomas
2021-08-21 18:20                                           ` Arthur Miller
2021-08-19  7:13                         ` Eli Zaretskii
2021-08-19 21:01                           ` Arthur Miller
2021-08-18  2:23                 ` Eli Zaretskii
2021-08-18  4:53                   ` Tassilo Horn
2021-08-18 12:07                     ` Eli Zaretskii
2021-08-19  2:34                       ` Richard Stallman
2021-08-19  6:30                         ` tomas
2021-08-19  7:07                         ` Eli Zaretskii
2021-08-19  7:17                           ` Andreas Schwab
2021-08-19  7:46                             ` Eli Zaretskii
2021-08-19  7:27                           ` tomas
2021-08-19  8:09                             ` Eli Zaretskii
2021-08-19 10:05                               ` tomas
2021-08-19 10:51                                 ` Eli Zaretskii
2021-08-19 12:49                                   ` tomas
2021-08-19 12:52                                     ` Eli Zaretskii
2021-08-19 13:09                                       ` tomas
2021-08-18  7:04                   ` Ulrich Mueller
2021-08-18 12:12                     ` Eli Zaretskii
2021-08-18  7:33                   ` tomas
2021-08-18 12:14                     ` Eli Zaretskii
2021-08-18 13:32                       ` tomas
2021-08-18 13:45                         ` Eli Zaretskii
2021-08-18 16:22                           ` tomas
2021-08-18 16:26                             ` Eli Zaretskii
2021-08-18 16:34                               ` tomas
2021-08-18 16:43                                 ` Eli Zaretskii
2021-08-18 16:56                                   ` tomas
2021-08-18 17:12                                     ` Eli Zaretskii
2021-08-18 16:48                             ` Stefan Monnier
2021-08-18 17:00                               ` tomas
2021-08-18 17:17                                 ` Eli Zaretskii
2021-08-18 17:34                                   ` tomas
2021-08-18 19:43                                   ` Andrea Corallo via Emacs development discussions.
2021-08-19  1:19                                     ` Stefan Monnier
2021-08-19  7:11                                       ` Eli Zaretskii
2021-08-19  8:01                                         ` Andrea Corallo via Emacs development discussions.
2021-08-18 17:04                               ` Eli Zaretskii
2021-08-18 19:44                                 ` Andrea Corallo via Emacs development discussions.
2021-08-19  7:17                                   ` Eli Zaretskii
2021-08-19  7:52                                     ` Andrea Corallo via Emacs development discussions.
2021-08-18 14:11           ` Stefan Kangas
2021-08-18 15:54             ` Eli Zaretskii
2021-08-18 19:13           ` Gunnar Horrigmo
2021-08-18 19:24             ` Eli Zaretskii
2021-08-20  8:22               ` Gunnar Horrigmo
2021-08-20 10:47                 ` Eli Zaretskii
2021-08-20 13:06                   ` Gunnar Horrigmo
  -- strict thread matches above, loose matches on Subject: below --
2021-08-17 16:03 Tom Gillespie
2021-08-17 17:13 ` Eli Zaretskii
2021-08-17 21:52   ` Tom Gillespie
2021-08-18 12:04     ` Eli Zaretskii
2021-08-18  0:33 ` Arthur Miller

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=20210820072014.GC9839@tuxteam.de \
    --to=tomas@tuxteam.de \
    --cc=arthur.miller@live.com \
    --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.