guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#57389] [PATCH 06/29] gnu: Rename editorconfig-vim to vim-editorconf


From: (
Subject: [bug#57389] [PATCH 06/29] gnu: Rename editorconfig-vim to vim-editorconfig.
Date: Wed, 24 Aug 2022 18:08:33 +0100

* gnu/packages/vim.scm (vim-editorconfig): Rename from editorconfig-vim.
Improve description. Modernize formatting.
(editorconfig-vim): Deprecate in favour of vim-editorconfig.
---
 gnu/packages/vim.scm | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 53ab5c9d72..180e1b4dce 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -611,35 +611,35 @@ (define-public vim-solarized
 switching between the light and dark background modes.")
       (license license:expat))))
 
-(define-public editorconfig-vim
+(define-public vim-editorconfig
   (package
-    (name "editorconfig-vim")
+    (name "vim-editorconfig")
     (version "1.1.1")
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/editorconfig/editorconfig-vim";)
-               (commit (string-append "v" version))))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32
-          "0mp80bi2m56bb93szw87vy6q5s85yk9g91sl4pr51316rgdv5kkv"))))
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/editorconfig/editorconfig-vim";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0mp80bi2m56bb93szw87vy6q5s85yk9g91sl4pr51316rgdv5kkv"))))
     (build-system copy-build-system)
     (arguments
-     '(#:install-plan
-       '(("autoload" "share/vim/vimfiles/")
-         ("doc" "share/vim/vimfiles/")
-         ("plugin" "share/vim/vimfiles/"))))
-    (home-page "https://editorconfig.org/";)
+     (list #:install-plan
+           #~'(("autoload" "share/vim/vimfiles/")
+               ("doc" "share/vim/vimfiles/")
+               ("plugin" "share/vim/vimfiles/"))))
+    (home-page "https://editorconfig.org";)
     (synopsis "EditorConfig plugin for Vim")
-    (description "EditorConfig makes it easy to maintain the correct coding
-style when switching between different text editors and between different
-projects.  The EditorConfig project maintains a file format and plugins for
-various text editors which allow this file format to be read and used by those
-editors.")
+    (description
+     "This package provides a Vim plugin for automatically applying the
+preferences stated in a project's EditorConfig specification file.")
     (license license:bsd-2)))
 
+(define-public editorconfig-vim
+  (deprecated-package "editorconfig-vim" vim-editorconfig))
+
 (define-public neovim-syntastic
   (package
     (inherit vim-syntastic)
-- 
2.37.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]