From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41991) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLzul-00065U-HG for guix-patches@gnu.org; Tue, 07 Apr 2020 21:54:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLzuk-0000pZ-1C for guix-patches@gnu.org; Tue, 07 Apr 2020 21:54:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39682) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLzuj-0000pI-U2 for guix-patches@gnu.org; Tue, 07 Apr 2020 21:54:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jLzuj-0005VT-TY for guix-patches@gnu.org; Tue, 07 Apr 2020 21:54:01 -0400 Subject: [bug#40500] [PATCH] gnu: Add emacs-dired-git-info. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41553) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jLzty-00060G-CM for guix-patches@gnu.org; Tue, 07 Apr 2020 21:53:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jLztw-0008OR-JY for guix-patches@gnu.org; Tue, 07 Apr 2020 21:53:13 -0400 Received: from mail-ot1-x332.google.com ([2607:f8b0:4864:20::332]:41280) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jLztw-0008Mu-72 for guix-patches@gnu.org; Tue, 07 Apr 2020 21:53:12 -0400 Received: by mail-ot1-x332.google.com with SMTP id f52so5267700otf.8 for ; Tue, 07 Apr 2020 18:53:11 -0700 (PDT) Received: from ecenter ([2600:1700:83b0:8bd0::479]) by smtp.gmail.com with ESMTPSA id r205sm192286oih.47.2020.04.07.18.53.08 for (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Tue, 07 Apr 2020 18:53:09 -0700 (PDT) From: John Soo Date: Tue, 07 Apr 2020 18:52:59 -0700 Message-ID: <87blo2u4jo.fsf@asu.edu> 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: 40500@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, emacs-dired-git-info shows the last commit message and commit date next to each file in dired. I like it a lot. This time I also remembered to lint and format the patch correctly. Sorry about the previous flurry! Thanks, John --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-dired-git-info.patch Content-Description: emacs-dired-git-info >From 87367ebd35954f19c6a1b03791cc54581b5449dc Mon Sep 17 00:00:00 2001 From: John Soo Date: Tue, 7 Apr 2020 01:05:47 -0700 Subject: [PATCH] gnu: Add emacs-dired-git-info. * gnu/packages/emacs-xyz.scm (emacs-dired-git-info): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9e1160f0e1..ab7f9b8a18 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -9178,6 +9178,28 @@ above over the network.") in Org buffers and displays matching entries.") (license license:gpl3+))) +(define-public emacs-dired-git-info + (let ((commit "91d57e3a4c5104c66a3abc18e281ee55e8979176")) + (package + (name "emacs-dired-git-info") + (version (git-version "0.3.1" "0" commit)) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/clemera/dired-git-info") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dr4iv95s4barxxj56znqkl9z0lg5jw731jmjr01s6vn8ar69gik")))) + (build-system emacs-build-system) + (home-page "https://github.com/clemera/dired-git-info") + (synopsis "Show git info in Emacs dired") + (description "This Emacs packages provides a minor mode which shows git +information inside the dired buffer.") + (license license:gpl3+)))) + (define-public emacs-dired-toggle-sudo (package (name "emacs-dired-toggle-sudo") -- 2.26.0 --=-=-=--