GNU bug report logs - #62078
[PATCH] gnu: Add python-redo.

Previous Next

Package: guix-patches;

Reported by: Adam Faiz <adam.faiz <at> disroot.org>

Date: Thu, 9 Mar 2023 16:48:01 UTC

Severity: normal

Tags: moreinfo, patch

Done: "jgart" <jgart <at> dismail.de>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 62078 in the body.
You can then email your comments to 62078 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#62078; Package guix-patches. (Thu, 09 Mar 2023 16:48:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Adam Faiz <adam.faiz <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 09 Mar 2023 16:48:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Adam Faiz <adam.faiz <at> disroot.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add python-redo.
Date: Fri, 10 Mar 2023 00:47:36 +0800
From f22e04ade259930dc3c3e282d044b7b8b6b1f774 Mon Sep 17 00:00:00 2001
Message-Id: <f22e04ade259930dc3c3e282d044b7b8b6b1f774.1678379861.git.adam.faiz <at> disroot.org>
In-Reply-To: <f788ce8ebc205a6e05bcc270865d793d94bf51e9.1678379861.git.adam.faiz <at> disroot.org>
References: <f788ce8ebc205a6e05bcc270865d793d94bf51e9.1678379861.git.adam.faiz <at> disroot.org>
From: AwesomeAdam54321 <adam.faiz <at> disroot.org>
Date: Thu, 9 Mar 2023 21:59:48 +0800
Subject: [PATCH] gnu: Add python-redo.

* gnu/packages/python-xyz.scm (python-redo): New variable.
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4bacd86432..d4f0a83a5d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3595,6 +3595,23 @@ (define-public python-miniupnpc
     (home-page "http://miniupnp.free.fr")
     (license license:bsd-3)))
 
