GNU bug report logs - #44671
28.0.50; Require Emacs 26.1, nor Emacs 26.3, in project.el and xref.el core packages

Previous Next

Package: emacs;

Reported by: João Távora <joaotavora <at> gmail.com>

Date: Sun, 15 Nov 2020 23:47:01 UTC

Severity: normal

Tags: fixed

Found in version 28.0.50

Fixed in version 28.1

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 44671 in the body.
You can then email your comments to 44671 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to david <at> dgreaves.com, bug-gnu-emacs <at> gnu.org:
bug#44671; Package emacs. (Sun, 15 Nov 2020 23:47:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to João Távora <joaotavora <at> gmail.com>:
New bug report received and forwarded. Copy sent to david <at> dgreaves.com, bug-gnu-emacs <at> gnu.org. (Sun, 15 Nov 2020 23:47:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: João Távora <joaotavora <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 28.0.50; Require Emacs 26.1, nor Emacs 26.3, in project.el and
 xref.el core packages
Date: Sun, 15 Nov 2020 23:46:24 +0000
Hi,

Some time ago, I made these two files into GNU ELPA "core" packages, and
I chose Emacs 26.3 as the minimum required version.  That was rather
arbitrary and I should have selected Emacs 26.1 instead.

This is because these packages are required by Eglot, which for now, is
specified to work in Emacs 26.1.

Recently an Eglot user complained that he could no longer run Eglot in
that Emacs version, stating that Emacs 26.1 is the version of Emacs
distributed with Debian stable.

So, I've (briefly) tested these two files in Emacs 26.1 and things seem
to work, so I propose the simple change in the patch after my sig.  If
no-one opposes, I'll push in few days or so.

João

diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index a395453491..82eb6f6976 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -1,8 +1,8 @@
 ;;; project.el --- Operations on the current project  -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2015-2020 Free Software Foundation, Inc.
-;; Version: 0.5.2
-;; Package-Requires: ((emacs "26.3") (xref "1.0.2"))
+;; Version: 0.5.3
+;; Package-Requires: ((emacs "26.1") (xref "1.0.2"))
 
 ;; This is a GNU ELPA :core package.  Avoid using functionality that
 ;; not compatible with the version of Emacs recorded above.
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index e1dd6e56bb..0fd1770cc1 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -1,8 +1,8 @@
 ;;; xref.el --- Cross-referencing commands              -*-lexical-binding:t-*-
 
 ;; Copyright (C) 2014-2020 Free Software Foundation, Inc.
-;; Version: 1.0.3
-;; Package-Requires: ((emacs "26.3"))
+;; Version: 1.0.4
+;; Package-Requires: ((emacs "26.1"))
 
 ;; This is a GNU ELPA :core package.  Avoid functionality that is not
 ;; compatible with the version of Emacs recorded above.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#44671; Package emacs. (Mon, 16 Nov 2020 00:46:02 GMT) Full text and rfc822 format available.

Message #8 received at 44671 <at> debbugs.gnu.org (full text, mbox):

From: João Távora <joaotavora <at> gmail.com>
To: 44671 <at> debbugs.gnu.org
Cc: david <at> dgreaves.com
Subject: Re: bug#44671: 28.0.50; Require Emacs 26.1, nor Emacs 26.3, in
 project.el and xref.el core packages
Date: Mon, 16 Nov 2020 00:45:10 +0000
[Message part 1 (text/plain, inline)]
Forgot to include the link to the original bug report
https://github.com/joaotavora/eglot/issues/562

João

On Sun, Nov 15, 2020 at 11:47 PM João Távora <joaotavora <at> gmail.com> wrote:

> Hi,
>
> Some time ago, I made these two files into GNU ELPA "core" packages, and
> I chose Emacs 26.3 as the minimum required version.  That was rather
> arbitrary and I should have selected Emacs 26.1 instead.
>
> This is because these packages are required by Eglot, which for now, is
> specified to work in Emacs 26.1.
>
> Recently an Eglot user complained that he could no longer run Eglot in
> that Emacs version, stating that Emacs 26.1 is the version of Emacs
> distributed with Debian stable.
>
> So, I've (briefly) tested these two files in Emacs 26.1 and things seem
> to work, so I propose the simple change in the patch after my sig.  If
> no-one opposes, I'll push in few days or so.
>
> João
>
> diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
> index a395453491..82eb6f6976 100644
> --- a/lisp/progmodes/project.el
> +++ b/lisp/progmodes/project.el
> @@ -1,8 +1,8 @@
>  ;;; project.el --- Operations on the current project  -*-
> lexical-binding: t; -*-
>
>  ;; Copyright (C) 2015-2020 Free Software Foundation, Inc.
> -;; Version: 0.5.2
> -;; Package-Requires: ((emacs "26.3") (xref "1.0.2"))
> +;; Version: 0.5.3
> +;; Package-Requires: ((emacs "26.1") (xref "1.0.2"))
>
>  ;; This is a GNU ELPA :core package.  Avoid using functionality that
>  ;; not compatible with the version of Emacs recorded above.
> diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
> index e1dd6e56bb..0fd1770cc1 100644
> --- a/lisp/progmodes/xref.el
> +++ b/lisp/progmodes/xref.el
> @@ -1,8 +1,8 @@
>  ;;; xref.el --- Cross-referencing commands
> -*-lexical-binding:t-*-
>
>  ;; Copyright (C) 2014-2020 Free Software Foundation, Inc.
> -;; Version: 1.0.3
> -;; Package-Requires: ((emacs "26.3"))
> +;; Version: 1.0.4
> +;; Package-Requires: ((emacs "26.1"))
>
>  ;; This is a GNU ELPA :core package.  Avoid functionality that is not
>  ;; compatible with the version of Emacs recorded above.
>
>
>
>

-- 
João Távora
[Message part 2 (text/html, inline)]

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#44671; Package emacs. (Wed, 27 Jan 2021 03:40:02 GMT) Full text and rfc822 format available.

Message #11 received at 44671 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: João Távora <joaotavora <at> gmail.com>
Cc: 44671 <at> debbugs.gnu.org, david <at> dgreaves.com
Subject: Re: bug#44671: 28.0.50; Require Emacs 26.1, nor Emacs 26.3, in
 project.el and xref.el core packages
Date: Wed, 27 Jan 2021 04:39:06 +0100
João Távora <joaotavora <at> gmail.com> writes:

> So, I've (briefly) tested these two files in Emacs 26.1 and things seem
> to work, so I propose the simple change in the patch after my sig.  If
> no-one opposes, I'll push in few days or so.

This was apparently never pushed?  Did you decide against it?

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#44671; Package emacs. (Wed, 27 Jan 2021 10:11:01 GMT) Full text and rfc822 format available.

Message #14 received at 44671 <at> debbugs.gnu.org (full text, mbox):

From: João Távora <joaotavora <at> gmail.com>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 44671 <at> debbugs.gnu.org, david <at> dgreaves.com
Subject: Re: bug#44671: 28.0.50; Require Emacs 26.1, nor Emacs 26.3, in
 project.el and xref.el core packages
Date: Wed, 27 Jan 2021 10:09:42 +0000
No, I just forgot about it.  I have a lot on my plate right now, do
you mind if I ask you to push it?

Thanks,
João

On Wed, Jan 27, 2021 at 3:39 AM Lars Ingebrigtsen <larsi <at> gnus.org> wrote:
>
> João Távora <joaotavora <at> gmail.com> writes:
>
> > So, I've (briefly) tested these two files in Emacs 26.1 and things seem
> > to work, so I propose the simple change in the patch after my sig.  If
> > no-one opposes, I'll push in few days or so.
>
> This was apparently never pushed?  Did you decide against it?
>
> --
> (domestic pets only, the antidote for overdose, milk.)
>    bloggy blog: http://lars.ingebrigtsen.no



-- 
João Távora




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#44671; Package emacs. (Wed, 27 Jan 2021 18:16:01 GMT) Full text and rfc822 format available.

Message #17 received at 44671 <at> debbugs.gnu.org (full text, mbox):

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: João Távora <joaotavora <at> gmail.com>,
 Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 44671 <at> debbugs.gnu.org, david <at> dgreaves.com
Subject: Re: bug#44671: 28.0.50; Require Emacs 26.1, nor Emacs 26.3, in
 project.el and xref.el core packages
Date: Wed, 27 Jan 2021 20:14:52 +0200
On 27.01.2021 12:09, João Távora wrote:
> No, I just forgot about it.  I have a lot on my plate right now, do
> you mind if I ask you to push it?

Please feel free to change the dependency line, but don't bump the xref 
version yet.

There are some changes there currently I'm not entirely confident in, to 
put them into a release.

For project.el both are okay.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#44671; Package emacs. (Thu, 28 Jan 2021 03:20:02 GMT) Full text and rfc822 format available.

Message #20 received at 44671 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Dmitry Gutov <dgutov <at> yandex.ru>
Cc: 44671 <at> debbugs.gnu.org, david <at> dgreaves.com,
 João Távora <joaotavora <at> gmail.com>
Subject: Re: bug#44671: 28.0.50; Require Emacs 26.1, nor Emacs 26.3, in
 project.el and xref.el core packages
Date: Thu, 28 Jan 2021 04:18:55 +0100
Dmitry Gutov <dgutov <at> yandex.ru> writes:

> On 27.01.2021 12:09, João Távora wrote:
>> No, I just forgot about it.  I have a lot on my plate right now, do
>> you mind if I ask you to push it?
>
> Please feel free to change the dependency line, but don't bump the
> xref version yet.
>
> There are some changes there currently I'm not entirely confident in,
> to put them into a release.
>
> For project.el both are okay.

OK; I've now pushed the dependency lines in both, but only bumped the
version in project.el.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Added tag(s) fixed. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Thu, 28 Jan 2021 03:20:02 GMT) Full text and rfc822 format available.

bug marked as fixed in version 28.1, send any further explanations to 44671 <at> debbugs.gnu.org and João Távora <joaotavora <at> gmail.com> Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Thu, 28 Jan 2021 03:20:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 25 Feb 2021 12:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 173 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.