From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60474) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gDbuG-0000yD-Ew for guix-patches@gnu.org; Fri, 19 Oct 2018 17:02:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gDbuF-00047C-IX for guix-patches@gnu.org; Fri, 19 Oct 2018 17:02:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55589) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gDbuF-000470-Cg for guix-patches@gnu.org; Fri, 19 Oct 2018 17:02:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gDbuF-0003pp-9e for guix-patches@gnu.org; Fri, 19 Oct 2018 17:02:03 -0400 Subject: bug#33064: [PATCH 1/1] gnu: Add enchive Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20181016121814.7617-1-anothersms@gmail.com> <20181016121814.7617-2-anothersms@gmail.com> Date: Fri, 19 Oct 2018 23:01:34 +0200 In-Reply-To: <20181016121814.7617-2-anothersms@gmail.com> ("=?UTF-8?Q?Nicol=C3=B2?= Balzarotti"'s message of "Tue, 16 Oct 2018 14:18:14 +0200") Message-ID: <87in1xejm9.fsf@gnu.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: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Cc: 33064-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello Nicol=C3=B2, Nicol=C3=B2 Balzarotti skribis: > From: nixo > > --- > gnu/packages/crypto.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) Applied with the minor changes below reported by =E2=80=98guix lint=E2=80= =99 and in the build log. I also added a commit log that follows our conventions. Thank you, and welcome! :-) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 08faccfa1..77b4dba6d 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -866,7 +866,8 @@ cannot sign messages in OpenBSD format yet.") version ".tar.gz")) (sha256 (base32 - "17hrxpp4cpn10bk48sfvfjc8hghky34agsnypam1v9f36kbalqfk")))) + "17hrxpp4cpn10bk48sfvfjc8hghky34agsnypam1v9f36kbalqfk")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system gnu-build-system) (arguments '(#:tests? #f ; no check target ' @@ -877,7 +878,8 @@ cannot sign messages in OpenBSD format yet.") (lambda _ (let* ((out (assoc-ref %outputs "out")) (lisp (string-append out "/share/emacs/site-lisp"))) - (install-file "enchive-mode.el" lisp))))))) + (install-file "enchive-mode.el" lisp) + #t)))))) (synopsis "Encrypted personal archives") (description "Enchive is a tool to encrypt files to yourself for long-term --=-=-=--