unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Eric Bavier <ericbavier@openmailbox.org>
To: Brendan Tildesley <brendan.tildesley@openmailbox.org>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 3/3] gnu: Duplicity: Update to 0.7.10
Date: Tue, 20 Sep 2016 14:25:44 -0500	[thread overview]
Message-ID: <20160920142544.23887d55@openmailbox.org> (raw)
In-Reply-To: <cda6ff0e-8392-076f-a50d-8b688d79aed7@openmailbox.org>

On Tue, 20 Sep 2016 21:36:02 +1000
Brendan Tildesley <brendan.tildesley@openmailbox.org> wrote:

> * gnu/packages/backup.scm (duplicity): Update to 0.7.10.
> * gnu/packages/patches/duplicity-piped-password.patch: Deleted.
> * gnu/packages/patches/duplicity-test_selection-tmp.patch: Deleted.

These patches need to also be removed from gnu/local.mk
(dist_patch_DATA).  And there should be a [source] note that mentions
the patch removal.

> ---
>  gnu/packages/backup.scm                            | 82 +++++++++++++---------
>  .../patches/duplicity-piped-password.patch         | 20 ------
>  .../patches/duplicity-test_selection-tmp.patch     | 18 -----
>  3 files changed, 47 insertions(+), 73 deletions(-)
>  delete mode 100644 gnu/packages/patches/duplicity-piped-password.patch
>  delete mode 100644 gnu/packages/patches/duplicity-test_selection-tmp.patch
> 
> diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
> index e77c4f2..408389a 100644
> --- a/gnu/packages/backup.scm
> +++ b/gnu/packages/backup.scm
> @@ -2,6 +2,7 @@
>  ;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org>
>  ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
>  ;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name>
> +;;; Copyright © 2016 Brendan Tildesley <brendan.tildesley@openmailbox.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -33,6 +34,7 @@
>    #:use-module (gnu packages compression)
>    #:use-module (gnu packages databases)
>    #:use-module (gnu packages dejagnu)
> +  #:use-module (gnu packages ftp)
>    #:use-module (gnu packages glib)
>    #:use-module (gnu packages gnupg)
>    #:use-module (gnu packages gperf)
> @@ -51,53 +53,63 @@
>  (define-public duplicity
>    (package
>      (name "duplicity")
> -    (version "0.6.26")
> +    (version "0.7.10")
>      (source
>       (origin
> -      (method url-fetch)
> -      (uri (string-append "https://code.launchpad.net/duplicity/"
> -                          (version-major+minor version)
> -                          "-series/" version "/+download/duplicity-"
> -                          version ".tar.gz"))
> -      (sha256
> -       (base32
> -        "0jh79syhr8n3l81jxlwsmwm1pklb4d923m2lgqbswyavh1fqmvwb"))
> -      (patches (search-patches "duplicity-piped-password.patch"
> -                               "duplicity-test_selection-tmp.patch"))))
> +       (method url-fetch)
> +       (uri (string-append "https://code.launchpad.net/duplicity/"
> +                           (version-major+minor version)
> +                           "-series/" version "/+download/duplicity-"
> +                           version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "0hj8451gpndyqdfxwhbxwr9ddxvc47g0iv003q33q5kda8ayyps8"))))

This includes a lot of unnecessary whitespace changes.

>      (build-system python-build-system)
>      (native-inputs
>       `(("python2-setuptools" ,python2-setuptools)
> -       ("util-linux" ,util-linux)))     ;setsid command, for the tests
> +       ("python2-mock" ,python2-mock)
> +       ("util-linux" ,util-linux))) ; setsid command, for the tests
>      (inputs
>       `(("python" ,python-2)
>         ("librsync" ,librsync)
> -       ("mock" ,python2-mock)           ;for testing
> -       ("lockfile" ,python2-lockfile)
> -       ("gnupg" ,gnupg-1)               ;gpg executable needed
> -       ("util-linux" ,util-linux)       ;for setsid
> -       ("tzdata" ,tzdata)))
> +       ("python2-lockfile" ,python2-lockfile)
> +       ("python2-pexpect" ,python2-pexpect)
> +       ("python2-paramiko" ,python2-paramiko)
> +       ("python2-pycrypto" ,python2-pycrypto)
> +       ("python2-botocore" ,python2-botocore)
> +       ("python2-dropbox" ,python2-dropbox)

