diff options
author | 2023-09-01 16:53:46 +0200 | |
---|---|---|
committer | 2023-09-01 16:53:46 +0200 | |
commit | ed4630fb422b61c45638986e7cb7c7bf684f4707 (patch) | |
tree | dbd4599ad55db8a0ae2fcd59ce2dc7f7012a8037 | |
parent | Version 1.66 released (diff) | |
download | ebuild-mode-ed4630fb422b61c45638986e7cb7c7bf684f4707.tar.gz ebuild-mode-ed4630fb422b61c45638986e7cb7c7bf684f4707.tar.bz2 ebuild-mode-ed4630fb422b61c45638986e7cb7c7bf684f4707.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..0453042 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. |