From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdGHo-00021w-BK for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdGHb-0007kl-1m for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:24 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:43951) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gdGHZ-0007j9-Ae for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:10 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gdGHZ-0001jA-2b for guix-patches@gnu.org; Sat, 29 Dec 2018 10:12:09 -0500 Subject: [bug#33910] [PATCH 5/7] gnu: emacs-with-editor: Update to 2.8.0. Resent-Message-ID: Received: from eggs.gnu.org ([208.118.235.92]:52909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdGGz-0001D1-Pr for guix-patches@gnu.org; Sat, 29 Dec 2018 10:11:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdG90-00058a-0k for guix-patches@gnu.org; Sat, 29 Dec 2018 10:03:19 -0500 Received: from mail1.fsfe.org ([217.69.89.151]:43622) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gdG8z-00057u-NV for guix-patches@gnu.org; Sat, 29 Dec 2018 10:03:17 -0500 From: Jelle Licht Date: Sat, 29 Dec 2018 16:02:59 +0100 Message-Id: <20181229150301.30567-6-jlicht@fsfe.org> In-Reply-To: <20181229150301.30567-1-jlicht@fsfe.org> References: <20181229150301.30567-1-jlicht@fsfe.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 33910@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-with-editor): Update to 2.8.0. [source]: Use 'git-fetch'. --- gnu/packages/emacs.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 7181d05a3..335d315d3 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -433,16 +433,16 @@ configuration files, such as .gitattributes, .gitig= nore, and .git/config.") (define-public emacs-with-editor (package (name "emacs-with-editor") - (version "2.7.3") + (version "2.8.0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/magit/with-editor/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/magit/with-editor.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1ln2s0kckzkv50qmr6x1kb2j30cfjii0vs6lpghg7ff4lav8jqgh"))= )) + "1bbzvxnjpxqyvi808isld025b3pcidn4r2xf8hnk9bmzcfdvdr6q"))= )) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash))) --=20 2.20.1