GNU bug report logs - #54187
[PATCH] gnu: Add python-django-3.1.14

Previous Next

Package: guix-patches;

Reported by: Pradana Adrinusa AUMARS <paumars <at> courrier.dev>

Date: Sun, 27 Feb 2022 16:31:02 UTC

Severity: normal

Tags: moreinfo, patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 54187 in the body.
You can then email your comments to 54187 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#54187; Package guix-patches. (Sun, 27 Feb 2022 16:31:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Pradana Adrinusa AUMARS <paumars <at> courrier.dev>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 27 Feb 2022 16:31:02 GMT) Full text and rfc822 format available.

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

From: Pradana Adrinusa AUMARS <paumars <at> courrier.dev>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add python-django-3.1.14
Date: Sun, 27 Feb 2022 17:29:56 +0100
From f7d588b61dd5a00a9a199121f24ede058423d518 Mon Sep 17 00:00:00 2001
From: Pradana AUMARS <paumars <at> courrier.dev>
Date: Sun, 27 Feb 2022 17:25:16 +0100
Subject: [PATCH] gnu: Add python-django-3.1.14

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

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 1161d3bc18..a34c8d0e7b 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2020, 2021, 2022 Marius Bakke <marius <at> gnu.org>
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2021 Luis Felipe López Acevedo
<luis.felipe.la <at> protonmail.com>
+;;; Copyright © 2022 Pradana Aumars <paumars <at> courrier.dev>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -153,6 +154,22 @@ (define-public python-django-3.2
        ;; Django 4.0 deprecated pytz in favor of Pythons built-in
zoneinfo.
        (append python-pytz)))))
 
+;; archivebox requires django>=3.1.3,<3.2
+(define-public python-django-3.1.14
+  (package
+   (inherit python-django-3.2)
+   (version "3.1.14")
+   (source (origin
+            (method url-fetch)
+            (uri (pypi-uri "Django" version))
+            (sha256
+             (base32
+             
"0ix3v2wlnplv78zxjrlw8z3hiap2d5mxvk0ny2fc65526shsb93j"))))
+   (propagated-inputs
+    (modify-inputs (package-propagated-inputs python-django-3.2)
+		   ;; Django 4.0 deprecated pytz in favor of Pythons
built-in zoneinfo.
+		   (append python-pytz)))))
+
 (define-public python-django-2.2
   (package
     (inherit python-django-3.2)
-- 
2.34.0






Information forwarded to guix-patches <at> gnu.org:
bug#54187; Package guix-patches. (Wed, 16 Mar 2022 14:29:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Pradana Adrinusa AUMARS <paumars <at> courrier.dev>
Cc: 54187 <at> debbugs.gnu.org
Subject: Re: bug#54187: [PATCH] gnu: Add python-django-3.1.14
Date: Wed, 16 Mar 2022 15:28:50 +0100
Pradana Adrinusa AUMARS <paumars <at> courrier.dev> skribis:

>>From f7d588b61dd5a00a9a199121f24ede058423d518 Mon Sep 17 00:00:00 2001
> From: Pradana AUMARS <paumars <at> courrier.dev>
> Date: Sun, 27 Feb 2022 17:25:16 +0100
> Subject: [PATCH] gnu: Add python-django-3.1.14
>
> * gnu/packages/django.scm (python-django-3.1.14): New variable.

[...]

> +;; archivebox requires django>=3.1.3,<3.2
> +(define-public python-django-3.1.14

Since archivebox is not packaged in Guix, I’d lean towards not including
this patch… unless you also plan to submit a patch adding archivebox.

Is that what you had in mind?

Thanks,
Ludo’.




Added tag(s) moreinfo. Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Fri, 18 Mar 2022 14:00:03 GMT) Full text and rfc822 format available.

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 23 May 2022 14:04:01 GMT) Full text and rfc822 format available.

Notification sent to Pradana Adrinusa AUMARS <paumars <at> courrier.dev>:
bug acknowledged by developer. (Mon, 23 May 2022 14:04:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Pradana Adrinusa AUMARS <paumars <at> courrier.dev>
Cc: 54187-done <at> debbugs.gnu.org
Subject: Re: bug#54187: [PATCH] gnu: Add python-django-3.1.14
Date: Mon, 23 May 2022 16:03:28 +0200
Hi,

Pradana Adrinusa AUMARS <paumars <at> courrier.dev> skribis:

>>From f7d588b61dd5a00a9a199121f24ede058423d518 Mon Sep 17 00:00:00 2001
> From: Pradana AUMARS <paumars <at> courrier.dev>
> Date: Sun, 27 Feb 2022 17:25:16 +0100
> Subject: [PATCH] gnu: Add python-django-3.1.14
>
> * gnu/packages/django.scm (python-django-3.1.14): New variable.

Finally applied, thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 21 Jun 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 310 days ago.

Previous Next


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