emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 de50e2ad4cd: Ensure bind-key is its own package


From: Stefan Kangas
Subject: emacs-29 de50e2ad4cd: Ensure bind-key is its own package
Date: Fri, 22 Sep 2023 06:32:34 -0400 (EDT)

branch: emacs-29
commit de50e2ad4cd62f83986af82002c83359a5b88d64
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    Ensure bind-key is its own package
    
    * lisp/finder.el (finder--builtins-alist): Remove "use-package"
    directory.
    * lisp/use-package/bind-key.el: Declare library as part of the
    'bind-key' package.
    * lisp/use-package/use-package-bind-key.el:
    * lisp/use-package/use-package-core.el:
    * lisp/use-package/use-package-delight.el:
    * lisp/use-package/use-package-diminish.el:
    * lisp/use-package/use-package-ensure-system-package.el:
    * lisp/use-package/use-package-ensure.el:
    * lisp/use-package/use-package-jump.el:
    * lisp/use-package/use-package-lint.el: Declare library as part of the
    'use-package' package.  (Bug#62751)
    
    Do not merge to master.
---
 lisp/finder.el                                        | 1 -
 lisp/use-package/bind-key.el                          | 1 +
 lisp/use-package/use-package-bind-key.el              | 1 +
 lisp/use-package/use-package-core.el                  | 1 +
 lisp/use-package/use-package-delight.el               | 1 +
 lisp/use-package/use-package-diminish.el              | 1 +
 lisp/use-package/use-package-ensure-system-package.el | 1 +
 lisp/use-package/use-package-ensure.el                | 1 +
 lisp/use-package/use-package-jump.el                  | 1 +
 lisp/use-package/use-package-lint.el                  | 1 +
 10 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/lisp/finder.el b/lisp/finder.el
index a4cda1255ca..ab28e356703 100644
--- a/lisp/finder.el
+++ b/lisp/finder.el
@@ -166,7 +166,6 @@ would otherwise be.")
     ("org"  . org)
     ("srecode" . srecode)
     ("term" . emacs)
-    ("use-package" . use-package)
     ("url"  . url))
   "Alist of built-in package directories.
 Each element should have the form (DIR . PACKAGE), where DIR is a
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el
index 95dda958375..35042ecb2a7 100644
--- a/lisp/use-package/bind-key.el
+++ b/lisp/use-package/bind-key.el
@@ -6,6 +6,7 @@
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
 ;; Created: 16 Jun 2012
 ;; Version: 2.4.1
+;; Package: bind-key
 ;; Package-Requires: ((emacs "24.3"))
 ;; Keywords: keys keybinding config dotemacs extensions
 ;; URL: https://github.com/jwiegley/use-package
diff --git a/lisp/use-package/use-package-bind-key.el 
b/lisp/use-package/use-package-bind-key.el
index 47eb066eba0..22679f5a9db 100644
--- a/lisp/use-package/use-package-bind-key.el
+++ b/lisp/use-package/use-package-bind-key.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-core.el 
b/lisp/use-package/use-package-core.el
index 7ab5bdc276f..14d6c29cdca 100644
--- a/lisp/use-package/use-package-core.el
+++ b/lisp/use-package/use-package-core.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-delight.el 
b/lisp/use-package/use-package-delight.el
index 4f571cd3990..7c4cb3bfc4f 100644
--- a/lisp/use-package/use-package-delight.el
+++ b/lisp/use-package/use-package-delight.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-diminish.el 
b/lisp/use-package/use-package-diminish.el
index f683694dbd8..b1213695a63 100644
--- a/lisp/use-package/use-package-diminish.el
+++ b/lisp/use-package/use-package-diminish.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-ensure-system-package.el 
b/lisp/use-package/use-package-ensure-system-package.el
index ef4afac1a0b..6f9413237ca 100644
--- a/lisp/use-package/use-package-ensure-system-package.el
+++ b/lisp/use-package/use-package-ensure-system-package.el
@@ -8,6 +8,7 @@
 ;; Version: 0.2
 ;; Package-Requires: ((use-package "2.1") (system-packages "1.0.4"))
 ;; Filename: use-package-ensure-system-package.el
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-ensure.el 
b/lisp/use-package/use-package-ensure.el
index e0ea982594e..515b8bb3383 100644
--- a/lisp/use-package/use-package-ensure.el
+++ b/lisp/use-package/use-package-ensure.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-jump.el 
b/lisp/use-package/use-package-jump.el
index 4fc5c3f0a8e..0a74f94e155 100644
--- a/lisp/use-package/use-package-jump.el
+++ b/lisp/use-package/use-package-jump.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 
diff --git a/lisp/use-package/use-package-lint.el 
b/lisp/use-package/use-package-lint.el
index 9239d01148a..4884b4506e6 100644
--- a/lisp/use-package/use-package-lint.el
+++ b/lisp/use-package/use-package-lint.el
@@ -4,6 +4,7 @@
 
 ;; Author: John Wiegley <johnw@newartisans.com>
 ;; Maintainer: John Wiegley <johnw@newartisans.com>
+;; Package: use-package
 
 ;; This file is part of GNU Emacs.
 



reply via email to

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