From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Uwe Brauer Newsgroups: gmane.emacs.devel Subject: Re: matlab-mode MELPA, link contact FAQ? Date: Fri, 15 Apr 2016 17:02:50 +0000 Message-ID: <87r3e66c05.fsf@mat.ucm.es> References: <87inzjw6fv.fsf@mat.ucm.es> <5710D4C6.9040003@gmail.com> <8737qm7vrk.fsf@mat.ucm.es> <571109C6.2020002@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1460740524 22223 80.91.229.3 (15 Apr 2016 17:15:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 15 Apr 2016 17:15:24 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 15 19:15:15 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ar7Kt-0007sS-Df for ged-emacs-devel@m.gmane.org; Fri, 15 Apr 2016 19:15:15 +0200 Original-Received: from localhost ([::1]:38099 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ar7Ks-0004Nk-DF for ged-emacs-devel@m.gmane.org; Fri, 15 Apr 2016 13:15:14 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46168) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ar795-0004Oc-RI for emacs-devel@gnu.org; Fri, 15 Apr 2016 13:03:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ar791-000404-UV for emacs-devel@gnu.org; Fri, 15 Apr 2016 13:03:03 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:37697) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ar791-0003yn-O8 for emacs-devel@gnu.org; Fri, 15 Apr 2016 13:02:59 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ar78z-0006My-MY for emacs-devel@gnu.org; Fri, 15 Apr 2016 19:02:57 +0200 Original-Received: from gilgamesch.quim.ucm.es ([147.96.12.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Apr 2016 19:02:57 +0200 Original-Received: from oub by gilgamesch.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 15 Apr 2016 19:02:57 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 61 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: gilgamesch.quim.ucm.es Mail-Copies-To: never User-Agent: Gnus/5.130016 (Ma Gnus v0.16) Emacs/25.1.50 (gnu/linux) Cancel-Lock: sha1:wqWP7063eVUT496L9pkeCWf8PyM= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:202960 Archived-At: > On 04/15/2016 11:10 AM, Uwe Brauer wrote: > Not really; it's specific to the distribution part, which you don't > care about. From the metadata in the headers (for single-file > packages) or in …-pkg.el (for multi-file packages) MELPA will build a > tar files that users download through package.el. Ok thanks. I am sorry to nag, but I find the lack of some manual frustrating. If I understand correctly, all I have to do is to provide a file matlab-pkg.el, then automatically the info string will be updated. But I am not sure about its contend. Looking up in packages I installed from MELPA such as helm-bibtex-pkg.el does not really help because it contains strings I presume are generated during installation, namely the string "20160412.1353" as in ,---- | | (define-package "helm-bibtex" "20160412.1353" "A BibTeX bibliography manager based on Helm" | '((helm "1.5.5") | (parsebib "1.0") | (s "1.9.0") | (dash "2.6.0") | (f "0.16.2") | (cl-lib "0.5") | (biblio "0.2"))) | ;; Local Variables: | ;; no-byte-compile: t | ;; End: `---- So based on this how should matlab-pkg.el look? For example ,---- | ;;; -*- no-byte-compile: t -*- | (define-package "matlab-mode" "20131013.2205" "Major mode for MATLAB(R) dot-m files" | 'nil | :keywords | '("matlab" "programming" "language" "(X)emacs")) `---- Or ,---- | ;;; -*- no-byte-compile: t -*- | (define-package "matlab-mode" " " "Major mode for MATLAB(R) dot-m files" | 'nil | :keywords | '("matlab" "programming" "language" "(X)emacs")) `---- Thanks