+(define-public python-redo
+  (package
+    (name "python-redo")
+    (version "2.0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "redo" version))
+              (sha256
+               (base32
+                "0hx0yyl2mz13v513vyjc3h9lbkkxhyh6bswich73p18w0ianj1l1"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/mozilla-releng/redo")
+    (synopsis "Utilities to retry Python callables")
+    (description "Redo provides various means to add seamless ability to
+retry to any Python callable.")
+    (license license:mpl2.0)))
+
 (define-public python-py
   (package
     (name "python-py")
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#62078; Package guix-patches. (Fri, 02 Jun 2023 12:49:02 GMT) Full text and rfc822 format available.

Message #8 received at 62078 <at> debbugs.gnu.org (full text, mbox):

From: "jgart" <jgart <at> dismail.de>
To: "Adam Faiz" <adam.faiz <at> disroot.org>, 62078 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add python-redo.
Date: Fri, 02 Jun 2023 12:48:11 +0000
Hi Adam,

Thanks for the patch!

Could you send an updated patch (v2) enabling the tests on python-redo and adding any test inputs that are required for that?

This current patch also does not apply cleanly to master:

error: corrupt patch at line 33
Patch failed at 0001 gnu: Add python-redo.

all best,

jgart




Information forwarded to guix-patches <at> gnu.org:
bug#62078; Package guix-patches. (Sat, 03 Jun 2023 04:03:02 GMT) Full text and rfc822 format available.

Message #11 received at 62078 <at> debbugs.gnu.org (full text, mbox):

From: Adam Faiz <adam.faiz <at> disroot.org>
To: jgart <jgart <at> dismail.de>, 62078 <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add python-redo.
Date: Sat, 3 Jun 2023 12:02:40 +0800
From 971c628998b36dc32bafd30364f635bafc8ff7cd Mon Sep 17 00:00:00 2001
Message-Id: <971c628998b36dc32bafd30364f635bafc8ff7cd.1685764335.git.adam.faiz <at> disroot.org>
From: AwesomeAdam54321 <adam.faiz <at> disroot.org>
Date: Thu, 9 Mar 2023 21:59:48 +0800
Subject: [PATCH v2] gnu: Add python-redo.

* gnu/packages/python-xyz.scm (python-redo): New variable.
---
 gnu/packages/python-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 19f4ec97ff..2e2387a14a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29988,6 +29988,41 @@ (define-public python-recommonmark
 lets you write CommonMark inside of Docutils & Sphinx projects.")
     (license license:expat)))
 
+(define-public python-redo
+  ; The latest release isn't tagged:
+  ; https://github.com/mozilla-releng/redo/issues/76
+  (let ((commit "50cfe8e3656f253f9e51df3a998530351d2d9a8c")
+        (revision "0"))
+    (package
+      (name "python-redo")
+      (version (git-version "2.0.4" revision commit))
+      (source
+       (origin
+         (method git-fetch)               ; no tests in PyPI release
+         (uri (git-reference
+               (url "https://github.com/mozilla-releng/redo")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0xpylx97qr4ikdhsr208ri41007mpp57a4n8mmlmlqmdljmsdpdb"))))
+      (build-system python-build-system)
+      (native-inputs
+       (list python-mock
+             python-pytest))
+      (arguments
+       (list #:phases
+             #~(modify-phases %standard-phases
+                 (replace 'check
+                   (lambda* (#:key tests? #:allow-other-keys)
+                     (when tests?
+                       ;; The project uses tox to run the tests via pytest.
+                       (invoke "pytest")))))))
+      (home-page "https://github.com/mozilla-releng/redo")
+      (synopsis "Utilities to retry Python callables")
+      (description "Redo provides various means to add seamless ability to
+retry to any Python callable.")
+      (license license:mpl2.0))))
+
 (define-public python-pyhull
   (package
     (name "python-pyhull")

base-commit: 12e6a5923812abf180f03bea9e07dd99244a3fcd
-- 
2.40.1






Information forwarded to guix-patches <at> gnu.org:
bug#62078; Package guix-patches. (Sun, 04 Jun 2023 13:16:01 GMT) Full text and rfc822 format available.

Message #14 received at 62078 <at> debbugs.gnu.org (full text, mbox):

From: "jgart" <jgart <at> dismail.de>
To: "Adam Faiz" <adam.faiz <at> disroot.org>, 62078 <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add python-redo.
Date: Sun, 04 Jun 2023 13:14:54 +0000
Hi Adam,

Thanks for sending an update.

How did you take this patch? I'm trying to debug why this patch is not applying cleanly on my end.

I get the following error:

warning: Patch sent with format=flowed; space at the end of lines might be lost.
Applying: gnu: Add python-redo.
error: corrupt patch at line 51
Patch failed at 0001 gnu: Add python-redo.

all best,

jgart




Information forwarded to guix-patches <at> gnu.org:
bug#62078; Package guix-patches. (Thu, 22 Jun 2023 05:20:02 GMT) Full text and rfc822 format available.

Message #17 received at 62078 <at> debbugs.gnu.org (full text, mbox):

From: "jgart" <jgart <at> dismail.de>
To: "Adam Faiz" <adam.faiz <at> disroot.org>, 62078 <at> debbugs.gnu.org
Cc: control <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add python-redo.
Date: Thu, 22 Jun 2023 05:19:15 +0000
tags 62078 moreinfo




Added tag(s) moreinfo. Request was from "jgart" <jgart <at> dismail.de> to control <at> debbugs.gnu.org. (Thu, 22 Jun 2023 05:20:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#62078; Package guix-patches. (Fri, 23 Jun 2023 23:49:02 GMT) Full text and rfc822 format available.

Message #22 received at 62078 <at> debbugs.gnu.org (full text, mbox):

From: Adam Faiz <adam.faiz <at> disroot.org>
To: jgart <jgart <at> dismail.de>, 62078 <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add python-redo.
Date: Sat, 24 Jun 2023 07:47:51 +0800
[Message part 1 (text/plain, inline)]
On 6/4/23 21:14, jgart wrote:
> Hi Adam,
> 
> Thanks for sending an update.
> 
> How did you take this patch? I'm trying to debug why this patch is not applying cleanly on my end.
> 
> I get the following error:
> 
> warning: Patch sent with format=flowed; space at the end of lines might be lost.
> Applying: gnu: Add python-redo.
> error: corrupt patch at line 51
> Patch failed at 0001 gnu: Add python-redo.Sorry for the late reply, the patch doesn't apply cleanly because my email client sent the email with format=flowed.
Attached is a rebased patch on top of master.
 
> all best,
> 
> jgart
[gnu-Add-python-redo.patch (text/x-patch, attachment)]

Reply sent to "jgart" <jgart <at> dismail.de>:
You have taken responsibility. (Wed, 12 Jul 2023 06:25:02 GMT) Full text and rfc822 format available.

Notification sent to Adam Faiz <adam.faiz <at> disroot.org>:
bug acknowledged by developer. (Wed, 12 Jul 2023 06:25:02 GMT) Full text and rfc822 format available.

Message #27 received at 62078-done <at> debbugs.gnu.org (full text, mbox):

From: "jgart" <jgart <at> dismail.de>
To: 62078-done <at> debbugs.gnu.org, adam.faiz <at> disroot.org
Cc: control <at> debbugs.gnu.org
Subject: [PATCH] gnu: Add python-redo.
Date: Wed, 12 Jul 2023 06:24:41 +0000
Hi Adam,

Thanks for the patch. APPLIED.

all best,

jgart




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 09 Aug 2023 11:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 261 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.