From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 546041381F3 for ; Sat, 6 Jul 2013 22:52:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F2A4E09C2; Sat, 6 Jul 2013 22:52:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A693AE09BE for ; Sat, 6 Jul 2013 22:52:43 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB97033E835 for ; Sat, 6 Jul 2013 22:52:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 50CF8E468F for ; Sat, 6 Jul 2013 22:52:41 +0000 (UTC) From: "Ulrich Mueller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Mueller" Message-ID: <1373150580.a2391bb46020f5e1efa2d6e4a778e13aa1c14e16.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:ebuild-mode commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ebuild-mode.el X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: a2391bb46020f5e1efa2d6e4a778e13aa1c14e16 X-VCS-Branch: ebuild-mode Date: Sat, 6 Jul 2013 22:52:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1eb8914c-1623-48c4-9604-ea83af178577 X-Archives-Hash: 2f5606ae9b2dd3bc2f839aebf9f488b1 commit: a2391bb46020f5e1efa2d6e4a778e13aa1c14e16 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jul 6 22:43:00 2013 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Sat Jul 6 22:43:00 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=a2391bb4 Add some comments to ebuild-mode-insert-skeleton. --- ebuild-mode.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ebuild-mode.el b/ebuild-mode.el index 2114b23..86b2f0a 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -395,20 +395,24 @@ and `all-completions' for details." (define-skeleton ebuild-mode-insert-skeleton "Insert a statement skeleton for a new ebuild." nil + ;; standard header "# Copyright 1999-" (format-time-string "%Y") " Gentoo Foundation\n" "# Distributed under the terms of the GNU General Public License v2\n" "# $Header: $\n" "\n" + ;; EAPI "EAPI=" (let ((s (skeleton-read "EAPI: "))) (if (string-equal "0" s) "" s)) & "\n\n" | -5 + ;; inherited eclasses "inherit " ((completing-read "Eclass (null string to terminate): " (mapcar 'list ebuild-mode-eclasses)) str & " ") & -1 & "\n\n" | -8 + ;; first variables block "DESCRIPTION=\"" (skeleton-read "Description: ") "\"\n" "HOMEPAGE=\"" (completing-read "Homepage: " '(("http://"))) "\"\n" "SRC_URI=\"" @@ -416,6 +420,7 @@ and `all-completions' for details." "Source URI: " (mapcar 'list '("http://" "ftp://" "mirror://"))) "\"\n" "\n" + ;; second variables block "LICENSE=\"" ((completing-read "License (null string to terminate): " @@ -444,6 +449,7 @@ and `all-completions' for details." str & " ") & -1 & "\"\n" | -10 "\n" + ;; dependencies "DEPEND=\"\"\n" "RDEPEND=\"\$\{DEPEND\}\"\n")