Could you move the new inputs to a separate commit?  I.e. upgrade
duplicity in one commit, then followup with another commit that adds
the new backend inputs?

> +       ("lftp" ,lftp)
> +       ("gnupg" ,gnupg-1)
> +       ("ncftp" ,ncftp)
> +       ("tzdata" ,tzdata)
> +       ("par2cmdline" ,par2cmdline)))
>      (arguments
> -     `(#:python ,python-2               ;setup assumes Python 2
> +     `(#:python ,python-2

Why remove this comment?

>         #:test-target "test"
> -       #:phases (alist-cons-before
> -                 'check 'check-setup
> -                 (lambda* (#:key inputs #:allow-other-keys)
> -                   (substitute* "testing/functional/__init__.py"
> -                     (("/bin/sh") (which "sh")))
> -                   (setenv "HOME" (getcwd)) ;gpg needs to write to $HOME
> -                   (setenv "TZDIR"          ;some timestamp checks need TZDIR
> -                           (string-append (assoc-ref inputs "tzdata")
> -                                          "/share/zoneinfo")))
> -                 %standard-phases)))
> +       #:phases
> +       (modify-phases %standard-phases

Could you make the transition to modify-phases in a separate commit?

> +         (add-before 'check 'check-setup
> +           (lambda* (#:key inputs #:allow-other-keys)
> +             (substitute* '("testing/functional/__init__.py"
> +                            "testing/overrides/bin/lftp")
> +               (("/bin/sh") (which "sh")))
> +             (setenv "HOME" (getcwd))
                                          ^
Again, why remove the comment?

> +             ;; RUN_CODE_TESTS can be set to enable unessential PEP8, 2to3 and pylint
> +             ;; tests that currently fail due to lacking dependencies
> +             ;; (setenv "RUN_CODE_TESTS" "1")
> +             ;;

Let's leave this out then, or just leave a small "TODO" comment.

> +             ;; Backup filenames embed TZ data.
> +             ;; See testing/unit/test_statistics.py test_get_stats_string(self)
> +             (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
> +                                            "/share/zoneinfo")))))))

This comment change seems gratuitous.

>      (home-page "http://duplicity.nongnu.org/index.html")
>      (synopsis "Encrypted backup using rsync algorithm")
> -    (description
> -     "Duplicity backs up directories by producing encrypted tar-format volumes
> -and uploading them to a remote or local file server.  Because duplicity uses
> -librsync, the incremental archives are space efficient and only record the
> -parts of files that have changed since the last backup.  Because duplicity
> -uses GnuPG to encrypt and/or sign these archives, they will be safe from
> -spying and/or modification by the server.")
> +    (description "Duplicity backs up directories by producing encrypted
> +tar-format volumes and uploading them to a remote or local file server.  
> +Because duplicity uses librsync, the incremental archives are space efficient
> +and only record the parts of files that have changed since the last backup.  
> +Because duplicity uses GnuPG to encrypt and/or sign these archives, they will
> +be safe from spying and/or modification by the server.")

Let's leave out the nnecessary whitespace changes.

Could you send an updated patch?
Thanks,
`~Eric

  reply	other threads:[~2016-09-20 19:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-20 11:28 [PATCH 0/3] gnu: Duplicity: Update to 0.7.10 Brendan Tildesley
2016-09-20 11:31 ` [PATCH 1/3] gnu: Add python-typing Brendan Tildesley
2016-09-20 11:32 ` [PATCH 2/3] gnu: Add python-dropbox Brendan Tildesley
2016-09-20 11:36 ` [PATCH 3/3] gnu: Duplicity: Update to 0.7.10 Brendan Tildesley
2016-09-20 19:25   ` Eric Bavier [this message]
2016-09-22  6:31     ` Brendan Tildesley
2016-09-27 17:21       ` Leo Famulari

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=20160920142544.23887d55@openmailbox.org \
    --to=ericbavier@openmailbox.org \
    --cc=brendan.tildesley@openmailbox.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).