From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1df8qQ-0004q8-Ch for guix-patches@gnu.org; Tue, 08 Aug 2017 14:03:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1df8qN-0004yl-05 for guix-patches@gnu.org; Tue, 08 Aug 2017 14:03:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43515) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1df8qM-0004yh-Sr for guix-patches@gnu.org; Tue, 08 Aug 2017 14:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1df8qM-0005ai-E0 for guix-patches@gnu.org; Tue, 08 Aug 2017 14:03:02 -0400 Subject: [bug#28020] [PATCH] gnu: Add emacs-gitpatch. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1df8q0-0004Zd-6R for guix-patches@gnu.org; Tue, 08 Aug 2017 14:02:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1df8pw-0004pQ-QZ for guix-patches@gnu.org; Tue, 08 Aug 2017 14:02:40 -0400 Received: from mail-lf0-x22e.google.com ([2a00:1450:4010:c07::22e]:38861) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1df8pw-0004oh-I8 for guix-patches@gnu.org; Tue, 08 Aug 2017 14:02:36 -0400 Received: by mail-lf0-x22e.google.com with SMTP id y15so18126922lfd.5 for ; Tue, 08 Aug 2017 11:02:36 -0700 (PDT) Received: from magnolia (92-100-248-224.dynamic.avangarddsl.ru. [92.100.248.224]) by smtp.gmail.com with ESMTPSA id l97sm358221lfi.95.2017.08.08.11.02.33 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 08 Aug 2017 11:02:33 -0700 (PDT) From: Oleg Pykhalov Date: Tue, 08 Aug 2017 21:02:32 +0300 Message-ID: <87wp6ekkef.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: 28020@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable By the way, =E2=80=9Cgitpatch.el=E2=80=9D says different version than relea= se tarball. Do I need to ask a developer? --8<---------------cut here---------------start------------->8--- ;; Author: Feng Shu ;; Homepage: https://github.com/tumashu/gitpatch ;; Keywords: convenience ;; Package-Requires: ((emacs "24.3")) ;; Version: 0.10 --8<---------------cut here---------------end--------------->8--- --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-gitpatch.patch Content-Description: [PATCH] gnu: Add emacs-gitpatch. >From 9eddf07fa401468738c2f48a25e51ddef2a3ceed Mon Sep 17 00:00:00 2001 From: Oleg Pykhalov Date: Sat, 29 Jul 2017 14:22:48 +0300 Subject: [PATCH] gnu: Add emacs-gitpatch. * gnu/packages/emacs.scm (emacs-gitpatch): New variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 917c511f3..37a4129a1 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5231,3 +5231,25 @@ multiplexer.") (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for editing RPM spec files.") (license license:gpl2+))) + +(define-public emacs-gitpatch + (package + (name "emacs-gitpatch") + (version "0.5.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/tumashu/gitpatch/archive/" + "v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7")))) + (build-system emacs-build-system) + (home-page "https://github.com/tumashu/gitpatch") + (synopsis "Send git-format patch from Emacs") + (description "@code{emacs-gitpatch} is git-format patch toolkit, which let +user easy handle git-format patch without exit Emacs. + +@code{M-x gitpatch-mail} can send a git-format patch file from @code{magit}, +@code{dired}, @code{ibuffer} buffers.") + (license license:gpl2+))) -- 2.14.0 --=-=-=--