Bastien <b...@gnu.org> writes: > Jonas Bernoulli <jo...@bernoul.li> writes: > >> All the *ELPAs extract metadata from the "main library", which by >> default is the library whose name matches the name of the package. >> >> If the name doesn't match, then it can be overridden, but some >> main library is required, even if it does nothing but provide >> the metadata and (provide 'org-contrib). >> >> I've already added "org-contrib" to the Emacsmirror, but because >> nothing like "org-contrib.el" exists, I had to randomly pick a >> library and as a result the package description for all of >> "org-contrib" currently is "Org-mode Babel support for Arduino". >> >> Please add "org-contrib.el" containing some juicy metadata. > > Well, I don't know if they are *that* juicy but I just added some. > Let me know how this look! And thanks for the above instructions, > that's very useful.
The commentary and summary are also part of the metadata that *ELPA and the Emacsmirror use. There are several additional issues and I think it's easiest if I just show you what I think the file should look like: ----------------------- ;;; org-contrib.el --- Add-ons that are no longer distributed with Org-mode ;; Copyright (C) 2021 Bastien Guerry ;; Author: Bastien Guerry <b...@gnu.org> ;; Homepage: https://git.sr.ht/~bzg/org-contrib ;; Package-Requires: ((emacs "25.1") (org "9.4.5")) ;; Package-Version: 0.0.1 ;; Keywords: org ;; SPDX-License-Identifier: GPL-3.0-or-later ;; This file is not part of GNU Emacs. ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary ;; This package contains add-ons to Org-mode which are not part of GNU ;; Emacs or of the official Org package. ;; ** This package receive little if no maintainance. ** ;; Especially, there is no guaranty that it is compatible with the latest ;; Org stable version. Would you would like to volunteer maintaining it? ;; If so, please send me an email at b...@gnu.org. ;; If you want to maintain only one or some of these add-ons please send ;; me an email and consider hosting the add-ons on a separate repository. ;; These files used to live in the Org repository but have been filtered ;; out of the Org 9.5 release and are stored here for archival purpose. ;; The contrib/ directory used to contain a scripts/ directory that now ;; lives on Worg: <https://code.orgmode.org/bzg/worg/src/master/code>. ;;; Note: ;; This file, org-contrib.el, provides metadata for the (future) ;; org-contrib GNU ELPA package. ;;; Code: (provide 'org-contrib) ;;; org-contrib.el ends here