sharlatan pushed a commit to branch python-team
in repository guix.

commit 135d76be5519bf9de519aec119f2d2b334283a41
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Mar 24 11:04:45 2025 +0000

    gnu: gita: Fix indentation.
    
    * gnu/packages/version-control.scm (gita): Fix indentation.
    
    Change-Id: Ib918212b2f6659897c00a4c452776cf0e5d36c35
---
 gnu/packages/version-control.scm | 86 ++++++++++++++++++++--------------------
 1 file changed, 43 insertions(+), 43 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 71df341413..9ba66531b5 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4312,48 +4312,48 @@ defects faster.")
     (license license:expat)))
 
 (define-public gita
-    (package
-      (name "gita")
-      (version "0.16.7.2")
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/nosarthur/gita";)
-                      (commit (string-append "v" version))))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "118dzmjgml0c32yllr2178ash2hvgn201i463bv4y0qbywajm9ax"))))
-      (build-system pyproject-build-system)
-      (native-inputs
-       (list git ;for tests
-             python-pytest
-             python-setuptools
-             python-wheel))
-      (propagated-inputs
-       (list python-argcomplete))
-      (arguments
-       `(#:test-flags '("--ignore" "tests/test_main.py")
-         #:phases
-         (modify-phases %standard-phases
-           (add-before 'check 'pre-check
-             (lambda* (#:key inputs outputs #:allow-other-keys)
-               (invoke (search-input-file inputs "/bin/git")
-                       "init")))
-           (add-after 'install 'install-shell-completions
-             (lambda* (#:key outputs #:allow-other-keys)
-               (let* ((out (assoc-ref outputs "out"))
-                      (bash-completion (string-append out 
"/etc/bash_completion.d"))
-                      (zsh-completion (string-append out 
"/etc/zsh/site-functions")))
-                 (mkdir-p bash-completion)
-                 (copy-file "auto-completion/bash/.gita-completion.bash"
-                            (string-append bash-completion "/gita"))
-                 (mkdir-p zsh-completion)
-                 (copy-file "auto-completion/zsh/.gita-completion.zsh"
-                            (string-append zsh-completion "/_gita"))))))))
-      (home-page "https://github.com/nosarthur/gita";)
-      (synopsis "Command-line tool to manage multiple Git repos")
-      (description "This package provides a command-line tool to manage
+  (package
+    (name "gita")
+    (version "0.16.7.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/nosarthur/gita";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "118dzmjgml0c32yllr2178ash2hvgn201i463bv4y0qbywajm9ax"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list git ;for tests
+           python-pytest
+           python-setuptools
+           python-wheel))
+    (propagated-inputs
+     (list python-argcomplete))
+    (arguments
+     `(#:test-flags '("--ignore" "tests/test_main.py")
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'pre-check
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (invoke (search-input-file inputs "/bin/git")
+                     "init")))
+         (add-after 'install 'install-shell-completions
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bash-completion (string-append out 
"/etc/bash_completion.d"))
+                    (zsh-completion (string-append out 
"/etc/zsh/site-functions")))
+               (mkdir-p bash-completion)
+               (copy-file "auto-completion/bash/.gita-completion.bash"
+                          (string-append bash-completion "/gita"))
+               (mkdir-p zsh-completion)
+               (copy-file "auto-completion/zsh/.gita-completion.zsh"
+                          (string-append zsh-completion "/_gita"))))))))
+    (home-page "https://github.com/nosarthur/gita";)
+    (synopsis "Command-line tool to manage multiple Git repos")
+    (description "This package provides a command-line tool to manage
 multiple Git repos.
 
 This tool does two things:
@@ -4364,7 +4364,7 @@ commit message side by side
 @end itemize
 
 If several repos are related, it helps to see their status together.")
-      (license license:expat)))
+    (license license:expat)))
 
 (define-public ghq
   (package

Reply via email to