summaryrefslogtreecommitdiff
path: root/lisp/use-package/use-package-ensure-system-package.el
Commit message (Collapse)AuthorAgeFilesLines
* ; Don't record multiple versions of use-packageEli Zaretskii2024-01-071-1/+0
| | | | | * lisp/use-package/use-package-ensure-system-package.el: Remove Version: header, to avoid confusing loaddefs-gene. (Bug#68304)
* ; Add 2024 to copyright yearsPo Lu2024-01-021-1/+1
|
* Ensure bind-key is its own packageStefan Kangas2023-09-221-0/+1
| | | | | | | | | | | | | | | | | | * 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.
* ; Add 2023 to copyright years.Eli Zaretskii2023-01-011-1/+1
|
* ; Improve use-package Commentary sectionsStefan Kangas2022-12-091-1/+5
| | | | | | | | | * lisp/use-package/bind-key.el: * lisp/use-package/use-package-bind-key.el: * lisp/use-package/use-package-core.el: * lisp/use-package/use-package-ensure-system-package.el: * lisp/use-package/use-package-ensure.el: * lisp/use-package/use-package.el: Improve Commentary sections.
* ; Normalize GPLv3 license statements in new filesStefan Kangas2022-12-091-5/+6
|
* ; use-package: Improve :ensure-system-package docstringsStefan Kangas2022-12-081-4/+6
| | | | | | | | | * lisp/use-package/use-package-ensure-system-package.el (use-package-ensure-system-package--custom-packages) (use-package-ensure-system-package-consify) (use-package-ensure-system-package-update-custom-packages) (use-package-normalize/:ensure-system-package) (use-package-ensure-system-package-exists?): Improve docstrings.
* Normalize GPLv3 license statementsStefan Kangas2022-11-161-2/+13
|
* Various checkdoc fixesStefan Kangas2022-11-141-2/+2
|
* Update copyright for submission to ELPAPayas Relekar2022-10-251-1/+1
| | | | | - Update year to 2022 - Set copyright to Free Software Foundation, Inc.
* Merge pull request from waymondo/ensure-system-packages-use-package-as-oneJohn Wiegley2022-08-071-1/+1
|\ | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/774
| * use `use-package-as-one` for normalizing `:ensure-system-package`Justin Talbott2019-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the preferred syntax consistent with other `use-package` keywords. All of these are now valid: ``` (use-package format-all :ensure-system-package (prettier . "npm i -g prettier") (rufo . "gem install rufo")) (use-package format-all :ensure-system-package ((prettier . "npm i -g prettier") (rufo . "gem install rufo"))) (use-package format-all :ensure-system-package (prettier . "npm i -g prettier")) ```
* | feat: add update custom packages commandDaniel Perez Alvarez2021-04-171-1/+10
|/ | | | Copyright-paperwork-exempt: yes
* [] Install system packages using system-packages-installLaurence Rochfort2018-09-121-10/+12
| | | | | | | | | | | | | | | | | | | :ensure-system-package was installing packages by running system-packages-get-command via async-shell-command. This meant that system-packages-use-sudo wasn't being honoured. This patch makes :ensure-system-package use system-packages-install for all cases, except where a custom install command is supplied, in which case async-shell-command is used. This issue was introduced in 9f034a0bcfdd8c4 [https://github.com/jwiegley/use-package/issues/673], as a fix for [https://github.com/jwiegley/use-package/issues/661]. Prior to that commit, system-packages-use-sudo was being honoured. This patch also fixes a bug where a cons containing a lone symbol in a list of conses causes nil to used as the package to install. GitHub-reference: fix https://github.com/jwiegley/use-package/issues/720 Copyright-paperwork-exempt: yes
* allow :ensure-system-package to check the presence of files at pathJustin Talbott2018-07-091-1/+8
| | | | closes https://github.com/jwiegley/use-package/issues/660
* Enable lexical bindingAlex Branham2018-06-131-4/+4
| | | | This supersedes https://github.com/jwiegley/use-package/issues/617 and closes https://github.com/jwiegley/use-package/issues/648
* Ensure system package cleanupArtyom Khramov2018-05-201-3/+1
| | | | | | | | | | | | | The function introduced in https://github.com/jwiegley/use-package/issues/673 wasn't declared at compile time, and it made byte compiler unhappy. Moreover, it was forgotten to remove redundant compile time variables. Thanks @tarsius for pointing that out. This change * Removes redundant variable declarations * Adds `system-packages-get-command` function declaration. Copyright-paperwork-exempt: yes
* [] ensure-system-package: honor system-packages customizationsArtyom Khramov2018-04-261-12/+2
| | | | | | | | | | | ensure-system-package doesn't honor system-packages customizations (https://github.com/jwiegley/use-package/issues/661), because system-packages didn't provide an API to retrieve shell command to be executed. This change makes use of the new system-packages' `system-package-get-command` function and therefore fixes the issue. GitHub-reference: fix https://github.com/jwiegley/use-package/issues/661 Copyright-paperwork-exempt: yes
* :ensure-system-package allow cdr of cons to be a package name symbolJustin Talbott2018-03-161-1/+5
| | | | closes https://github.com/jwiegley/use-package/issues/652
* lexical bindingAlex Branham2018-01-261-1/+1
|
* Prefer non-obsolete var namesAlex Branham2018-01-261-6/+6
|
* Add missing autoload cookiesJohn Wiegley2017-12-051-0/+2
| | | | Fixes https://github.com/jwiegley/use-package/issues/555
* Please the byte-compilerJohn Wiegley2017-12-041-1/+6
|
* Normalize some whitespace and ordering in new codeJohn Wiegley2017-12-041-2/+3
|
* Add `use-package-chords` and `use-package-ensure-system-package`Justin Talbott2017-12-041-0/+70
Also update docs on usage connect to https://github.com/jwiegley/use-package/issues/516