unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: "\( via Guix-patches" via <guix-patches@gnu.org>
To: 57389@debbugs.gnu.org
Cc: "\(" <paren@disroot.org>
Subject: [bug#57389] [PATCH 06/29] gnu: Rename editorconfig-vim to vim-editorconfig.
Date: Wed, 24 Aug 2022 18:08:33 +0100	[thread overview]
Message-ID: <20220824170856.7776-6-paren@disroot.org> (raw)
In-Reply-To: <20220824170856.7776-1-paren@disroot.org>

* 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





  parent reply	other threads:[~2022-08-24 17:11 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-24 17:05 [bug#57389] [PATCH 00/29] Vim plugin additions and updates ( via Guix-patches via
2022-08-24 17:08 ` [bug#57389] [PATCH 01/29] gnu: Add neovim-mini ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 02/29] gnu: Add vim-gas ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 03/29] gnu: Add neovim-gas ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 04/29] gnu: Add vim-riscv ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 05/29] gnu: Add neovim-riscv ( via Guix-patches via
2022-08-24 17:08   ` ( via Guix-patches via [this message]
2022-08-24 17:08   ` [bug#57389] [PATCH 07/29] gnu: Add neovim-editorconfig ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 08/29] gnu: Add vim-bats ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 09/29] gnu: Add neovim-bats ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 10/29] gnu: Add vim-hare ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 11/29] gnu: Add neovim-hare ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 12/29] gnu: Add neovim-luasnip ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 13/29] gnu: Add neovim-cmp ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 14/29] gnu: Add neovim-cmp-lsp ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 15/29] gnu: Add neovim-cmp-luasnip ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 16/29] gnu: Add vim-markdown ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 17/29] gnu: Add neovim-markdown ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 18/29] gnu: Add vim-janet ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 19/29] gnu: Add neovim-janet ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 20/29] gnu: Add vim-solarized8 ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 21/29] gnu: Add neovim-solarized8 ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 22/29] gnu: Add neovim-lspconfig ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 23/29] gnu: Add neovim-lspsaga ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 24/29] gnu: Add neovim-autopairs ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 25/29] gnu: Add neovim-auto-save ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 26/29] gnu: vim-paredit: Update to c90dc16 ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 27/29] gnu: Add neovim-paredit ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 28/29] gnu: Add vim-sexp ( via Guix-patches via
2022-08-24 17:08   ` [bug#57389] [PATCH 29/29] gnu: Add neovim-sexp ( via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220824170856.7776-6-paren@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=57389@debbugs.gnu.org \
    --cc=paren@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).