diff options
author | 2023-09-01 16:53:46 +0200 | |
---|---|---|
committer | 2023-09-01 17:00:32 +0200 | |
commit | b748af297194138c13af08fa79a1e51f71c7e5ed (patch) | |
tree | 6a46eaa804faeee6d4ee78c28e8286be927a5368 | |
parent | Version 1.66 released (diff) | |
download | ebuild-mode-b748af297194138c13af08fa79a1e51f71c7e5ed.tar.gz ebuild-mode-b748af297194138c13af08fa79a1e51f71c7e5ed.tar.bz2 ebuild-mode-b748af297194138c13af08fa79a1e51f71c7e5ed.zip |
Add S and BDEPEND to ebuild skeleton
* ebuild-mode.el (ebuild-mode-insert-skeleton): Add S and BDEPEND.
Bug 729280.
Bug: https://bugs.gentoo.org/729280
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ebuild-mode.el | 7 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2023-09-01 Ulrich Müller <ulm@gentoo.org> + + * ebuild-mode.el (ebuild-mode-insert-skeleton): Add S and BDEPEND. + Bug 729280. + 2023-08-29 Ulrich Müller <ulm@gentoo.org> * Version 1.66 released. diff --git a/ebuild-mode.el b/ebuild-mode.el index 653abb7..ddc6ff1 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -744,6 +744,10 @@ that shall be manipulated." (completing-read "Source URI: " (mapcar 'list ebuild-mode-protocols-src_uri)) "\"\n" + "S=\"" + (completing-read "S (null string for default): " + '(("${WORKDIR}") ("${WORKDIR}/${PN}")) + & "\"\n" | -3 "\n" ;; second variables block "LICENSE=\"" @@ -773,7 +777,8 @@ that shall be manipulated." "\n" ;; dependencies "RDEPEND=\"\"\n" - "DEPEND=\"${RDEPEND}\"\n") + "DEPEND=\"${RDEPEND}\"\n" + "BDEPEND=\"\"\n") ;;; Minor mode for editing files in an ebuild repository. |