From: Uwe Brauer via Matlab-emacs-discuss <matlab-emacs-discuss-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
To: Philip Kaludercic <philipk-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.org>
Cc: Matlab-emacs-discuss
<matlab-emacs-discuss-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>,
Andrea Corallo <acorallo-mXXj517/zsQ@public.gmane.org>,
emacs-devel-mXXj517/zsQ@public.gmane.org
Subject: Re: having emacs-matlab in ELPA, finally. FSF paper signed
Date: Sat, 23 Nov 2024 14:19:30 +0100 [thread overview]
Message-ID: <874j3y2il9.fsf@mat.ucm.es> (raw)
In-Reply-To: 87ldxansy5.fsf@posteo.net
[-- Attachment #1.1: Type: text/plain, Size: 3011 bytes --]
> Uwe Brauer <oub-YB6e1s5WF/He5aOfsHch1g@public.gmane.org> writes:
> You don't have to do anything*, I just have to add a package
> specification (similar to the "recipe file" for MELPA) to elpa.git.
> * As soon as it works. The main issues right now, are as you noticed
> that ELPA doesn't release a new tarball for every commit, but just
> when a new version is released. We track this by checking for commits
> that bump the "Version" header in the main file (in your case
> matlab.el). You currently don't have any version number, so the build
> fails. I would suggest applying a change like this, if it doesn't
> break any assumptions you have regarding the minimal Emacs version:
> diff --git a/matlab.el b/matlab.el
> index 8ca0ee24a2..b82229a672 100644
> --- a/matlab.el
> +++ b/matlab.el
> @@ -5,11 +5,7 @@
> ;; Maintainer: Eric M. Ludlam <eludlam-I5WecO5yM8GakBO8gow8eQ@public.gmane.org>
> ;; Created: 04 Jan 91
> ;; Keywords: MATLAB(R)
> -;; Version:
> -
> -(defconst matlab-mode-version "5.0"
> - "Current version of MATLAB(R) mode.")
> -
> +;; Version: 5.0
> ;;
> ;; Copyright (C) 1997-2022 Eric M. Ludlam
> ;; Copyright (C) 1991-1997 Matthew R. Wette
> @@ -50,6 +46,10 @@
> ;;; Code:
> +(defconst matlab-mode-version (package-get-version)
> + "Current version of MATLAB(R) mode.")
> +
> +
> (require 'matlab-compat)
> (require 'matlab-syntax)
> (require 'matlab-scan)
A couple of remarks,
1. this diff seems against an older matlab-mode version (may the one
in sourceforge), the latest github version is 6.2
https://github.com/mathworks/Emacs-MATLAB-Mode.git
2. Jonas Bernoulli one of the MELPA maintainers, recommended (but
did not demand) to add file called matlab-mode.el which is
basically a dummy file but also contains the current version
> The other issue is that ELPA checks the copyright string and wants to
> see that all packages in GNU ELPA have their copyright assigned to the
> FSF.
There is an automated process for checking this. If I had known, it
would have saved my quite a bit of time and work. I eyeballed the logs
and if there was an unknown author I checked the diff, and if necessary
contacted him.
> If you can fix these two things, then everything should go through.
> You can then decide to filter out files out of the final tarball by
> adding an .elpaignore file that lists what files to exclude.
1. I will add an elpaignore file, which is urgent,
2. And concerning the version number, what shall I do, your proposal
or Stefan's?
For the moment being I would like to keep the MELPA version as well till
I know ELPA works
Uwe
--
I strongly condemn Hamas heinous despicable pogroms/atrocities on Israel
I strongly condemn Putin's war of aggression against Ukraine.
I support to deliver weapons to Ukraine's military.
I support the EU and NATO membership of Ukraine.
[-- Attachment #1.2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5684 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- Attachment #3: Type: text/plain, Size: 219 bytes --]
_______________________________________________
Matlab-emacs-discuss mailing list
Matlab-emacs-discuss-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/matlab-emacs-discuss
next prev parent reply other threads:[~2024-11-23 13:19 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-02 12:45 having emacs-matlab in ELPA, finally. FSF paper signed Uwe Brauer
2024-08-06 21:55 ` Andrea Corallo
2024-08-07 17:03 ` Uwe Brauer
2024-08-07 17:54 ` Andrea Corallo
2024-08-12 11:20 ` Philip Kaludercic
2024-08-12 11:33 ` Andreas Schwab
2024-08-12 11:38 ` Philip Kaludercic
2024-08-12 12:16 ` Uwe Brauer
2024-08-12 12:29 ` Philip Kaludercic
2024-08-12 14:58 ` Uwe Brauer
2024-08-12 15:06 ` Philip Kaludercic
2024-08-12 15:17 ` Uwe Brauer
2024-08-12 16:11 ` Philip Kaludercic
2024-11-22 16:12 ` Uwe Brauer
2024-11-23 10:30 ` Philip Kaludercic
2024-11-23 12:07 ` Stefan Kangas
2024-11-23 13:22 ` Uwe Brauer
2024-11-23 19:13 ` Stefan Kangas
2024-11-24 8:16 ` Uwe Brauer
2024-11-24 11:12 ` Stefan Kangas
2024-11-24 14:07 ` Uwe Brauer
2024-11-24 19:59 ` Philip Kaludercic
2024-11-24 20:37 ` Uwe Brauer
2024-11-24 21:34 ` Philip Kaludercic
2024-11-25 7:37 ` Uwe Brauer via Emacs development discussions.
2024-11-25 7:45 ` Uwe Brauer via Emacs development discussions.
2024-11-23 13:19 ` Uwe Brauer via Matlab-emacs-discuss [this message]
2024-11-23 13:30 ` having emacs-matlab in ELPA, finally. FSF paper signed, " Uwe Brauer
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=874j3y2il9.fsf@mat.ucm.es \
--to=matlab-emacs-discuss-5nwgofrqmnerv+lv9mx5uipxlwaovq5f@public.gmane.org \
--cc=acorallo-mXXj517/zsQ@public.gmane.org \
--cc=emacs-devel-mXXj517/zsQ@public.gmane.org \
--cc=oub-YB6e1s5WF/He5aOfsHch1g@public.gmane.org \
--cc=philipk-VwIFZPTo/vqsTnJN9+BGXg@public.gmane.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.