all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 65758@debbugs.gnu.org
Cc: ngraves@ngraves.fr, Lars-Dominik Braun <lars@6xq.net>,
	jgart <jgart@dismail.de>
Subject: [bug#65758] [PATCH v6 22/55] gnu: python-django-tagging: Add patch for django@4 support.
Date: Tue,  5 Sep 2023 18:30:58 +0200	[thread overview]
Message-ID: <ba25a1cebdd908a6e921e8850c7eb1d81e78598f.1693931491.git.ngraves@ngraves.fr> (raw)
In-Reply-To: <210284f7682898dae8772280ec23f175e26255a9.1693931491.git.ngraves@ngraves.fr>

* gnu/packages/django.scm (python-django-tagging): Add patch for django@4 support.
[source](patches): Add patch for django@4 support.
[native-inputs]: Add tzdata-for-tests.
* gnu/packages/patches/python-django-tagging-django-4-support.patch
---
 gnu/packages/django.scm                       |   7 +-
 ...thon-django-tagging-django-4-support.patch | 101 ++++++++++++++++++
 2 files changed, 106 insertions(+), 2 deletions(-)
 create mode 100644 gnu/packages/patches/python-django-tagging-django-4-support.patch

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index c689526a6d..b5830234b4 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -1071,8 +1071,9 @@ (define-public python-django-tagging
        (method url-fetch)
        (uri (pypi-uri "django-tagging" version))
        (sha256
-        (base32
-         "13afxx30chssclxzd9gqnvwm9qyrdpnlbs6iswdfa18phfj8zmi8"))))
+        (base32 "13afxx30chssclxzd9gqnvwm9qyrdpnlbs6iswdfa18phfj8zmi8"))
+       (patches
+        (search-patches "python-django-tagging-django-4-support.patch"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -1081,6 +1082,8 @@ (define-public python-django-tagging
            (lambda _
              (setenv "DJANGO_SETTINGS_MODULE" "tagging.tests.settings")
              (invoke "django-admin" "test" "--pythonpath=."))))))
+    (native-inputs
+     (list tzdata-for-tests))
     (inputs
      (list python-django))
     (home-page "https://github.com/Fantomas42/django-tagging")
