unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: ng0 <ng0@infotropique.org>
To: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Cc: 28579@debbugs.gnu.org
Subject: [bug#28579] gpa
Date: Mon, 25 Sep 2017 10:41:27 +0000	[thread overview]
Message-ID: <20170925104127.dprqjpyfmexfer2i@abyayala> (raw)
In-Reply-To: <20170924214200.tssj45xcmo2nxdpx@abyayala>


[-- Attachment #1.1: Type: text/plain, Size: 1168 bytes --]

ng0 transcribed 1.9K bytes:
> Nicolas Goaziou transcribed 0.5K bytes:
> > ng0 <ng0@infotropique.org> writes:
> > 
> > > Why? It is a definition being used.
> > > Although I have to admit it looks unusual compared to the rest of the
> > > file.
> > 
> > It is a package name. By that rule, every package name is a definition,
> > since you "define" it in the description. It doesn't sound right to put
> > @dfn in every description, including this one, IMO.
> > 
> > Obviously, I'm nitpicking here.
> 
> Ok, I agree. If no one commits this in the next 12 hours I'll send
> an update removing the @dfn{},

Appended is the update, the only change is the description.

> > > Thanks for finding the mistakes. Correction appended.
> > 
> > Thank you.
> > 
> > FWIW, I have no other comment about your patch.
> > 
> > Regards,
> > 
> 
> -- 
> ng0
> GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
> GnuPG: https://krosos.org/dist/keys/
> https://www.infotropique.org https://www.krosos.org



-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://krosos.org/dist/keys/
https://www.infotropique.org https://krosos.org

[-- Attachment #1.2: 0001-gnu-Add-gpa.patch --]
[-- Type: text/plain, Size: 2135 bytes --]

From 2356006fc61874190e578425c2a3911d23aed8c2 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@infotropique.org>
Date: Sun, 24 Sep 2017 15:52:05 +0000
Subject: [PATCH] gnu: Add gpa.

* gnu/packages/gnupg.scm (gpa): New variable.
---
 gnu/packages/gnupg.scm | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index c6af5caa4..eb1feffcd 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
 ;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
 ;;; Copyright © 2016 Mike Gerwitz <mtg@gnu.org>
 ;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com>
@@ -822,3 +822,31 @@ qualities.  To reconstruct a secret key, you re-enter those
 bytes (whether by hand, OCR, QR code, or the like) and paperkey can use
 them to transform your existing public key into a secret key.")
     (license license:gpl2+)))
+
+(define-public gpa
+  (package
+    (name "gpa")
+    (version "0.9.10")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnupg/gpa/"
+                          name "-" version ".tar.bz2"))
+      (sha256
+       (base32
+        "09xphbi2456qynwqq5n0yh0zdmdi2ggrj3wk4hsyh5lrzlvcrff3"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gnupg" ,gnupg)
+       ("gpgme" ,gpgme)
+       ("libassuan" ,libassuan)
+       ("libgpg-error" ,libgpg-error)
+       ("gtk+-2" ,gtk+-2)))
+    (home-page "https://gnupg.org/software/gpa/index.html")
+    (synopsis "GUI for GnuPG")
+    (description
+     "GPA, the GNU Privacy Assistant, is a graphical user
+interface for the GnuPG.")
+    (license license:gpl3+)))
-- 
2.14.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2017-09-25 10:42 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-24 15:54 [bug#28579] gpa ng0
2017-09-24 16:16 ` Nicolas Goaziou
2017-09-24 16:45   ` ng0
2017-09-24 21:05     ` Nicolas Goaziou
2017-09-24 21:42       ` ng0
2017-09-25 10:41         ` ng0 [this message]
2017-09-25 10:44           ` ng0
2017-09-26  8:36             ` bug#28579: gpa Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170925104127.dprqjpyfmexfer2i@abyayala \
    --to=ng0@infotropique.org \
    --cc=28579@debbugs.gnu.org \
    --cc=mail@nicolasgoaziou.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).