emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] main afcf174: * elpa-packages: Rename from `externals-list`.


From: Stefan Monnier
Subject: [nongnu] main afcf174: * elpa-packages: Rename from `externals-list`.
Date: Fri, 18 Dec 2020 17:13:16 -0500 (EST)

branch: main
commit afcf174a0706791bdbe7b3558f4a97e9c1faad73
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * elpa-packages: Rename from `externals-list`.
    
    Also use :url instead of :external.
    
    * elpa-config (specs-file): Adjust the accordingly.
---
 elpa-config    |  5 +++--
 elpa-packages  | 27 +++++++++++++++++++++++++++
 externals-list | 50 --------------------------------------------------
 3 files changed, 30 insertions(+), 52 deletions(-)

diff --git a/elpa-config b/elpa-config
index 7c82055..e38d684 100644
--- a/elpa-config
+++ b/elpa-config
@@ -5,5 +5,6 @@
  (url                  "https://elpa.nongnu.org/nongnu/";)
  (branch-prefix                "externals/")
  (release-branch-prefix        "externals-release/")
- (specs-file           "externals-list")
- (debug                        nil))
+ ;;(specs-file         "elpa-packages")
+ ;;(debug              nil)
+ )
diff --git a/elpa-packages b/elpa-packages
new file mode 100644
index 0000000..2eeea97
--- /dev/null
+++ b/elpa-packages
@@ -0,0 +1,27 @@
+;; -*- lisp-data -*-
+
+;; List of packages.
+;; The list is made of elements of the form (NAME . PLIST)
+;; Every package needs a corresponding Git branch in the repository
+;; with name `externals/NAME`.
+;;
+;; See "Specifications" in the admin/README file for the properties
+;; that can be used in PLIST.
+
+(
+ ("caml"               :url "https://github.com/ocaml/caml-mode";
+  ;; The version 4.7.1 from Melpa-stable seems to correspond to
+  ;; revision a9134009.
+  :version-map ((nil "4.7.1" "a9134009bd037a39cbda21806867d0534d340bca")))
+ ("markdown-mode"      :url "https://github.com/jrblevin/markdown-mode";
+  :readme "README.md"
+  ;; Not needed any more:
+  ;; :dont-release "-dev\\'"
+  )
+ ("sly"                        :url "https://github.com/joaotavora/sly";
+  :texinfo "doc/sly.texi"
+  ;; Not needed any more:
+  ;; :version-map (("1.0.0-beta-3" "1.0.0beta3"))
+  )
+ ("tuareg"             :url "https://github.com/ocaml/tuareg.git";)
+ )
diff --git a/externals-list b/externals-list
deleted file mode 100644
index 969509c..0000000
--- a/externals-list
+++ /dev/null
@@ -1,50 +0,0 @@
-;; -*- lisp-data -*-
-
-;; List of packages.
-;; The list is made of elements of the form (NAME . PLIST)
-;; Every package needs a corresponding Git branch in the repository
-;; with name `externals/NAME`.
-;;
-;; PLIST uses the following properties
-;;
-;; :external URL
-;;   This specifies the location of the upstream code, usually a Git URL.
-;;
-;; :branch BRANCH
-;;   This specified the Git branch that we follow.
-;;   By default, we follow the `master' branch.
-;;
-;; :version-map MAP
-;;   A list of element of the form (ORIG-VERSION REMAPPED-VERSION REVISION)
-;;   This allows replacing the ORIG-VERSION from the <pkg>.el file
-;;   with REMAPPED-VERSION (e.g. because the ORIG-VERSION is not a valid
-;;   version number, is missing, or because we want to create a new package
-;;   from the same code version).
-;;   It also makes it possible to specify that this ORIG-VERSION
-;;   (or REMAPPED-VERSION if non-nil) corresponds to REVISION to override
-;;   the default heuristic which looks at the commit that modified the
-;;   "Version:" header.
-;;
-;; :dont-release REGEXP
-;;   A regexp matching version numbers which should not be released.
-;;   This can be used for example to prevent releasing alpha/beta quality code
-;;   while still allowing this code to appear with proper version info
-;;   in the NonGNU-devel archive.
-
-(
- ("caml"               :external "https://github.com/ocaml/caml-mode";
-  ;; The version 4.7.1 from Melpa-stable seems to correspond to
-  ;; revision a9134009.
-  :version-map ((nil "4.7.1" "a9134009bd037a39cbda21806867d0534d340bca")))
- ("markdown-mode"      :external "https://github.com/jrblevin/markdown-mode";
-  :readme "README.md"
-  ;; Not needed any more:
-  ;; :dont-release "-dev\\'"
-  )
- ("sly"                        :external "https://github.com/joaotavora/sly";
-  :texinfo "doc/sly.texi"
-  ;; Not needed any more:
-  ;; :version-map (("1.0.0-beta-3" "1.0.0beta3"))
-  )
- ("tuareg"             :external "https://github.com/ocaml/tuareg.git";)
- )



reply via email to

[Prev in Thread] Current Thread [Next in Thread]