From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58576) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikK2F-0003J7-5c for guix-patches@gnu.org; Wed, 25 Dec 2019 22:42:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikK2D-0000MC-VW for guix-patches@gnu.org; Wed, 25 Dec 2019 22:42:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48844) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ikK2D-0000M6-Rg for guix-patches@gnu.org; Wed, 25 Dec 2019 22:42:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ikK2D-0000HZ-O7 for guix-patches@gnu.org; Wed, 25 Dec 2019 22:42:01 -0500 Subject: [bug#38746] [PATCH] gnu: emacs-shroud: Update to 1.105. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58256) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikK1L-0003Hb-P3 for guix-patches@gnu.org; Wed, 25 Dec 2019 22:41:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikK1K-0008PB-Fw for guix-patches@gnu.org; Wed, 25 Dec 2019 22:41:07 -0500 Received: from knopi.disroot.org ([178.21.23.139]:55004) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ikK1J-0008HO-Rm for guix-patches@gnu.org; Wed, 25 Dec 2019 22:41:06 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 9350F2CFED for ; Thu, 26 Dec 2019 04:41:02 +0100 (CET) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1AEnfYpIFcET for ; Thu, 26 Dec 2019 04:41:01 +0100 (CET) From: nly@disroot.org (Amar M. Singh) Date: Thu, 26 Dec 2019 09:10:54 +0530 Message-ID: <855zi3kb3t.fsf@disroot.org> 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: 38746@debbugs.gnu.org --=-=-= Content-Type: text/plain New in this release: 1. Now uses Gnu build system, aka Autotools. 2. Comes with Texinfo documentation. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-emacs-shroud-Update-to-1.105.patch >From 444fa144213999c7c37d2761b99a7ea3d7ebc5f1 Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Thu, 26 Dec 2019 09:01:42 +0530 Subject: [PATCH] gnu: emacs-shroud: Update to 1.105. Now uses Gnu build system. * gnu/packages/emacs-xyz.scm (emacs-shroud): Update to 1.105. --- gnu/packages/emacs-xyz.scm | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f39e5da63e..71e8a1219c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -640,17 +640,23 @@ for editing Racket's Scribble documentation syntax in Emacs.") (define-public emacs-shroud (package (name "emacs-shroud") - (version "1.83.4") + (version "1.105") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/o-nly/emacs-shroud.git") + (url "https://git.savannah.gnu.org/git/emacs-shroud.git") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1yvdjx0kp4y8w5yz2cbqq9n6xl5splvmsyyx8ld1xv0q1c9872nf")))) - (build-system emacs-build-system) + (base32 "0q2pb3w8s833fjhkzicciw2php4lsnismad1dnwgp2lcway757ra")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("texinfo" ,texinfo) + ("perl" ,perl) + ("emacs-minimal" ,emacs-minimal))) (propagated-inputs `(("emacs-bui" ,emacs-bui) ("emacs-dash" ,emacs-dash) @@ -658,7 +664,7 @@ for editing Racket's Scribble documentation syntax in Emacs.") ("emacs-s" ,emacs-s) ("gnupg" ,gnupg) ("shroud" ,shroud))) - (home-page "https://github.com/o-nly/emacs-shroud") + (home-page "https://www.nongnu.org/emacs-shroud") (synopsis "Emacs interface to the Shroud password manager") (description "This package provides an Emacs interface to the Shroud password manager, -- 2.24.0 --=-=-=--