From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47401) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gDetA-0000sY-Qs for guix-patches@gnu.org; Fri, 19 Oct 2018 20:13:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gDet4-0005ij-Tc for guix-patches@gnu.org; Fri, 19 Oct 2018 20:13:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55778) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gDet4-0005iZ-Pq for guix-patches@gnu.org; Fri, 19 Oct 2018 20:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gDet4-0003sX-IF for guix-patches@gnu.org; Fri, 19 Oct 2018 20:13:02 -0400 Subject: [bug#33064] [PATCH 1/1] gnu: Add enchive Resent-Message-ID: References: <20181016121814.7617-1-anothersms@gmail.com> <20181016121814.7617-2-anothersms@gmail.com> <87in1xejm9.fsf@gnu.org> From: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Message-ID: Date: Sat, 20 Oct 2018 02:10:29 +0200 MIME-Version: 1.0 In-Reply-To: <87in1xejm9.fsf@gnu.org> Content-Type: multipart/alternative; boundary="------------F56B538DD7A1A9021323EDB6" Content-Language: en-US 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= , =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Cc: 33064-done@debbugs.gnu.org This is a multi-part message in MIME format. --------------F56B538DD7A1A9021323EDB6 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Thanks! This was the first one, but many more are coming :) I'll try to be more careful when linting (also, I didn't notice the commit message previously) Thanks again :) On 10/19/18 11:01 PM, Ludovic Courtès wrote: > Hello Nicolò, > > Nicolò Balzarotti skribis: > >> From: nixo >> >> --- >> gnu/packages/crypto.scm | 32 ++++++++++++++++++++++++++++++++ >> 1 file changed, 32 insertions(+) > Applied with the minor changes below reported by ‘guix lint’ and in the > build log. I also added a commit log that follows our conventions. > > Thank you, and welcome! :-) > > Ludo’. > > > 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 --------------F56B538DD7A1A9021323EDB6 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 8bit

Thanks! This was the first one, but many more are coming :)

I'll try to be more careful when linting (also, I didn't notice the commit message previously)

Thanks again :)

On 10/19/18 11:01 PM, Ludovic Courtès wrote:
Hello Nicolò,

Nicolò Balzarotti <anothersms@gmail.com> skribis:

From: nixo <nicolo@nixo.xyz>

---
 gnu/packages/crypto.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
Applied with the minor changes below reported by ‘guix lint’ and in the
build log.  I also added a commit log that follows our conventions.

Thank you, and welcome! :-)

Ludo’.


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
--------------F56B538DD7A1A9021323EDB6--