diff --git a/gnu/packages/patches/python-django-tagging-django-4-support.patch b/gnu/packages/patches/python-django-tagging-django-4-support.patch
new file mode 100644
index 0000000000..bb51f072cf
--- /dev/null
+++ b/gnu/packages/patches/python-django-tagging-django-4-support.patch
@@ -0,0 +1,101 @@
+From ee42fd962c5abc7ed18f729ded42ee1f56397678 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bartolom=C3=A9=20S=C3=A1nchez=20Salado?=
+ <bartolome.salado@kiwi.com>
+Date: Sun, 12 Dec 2021 18:13:23 +0100
+Subject: [PATCH 2/4] Use smart_str instead of deprecated smart_text Django
+ function
+
+---
+ tagging/models.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tagging/models.py b/tagging/models.py
+index 02550eec..d16a61ec 100644
+--- a/tagging/models.py
++++ b/tagging/models.py
+@@ -5,7 +5,7 @@
+ from django.contrib.contenttypes.models import ContentType
+ from django.db import connection
+ from django.db import models
+-from django.utils.encoding import smart_text
++from django.utils.encoding import smart_str
+ from django.utils.translation import gettext_lazy as _
+ 
+ from tagging import settings
+@@ -519,4 +519,4 @@ class Meta:
+         verbose_name_plural = _('tagged items')
+ 
+     def __str__(self):
+-        return '%s [%s]' % (smart_text(self.object), smart_text(self.tag))
++        return '%s [%s]' % (smart_str(self.object), smart_str(self.tag))
+
+From 9c47683ec67ad2fbf82f1dce6384b156f64f55bc Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bartolom=C3=A9=20S=C3=A1nchez=20Salado?=
+ <bartolome.salado@kiwi.com>
+Date: Sun, 12 Dec 2021 18:14:35 +0100
+Subject: [PATCH 3/4] Use re_path instead of deprecated url Django function
+
+---
+ tagging/tests/urls.py | 12 ++++++------
+ 1 file changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/tagging/tests/urls.py b/tagging/tests/urls.py
+index aa127d5f..7db3e7e1 100644
+--- a/tagging/tests/urls.py
++++ b/tagging/tests/urls.py
+@@ -1,5 +1,5 @@
+ """Test urls for tagging."""
+-from django.conf.urls import url
++from django.urls import re_path
+ 
+ from tagging.tests.models import Article
+ from tagging.views import TaggedObjectList
+@@ -11,10 +11,10 @@ class StaticTaggedObjectList(TaggedObjectList):
+ 
+ 
+ urlpatterns = [
+-    url(r'^static/$', StaticTaggedObjectList.as_view()),
+-    url(r'^static/related/$', StaticTaggedObjectList.as_view(
++    re_path(r'^static/$', StaticTaggedObjectList.as_view()),
++    re_path(r'^static/related/$', StaticTaggedObjectList.as_view(
+         related_tags=True)),
+-    url(r'^no-tag/$', TaggedObjectList.as_view(model=Article)),
+-    url(r'^no-query-no-model/$', TaggedObjectList.as_view()),
+-    url(r'^(?P<tag>[^/]+(?u))/$', TaggedObjectList.as_view(model=Article)),
++    re_path(r'^no-tag/$', TaggedObjectList.as_view(model=Article)),
++    re_path(r'^no-query-no-model/$', TaggedObjectList.as_view()),
++    re_path(r'^(?P<tag>[^/]+(?u))/$', TaggedObjectList.as_view(model=Article)),
+ ]
+
+From 6550f6c04c0d2d67049e8cc3263623811207c66d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bartolom=C3=A9=20S=C3=A1nchez=20Salado?=
+ <bartolome.salado@kiwi.com>
+Date: Sun, 12 Dec 2021 18:26:03 +0100
+Subject: [PATCH 4/4] Add support for Django 4 compatibility
+
+---
+ tagging/models.py | 6 ++++--
+ 1 files changed, 4 insertions(+), 2 deletions(-)
+
+--- a/tagging/models.py
++++ b/tagging/models.py
+@@ -5,6 +5,7 @@
+ from django.contrib.contenttypes.models import ContentType
+ from django.db import connection
+ from django.db import models
++from django.db.models.query_utils import Q
+ from django.utils.encoding import smart_str
+ from django.utils.translation import gettext_lazy as _
+ 
+@@ -155,8 +156,9 @@ def usage_for_model(self, model, counts=False, min_count=None,
+             filters = {}
+ 
+         queryset = model._default_manager.filter()
+-        for f in filters.items():
+-            queryset.query.add_filter(f)
++        for k, v in filters.items():
++            # Add support for both Django 4 and inferior versions
++            queryset.query.add_q(Q((k, v)))
+         usage = self.usage_for_queryset(queryset, counts, min_count)
+ 
+         return usage
-- 
2.41.0





  parent reply	other threads:[~2023-09-05 17:31 UTC|newest]

Thread overview: 113+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-05 14:48 [bug#65758] [PATCH 0/54 v6] Update django and install wagtail Nicolas Graves via Guix-patches via
2023-09-05 16:30 ` [bug#65758] [PATCH v6 01/55] gnu: python-django-4.0: Update to 4.0.9 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 02/55] gnu: python-asgiref: Update to 3.6.0 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 03/55] gnu: Add python-asgiref-3.4.1 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 04/55] gnu: python-distributed: Disable failing tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 05/55] gnu: Add python-django-4.2 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 06/55] gnu: python-django-extensions: Update to 3.2.0 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 07/55] gnu: Add python-django-extensions-3.0 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 08/55] gnu: python-django-3.1.14: Skip failing tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 09/55] gnu: python-django-simple-math-captcha: Update to 1.0.9-0-61adb4f Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 10/55] gnu: python-easy-thumbnails: Update to 2.8.5 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 11/55] gnu: python-django-filter: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 12/55] gnu: python-django-allauth: Update to 0.47.0 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 13/55] gnu: python-django-debug-toolbar: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 14/55] gnu: python-django-picklefield: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 15/55] gnu: Remove python-django-2.2 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 16/55] gnu: datasette: Disabling failing tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 17/55] gnu: graphite-web: Update to 1.1.10-0-dca59dc Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 18/55] gnu: python-django-contact-form: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 19/55] gnu: python-django-contrib-comments: Update to 2.2.0 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 20/55] gnu: python-dango-rq: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` [bug#65758] [PATCH v6 21/55] gnu: python-django-sortedm2m: Replace input python-django by python-django-3.2 Nicolas Graves via Guix-patches via
2023-09-05 16:30   ` Nicolas Graves via Guix-patches via [this message]
2023-09-05 16:30   ` [bug#65758] [PATCH v6 23/55] gnu: python-django-sortedm2m: Update to 3.1.1-0-ddf321f Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 24/55] gnu: python-defusedxml: Update to 0.7.0 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 25/55] gnu: python-filetype: Update to 1.0.10 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 26/55] gnu: python-rcssmin: Update to 1.1.1 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 27/55] gnu: python-rjsmin: Update to 1.2.1 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 28/55] gnu: python-django-mailman3: Update to 1.3.8 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 29/55] gnu: Remove python-pysolr Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 30/55] gnu: python-django-compressor: Update to 4.3.1 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 31/55] gnu: python-django-haystack: Update to 3.2.1 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 32/55] gnu: python-hyperkitty: Update to 1.3.7 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 33/55] gnu: Add python-django-requests-debug-toolbar Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 34/55] gnu: postorius: Update to 1.3.7 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 35/55] gnu: python-django-rest-framework: Update to 3.14.0 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 36/55] gnu: python-django: Update default version to 4.0 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 37/55] gnu: python-django-taggit: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 38/55] gnu: python-django-filter: Update to 22.1 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 39/55] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 40/55] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 41/55] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 42/55] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 43/55] gnu: Add python-willow Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 44/55] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 45/55] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 46/55] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 47/55] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 48/55] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 49/55] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 50/55] gnu: Add python-django-permissionedforms Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 51/55] gnu: python-openpyxl: Update to 3.1.2 Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 52/55] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 53/55] gnu: Add python-wagtail-factories Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 54/55] gnu: Add python-wagtail-localize Nicolas Graves via Guix-patches via
2023-09-05 16:31   ` [bug#65758] [PATCH v6 55/55] gnu: python-django: Update to 4.1.9 Nicolas Graves via Guix-patches via
2023-09-06  9:15 ` [bug#65758] [PATCH v7 01/57] gnu: python-django-4.0: Update to 4.0.9 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 02/57] gnu: python-asgiref: Update to 3.6.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 03/57] gnu: Add python-asgiref-3.4.1 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 04/57] gnu: python-distributed: Disable failing tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 05/57] gnu: Add python-django-4.2 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 06/57] gnu: python-django-extensions: Update to 3.2.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 07/57] gnu: Add python-django-extensions-3.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 08/57] gnu: python-django-3.1.14: Skip failing tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 09/57] gnu: python-django-simple-math-captcha: Update to 1.0.9-0-61adb4f Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 10/57] gnu: python-easy-thumbnails: Update to 2.8.5 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 11/57] gnu: python-django-filter: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 12/57] gnu: python-django-allauth: Update to 0.47.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 13/57] gnu: python-django-debug-toolbar: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 14/57] gnu: python-django-picklefield: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 15/57] gnu: Remove python-django-2.2 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 16/57] gnu: datasette: Disabling failing tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 17/57] gnu: graphite-web: Update to 1.1.10-0-dca59dc Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 18/57] gnu: python-django-contact-form: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 19/57] gnu: python-django-contrib-comments: Update to 2.2.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 20/57] gnu: python-dango-rq: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 21/57] gnu: python-django-sortedm2m: Replace input python-django by python-django-3.2 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 22/57] gnu: python-django-tagging: Add patch for django@4 support Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 23/57] gnu: python-django-sortedm2m: Update to 3.1.1-0-ddf321f Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 24/57] gnu: python-defusedxml: Update to 0.7.0 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 25/57] gnu: python-filetype: Update to 1.0.10 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 26/57] gnu: python-rcssmin: Update to 1.1.1 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 27/57] gnu: python-rjsmin: Update to 1.2.1 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 28/57] gnu: python-django-mailman3: Update to 1.3.8 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 29/57] gnu: Remove python-pysolr Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 30/57] gnu: python-django-compressor: Update to 4.3.1 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 31/57] gnu: python-django-haystack: Update to 3.2.1 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 32/57] gnu: python-hyperkitty: Update to 1.3.7 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 33/57] gnu: Add python-django-requests-debug-toolbar Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 34/57] gnu: postorius: Update to 1.3.7 Nicolas Graves via Guix-patches via
2023-09-06  9:15   ` [bug#65758] [PATCH v7 35/57] gnu: python-django-rest-framework: Update to 3.14.0 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 36/57] gnu: python-django: Update default version to 4.0 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 37/57] gnu: python-django-taggit: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 38/57] gnu: python-django-filter: Update to 22.1 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 39/57] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 40/57] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 41/57] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 42/57] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 43/57] gnu: Add python-willow Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 44/57] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 45/57] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 46/57] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 47/57] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 48/57] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 49/57] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 50/57] gnu: Add python-django-permissionedforms Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 51/57] gnu: python-openpyxl: Update to 3.1.2 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 52/57] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 53/57] gnu: Add python-wagtail-factories Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 54/57] gnu: Add python-wagtail-localize Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 55/57] gnu: python-django: Update to 4.1.9 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 56/57] gnu: patchwork: Update to 3.1.3 Nicolas Graves via Guix-patches via
2023-09-06  9:16   ` [bug#65758] [PATCH v7 57/57] gnu: python-django-debug-toolbar: Update to 3.8.1 Nicolas Graves via Guix-patches via

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

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

  git send-email \
    --in-reply-to=ba25a1cebdd908a6e921e8850c7eb1d81e78598f.1693931491.git.ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=65758@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    --cc=lars@6xq.net \
    --cc=ngraves@ngraves.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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.