From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eMJsr-0001pl-8O for guix-patches@gnu.org; Tue, 05 Dec 2017 15:32:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eMJso-00084C-2J for guix-patches@gnu.org; Tue, 05 Dec 2017 15:32:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:39448) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eMJsn-000845-Uv for guix-patches@gnu.org; Tue, 05 Dec 2017 15:32:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eMJsn-00011S-M7 for guix-patches@gnu.org; Tue, 05 Dec 2017 15:32:01 -0500 Subject: [bug#29582] [PATCH] gnu: git-modes: Rename to 'emacs-git-modes'. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eMJsP-0001p8-MC for guix-patches@gnu.org; Tue, 05 Dec 2017 15:31:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eMJsM-0007uf-JL for guix-patches@gnu.org; Tue, 05 Dec 2017 15:31:37 -0500 Received: from mail-lf0-x22b.google.com ([2a00:1450:4010:c07::22b]:35152) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eMJsM-0007u8-9N for guix-patches@gnu.org; Tue, 05 Dec 2017 15:31:34 -0500 Received: by mail-lf0-x22b.google.com with SMTP id j124so1799257lfg.2 for ; Tue, 05 Dec 2017 12:31:33 -0800 (PST) Received: from leviafan ([217.107.194.137]) by smtp.gmail.com with ESMTPSA id a15sm201406ljb.11.2017.12.05.12.31.31 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 05 Dec 2017 12:31:31 -0800 (PST) From: Alex Kost Date: Tue, 05 Dec 2017 23:31:30 +0300 Message-ID: <87shcokjbx.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29582@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, what about renaming 'git-modes' to 'emacs-git-modes' (similarly to 'emacs-paredit')? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-git-modes-Rename-to-emacs-git-modes.patch >From 6b36950703b1fa589ac0ee9e2343c7970a7859f6 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Tue, 5 Dec 2017 23:27:23 +0300 Subject: [PATCH] gnu: git-modes: Rename to 'emacs-git-modes'. * gnu/packages/emacs.scm (git-modes)[name]: Change to "emacs-git-modes". (git-modes/old-name): New variable. --- gnu/packages/emacs.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index e5e6cf097..0ca8add53 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -377,7 +377,7 @@ when typing parentheses directly or commenting out code line by line.") (define-public git-modes (package - (name "git-modes") + (name "emacs-git-modes") (version "1.2.6") (source (origin (method url-fetch) @@ -396,6 +396,9 @@ when typing parentheses directly or commenting out code line by line.") configuration files, such as .gitattributes, .gitignore, and .git/config.") (license license:gpl3+))) +(define-public git-modes/old-name + (deprecated-package "git-modes" git-modes)) + (define-public emacs-with-editor (package (name "emacs-with-editor") -- 2.14.2 --=-=-=--