From: Max Nikulin <manikulin@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: [PATCH v2] Add compat.el support to Org (was: [POLL] Use compat.el in Org? (was: Useful package? Compat.el))
Date: Sat, 8 Apr 2023 23:37:38 +0700 [thread overview]
Message-ID: <u0s58k$q2t$1@ciao.gmane.io> (raw)
In-Reply-To: <87jzymk3dq.fsf@localhost>
> +;; Package-Requires: ((emacs "26.1") (compat "29.1.4.1"))
Is there a way to express (or (compat "29.1.4.1") (emacs "28.1")) to
avoid installing compat in the case of sufficiently new emacs? E.g.
dpkg/apt allows such alternatives.
Early I asked concerning compat-29.1.3. I would prefer to install
elpa-compat system package to avoid network activity in response to
make. Required version matters for those who builds packages for
backport repositories for various linux distributions. It allows to
decide if it is necessary to provide newer elpa-compat or it is enough
to package elpa-org.
On 08/04/2023 18:41, Ihor Radchenko wrote:
>
> I see. Unfortunately, using third-party non-standard packages like
> makem.sh or eldev will be more troublesome. We will need to sync Org
> repo with them or demand users to install them separately.
I was looking for sources of inspiration. I do not suggest to take these
tools. Perhaps somebody may suggest a better example of build scripts
for Emacs packages.
>>>> I do not like the idea of network queries on every make.
>>> Any better suggestions?
>>
>> Do not run install dependencies for regular targets like test or
>> compile. At least do not do it unless it is explicitly requested by
>> command line argument or a variable in local.mk
>
> compat.el is required for "compile" target. Compilation will simply fail
> with older Emacs. And "test" triggers "compile".
There are different types of build systems. Some of them allows to
specify which dependencies should be pulled, some do not. My expectation
is that make does not attempt to manage dependencies. For me it is OK to
type an additional command to install them and to fail otherwise.
In my opinion
> + @$(FIND) $(pkgdir) \( -name \*.elc \) -exec $(RM) {} +
command tells that package management capabilities in Emacs are rather
rudimentary (in comparison to e.g. python toolchain). That is why I am
in favor to more manual dependency management. Notice that I am not
against an option to do it from make.
Untested:
$(FIND) $(pkgdir) -name \*.elc -delete
"@" for silencing is intentionally dropped, parenthesis are unnecessary
for single condition.
>>> Actually, we need pkgdir := $(shell pwd)/pkg-deps.
>>> CURDIR is wrong because default.mk will trigger evaluation in every make
>>> sub-process as well.
>>
>> default.mk is included from top level Makefile only.
>
> Not sure here. I just noticed that GITVERSION got re-calculated many
> times when looking at debug output of make. (It was slowing things down
> significantly). GITVERSION is in targets.mk though.
GITVERSION is defined as ?=, so it is a variable with deferred
evaluation. Immediately evaluated variable may defined using :=
>> pkgdir = $(top_builddir)/pkg-deps
>
> How to define top_builddir? If also via `pwd`, I see not much difference.
I consider it as self-documenting code. Intermediate variable makes it
apparent for readers that the directory is relative to the top of the
package file tree.
Since out of source tree builds are not supported, I would consider
adding emacs version to path. The idea is to allow keeping installed
packages when switching between several emacs versions.
A note concerning variable name. For me it is associated for the
directory where current package should be installed. I do not remember
origin, but I noticed that such meaning is used in arch
https://wiki.archlinux.org/title/creating_packages#Defining_PKGBUILD_variables
Perhaps the same name is in gentoo in other sense that makes it suitable
for storage of dependencies.
next prev parent reply other threads:[~2023-04-08 16:38 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-11 10:36 Useful package? Compat.el Timothy
2021-10-11 14:28 ` Russell Adams
2021-10-11 14:40 ` Timothy
2021-10-11 18:04 ` Joost Kremers
2023-01-27 13:23 ` [POLL] Use compat.el in Org? (was: Useful package? Compat.el) Ihor Radchenko
2023-01-27 13:34 ` [POLL] Use compat.el in Org? Bastien Guerry
2023-01-27 20:38 ` Tim Cross
2023-01-27 21:38 ` Daniel Mendler
2023-01-27 22:29 ` Samuel Wales
2023-01-28 16:04 ` [POLL] Use compat.el in Org? (was: Useful package? Compat.el) Kyle Meyer
2023-01-30 11:35 ` Greg Minshall
2023-01-30 19:33 ` Ihor Radchenko
2023-01-30 19:40 ` Greg Minshall
2023-01-30 21:38 ` Daniel Mendler
2023-04-01 10:31 ` [PATCH] Add compat.el support to Org (was: [POLL] Use compat.el in Org? (was: Useful package? Compat.el)) Ihor Radchenko
2023-04-01 11:38 ` Daniel Mendler
2023-04-01 14:20 ` Max Nikulin
2023-04-02 8:52 ` Ihor Radchenko
2023-04-02 15:31 ` Max Nikulin
2023-04-02 16:04 ` Ihor Radchenko
2023-04-02 16:37 ` Max Nikulin
2023-04-02 17:00 ` [PATCH v2] " Ihor Radchenko
2023-04-03 8:46 ` [PATCH v3] " Ihor Radchenko
2023-04-08 11:15 ` [PATCH v2] " Max Nikulin
2023-04-08 11:41 ` Ihor Radchenko
2023-04-08 16:37 ` Max Nikulin [this message]
2023-04-13 12:42 ` Ihor Radchenko
2023-04-17 17:20 ` Max Nikulin
2023-04-20 9:27 ` Ihor Radchenko
2023-04-28 15:27 ` Max Nikulin
2023-04-30 10:39 ` [PATCH v4] " Ihor Radchenko
2023-05-03 12:14 ` [PATCH] epm.el: A CLI tool for package.el Max Nikulin
2023-05-04 10:24 ` Ihor Radchenko
2023-05-04 16:16 ` Max Nikulin
2023-05-05 9:39 ` Ihor Radchenko
2023-05-06 6:39 ` [PATCH v4] Add compat.el support to Org (was: [POLL] Use compat.el in Org? (was: Useful package? Compat.el)) Max Nikulin
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
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='u0s58k$q2t$1@ciao.gmane.io' \
--to=manikulin@gmail.com \
--cc=emacs-orgmode@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 public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.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).