unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Leo Famulari <leo@famulari.name>
To: Christopher Allan Webber <cwebber@dustycloud.org>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 01/04] gnu: Add python-pygpgme
Date: Sat, 6 Feb 2016 03:29:58 -0500	[thread overview]
Message-ID: <20160206082958.GC1432@jasmine> (raw)
In-Reply-To: <87fux6fqlj.fsf@dustycloud.org>

On Fri, Feb 05, 2016 at 07:47:26PM -0800, Christopher Allan Webber wrote:
> First of several patches on the path to assword!

Thanks! Funniest package name in Guix, I'd say!

> * gnu/packages/gnupg.scm (python-pygpgme, python2-pygpgme): New variables.
> * gnu/packages/patches/pygpgme-disable-problematic-tests.patch: New file.

Please add the patch to gnu-system.am (dist_patch_DATA).

> ---
>  gnu/packages/gnupg.scm                             | 42 ++++++++++++++++++++++
>  .../pygpgme-disable-problematic-tests.patch        | 37 +++++++++++++++++++
>  2 files changed, 79 insertions(+)
>  create mode 100644 gnu/packages/patches/pygpgme-disable-problematic-tests.patch
> 
> diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
> index 501cf55..bdc5e4a 100644
> --- a/gnu/packages/gnupg.scm
> +++ b/gnu/packages/gnupg.scm
> @@ -5,6 +5,7 @@
>  ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
>  ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
>  ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
> +;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -23,6 +24,7 @@
>  
>  (define-module (gnu packages gnupg)
>    #:use-module ((guix licenses) #:prefix license:)
> +  #:use-module (gnu packages)
>    #:use-module (gnu packages adns)
>    #:use-module (gnu packages curl)
>    #:use-module (gnu packages openldap)
> @@ -332,6 +334,46 @@ instead.  This way bug fixes or improvements can be done at a central place
>  and every application benefits from this.")
>      (license license:lgpl2.1+)))
>  
> +(define-public python-pygpgme
> +  (package
> +    (name "python-pygpgme")
> +    (version "0.3")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (pypi-uri "pygpgme" version))
> +       (sha256
> +        (base32
> +         "1q82p3gs6lwq8j8dxk4pvrwk3jpww1zqcjrzznl9clh10z28gn2z"))
> +       ;; Unfortunately, we have to disable some tests due to some gpg-agent
> +       ;; goofiness... see:
> +       ;;   https://bugs.launchpad.net/pygpgme/+bug/999949
> +       (patches (list (search-patch "pygpgme-disable-problematic-tests.patch")))))
> +    (arguments
> +     `(#:phases
> +       (modify-phases %standard-phases
> +         (add-before 'build 'make-build
> +             (lambda (. args)
> +               (zero? (system* "make" "build"))))

I'm not a Scheme expert, but I wonder about "lambda (.args)". Most of
these calls to (system*) start with "lambda _". What is the difference
here?

> +         (replace 'check
> +           (lambda _
> +             (zero? (system* "make" "check")))))))
> +    (build-system python-build-system)
> +    (inputs
> +     `(("python-setuptools" ,python-setuptools)

If setuptools are only required for the python-2 variant, please add a
comment to that effect, so that we can easily remove it once we fix bug
#22437.
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=22437

> +       ("gnupg" ,gnupg-2.0)

Does it only work with gnupg-2.0? We also package the 2.1 series of
GnuPG.

> +       ("gpgme" ,gpgme)))
> +    (home-page "https://launchpad.net/pygpgme")
> +    (synopsis
> +     "A Python module for working with OpenPGP messages")

This can all go on one line.

> +    (description
> +     "PyGPGME is a Python module that lets you sign, verify, encrypt and
> +decrypt messages using the OpenPGP format.")

Can you mention that it uses GPGME in the description?

> +    (license license:lgpl2.1+)))
> +
> +(define-public python2-pygpgme
> +  (package-with-python2 python-pygpgme))
> +
>  (define-public python-gnupg
>    (package
>      (name "python-gnupg")
> diff --git a/gnu/packages/patches/pygpgme-disable-problematic-tests.patch b/gnu/packages/patches/pygpgme-disable-problematic-tests.patch
> new file mode 100644
> index 0000000..2129d2f
> --- /dev/null
> +++ b/gnu/packages/patches/pygpgme-disable-problematic-tests.patch
> @@ -0,0 +1,37 @@
> +These tests require a gpg agent to run, and are difficult to get to work right
> +in Guix's environment.  For more details, see:
> +  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=713074
> +  https://bugs.launchpad.net/pygpgme/+bug/999949
> +
> +--- pygpgme-0.3/tests/test_encrypt_decrypt.py	2012-02-28 19:10:28.000000000 -0800
> ++++ pygpgme-0.3/tests/test_encrypt_decrypt.py	2016-02-05 10:21:58.966685384 -0800
> +@@ -125,7 +125,7 @@
> +         ctx.decrypt(ciphertext, plaintext)
> +         self.assertEqual(plaintext.getvalue(), b'Hello World\n')
> + 
> +-    def test_encrypt_symmetric(self):
> ++    def skip_test_encrypt_symmetric(self):
> +         plaintext = BytesIO(b'Hello World\n')
> +         ciphertext = BytesIO()
> +         def passphrase(uid_hint, passphrase_info, prev_was_bad, fd):
> +
> +--- pygpgme-0.3/tests/test_passphrase.py	2012-02-28 19:04:17.000000000 -0800
> ++++ pygpgme-0.3/tests/test_passphrase.py	2016-02-05 10:21:47.990630956 -0800
> +@@ -30,7 +30,7 @@
> + 
> +     import_keys = ['passphrase.pub', 'passphrase.sec']
> + 
> +-    def test_sign_without_passphrase_cb(self):
> ++    def skip_test_sign_without_passphrase_cb(self):
> +         ctx = gpgme.Context()
> +         key = ctx.get_key('EFB052B4230BBBC51914BCBB54DCBBC8DBFB9EB3')
> +         ctx.signers = [key]
> +@@ -51,7 +51,7 @@
> +         self.prev_was_bad = prev_was_bad
> +         os.write(fd, b'test\n')
> + 
> +-    def test_sign_with_passphrase_cb(self):
> ++    def skip_test_sign_with_passphrase_cb(self):
> +         ctx = gpgme.Context()
> +         key = ctx.get_key('EFB052B4230BBBC51914BCBB54DCBBC8DBFB9EB3')
> +         ctx.signers = [key]
> -- 
> 2.6.3
> 

  reply	other threads:[~2016-02-06  8:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-06  3:47 [PATCH 01/04] gnu: Add python-pygpgme Christopher Allan Webber
2016-02-06  8:29 ` Leo Famulari [this message]
2016-02-06 12:55   ` Ludovic Courtès
2016-02-06 19:33     ` Christopher Allan Webber

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=20160206082958.GC1432@jasmine \
    --to=leo@famulari.name \
    --cc=cwebber@dustycloud.org \
    --cc=guix-devel@gnu.org \
    /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).