2018-01-26 22:37:47 -06:00
|
|
|
;;; use-package-ensure-system-package.el --- auto install system packages -*- lexical: t; -*-
|
2017-12-04 10:57:23 -05:00
|
|
|
|
|
|
|
;; Copyright (C) 2017 Justin Talbott
|
|
|
|
|
|
|
|
;; Author: Justin Talbott <justin@waymondo.com>
|
|
|
|
;; Keywords: convenience, tools, extensions
|
|
|
|
;; URL: https://github.com/waymondo/use-package-ensure-system-package
|
|
|
|
;; Version: 0.1
|
|
|
|
;; Package-Requires: ((use-package "2.1") (system-packages "0.1"))
|
|
|
|
;; Filename: use-package-ensure-system-package.el
|
|
|
|
;; License: GNU General Public License version 3, or (at your option) any later version
|
|
|
|
;;
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;; The `:ensure-system-package` keyword allows you to ensure system
|
|
|
|
;; binaries exist alongside your `use-package` declarations.
|
|
|
|
;;
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'use-package)
|
2017-12-04 11:53:35 -08:00
|
|
|
(require 'system-packages nil t)
|
|
|
|
|
|
|
|
(eval-when-compile
|
2018-01-26 22:37:31 -06:00
|
|
|
(defvar system-packages-package-manager)
|
2017-12-04 11:53:35 -08:00
|
|
|
(defvar system-packages-supported-package-managers)
|
2018-01-26 22:37:31 -06:00
|
|
|
(defvar system-packages-use-sudo))
|
2017-12-04 10:57:23 -05:00
|
|
|
|
|
|
|
(defun use-package-ensure-system-package-install-command (pack)
|
2018-01-26 22:37:31 -06:00
|
|
|
"Return the default install command for PACK."
|
2017-12-04 10:57:23 -05:00
|
|
|
(let ((command
|
2018-01-26 22:37:31 -06:00
|
|
|
(cdr (assoc 'install (cdr (assoc system-packages-package-manager
|
2017-12-04 10:57:23 -05:00
|
|
|
system-packages-supported-package-managers))))))
|
|
|
|
(unless command
|
2018-01-26 22:37:31 -06:00
|
|
|
(error (format "%S not supported in %S" 'install system-packages-package-manager)))
|
2017-12-04 10:57:23 -05:00
|
|
|
(unless (listp command)
|
|
|
|
(setq command (list command)))
|
2018-01-26 22:37:31 -06:00
|
|
|
(when system-packages-use-sudo
|
2017-12-04 10:57:23 -05:00
|
|
|
(setq command (mapcar (lambda (part) (concat "sudo " part)) command)))
|
|
|
|
(setq command (mapconcat 'identity command " && "))
|
|
|
|
(mapconcat 'identity (list command pack) " ")))
|
|
|
|
|
|
|
|
(defun use-package-ensure-system-package-consify (arg)
|
|
|
|
"Turn `arg' into a cons of (`package-name' . `install-command')."
|
|
|
|
(cond
|
|
|
|
((stringp arg)
|
|
|
|
(cons arg (use-package-ensure-system-package-install-command arg)))
|
|
|
|
((symbolp arg)
|
|
|
|
(cons arg (use-package-ensure-system-package-install-command (symbol-name arg))))
|
|
|
|
((consp arg) arg)))
|
|
|
|
|
2017-12-05 10:28:28 -08:00
|
|
|
;;;###autoload
|
2017-12-04 10:57:23 -05:00
|
|
|
(defun use-package-normalize/:ensure-system-package (name-symbol keyword args)
|
|
|
|
"Turn `arg' into a list of cons-es of (`package-name' . `install-command')."
|
|
|
|
(use-package-only-one (symbol-name keyword) args
|
|
|
|
(lambda (label arg)
|
|
|
|
(cond
|
|
|
|
((and (listp arg) (listp (cdr arg)))
|
|
|
|
(mapcar #'use-package-ensure-system-package-consify arg))
|
|
|
|
(t
|
|
|
|
(list (use-package-ensure-system-package-consify arg)))))))
|
|
|
|
|
2017-12-05 10:28:28 -08:00
|
|
|
;;;###autoload
|
2017-12-04 10:57:23 -05:00
|
|
|
(defun use-package-handler/:ensure-system-package (name keyword arg rest state)
|
|
|
|
"Execute the handler for `:ensure-system-package' keyword in `use-package'."
|
|
|
|
(let ((body (use-package-process-keywords name rest state)))
|
|
|
|
(use-package-concat
|
|
|
|
(mapcar #'(lambda (cons)
|
|
|
|
`(unless (executable-find (symbol-name ',(car cons)))
|
|
|
|
(async-shell-command ,(cdr cons)))) arg)
|
|
|
|
body)))
|
|
|
|
|
2017-12-04 09:31:13 -08:00
|
|
|
(add-to-list 'use-package-keywords :ensure-system-package t)
|
|
|
|
|
2017-12-04 10:57:23 -05:00
|
|
|
(provide 'use-package-ensure-system-package)
|
2017-12-04 09:31:13 -08:00
|
|
|
|
2017-12-04 10:57:23 -05:00
|
|
|
;;; use-package-ensure-system-package.el ends here
|