unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 55474@debbugs.gnu.org
Cc: ngraves@ngraves.fr, Lars-Dominik Braun <lars@6xq.net>,
	jgart <jgart@dismail.de>
Subject: [bug#55474] [PATCH v5 32/55] gnu: python-django-haystack: Update to 3.2.1.
Date: Sun, 25 Jun 2023 18:57:33 +0200	[thread overview]
Message-ID: <ffcb1eeb395594ac0656eb5936a641b8270321c8.1687712245.git.ngraves@ngraves.fr> (raw)
In-Reply-To: <79ade078335720d3a5595676a65788789415bce0.1687712245.git.ngraves@ngraves.fr>

* gnu/packages/django.scm (python-django-haystack): Update to 3.2.1.
[build-system]: Use pyproject-build-system.
[arguments](phases): Delete phase loosen-version-restrictions. Extend and
rename phase set-gdal-lib-path to set-lib-path, add phase check.
(tests?): Delete argument.
[native-inputs]: Add geos. Delete python-pysolr.
---
 gnu/packages/django.scm | 60 ++++++++++++++++++++++++++++++-----------
 1 file changed, 44 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index fa36b2c5b3..64e4c58f41 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -471,34 +471,63 @@ (define-public python-pytest-django
 (define-public python-django-haystack
   (package
     (name "python-django-haystack")
-    (version "3.1.1")
+    (version "3.2.1")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "django-haystack" version))
         (sha256
-         (base32
-          "10kaa5641cakpra2x3jqgys085gdkjcyns26plfyrmfpjmmpa1bd"))))
-    (build-system python-build-system)
+         (base32 "194kf9ps1h8bq8q32x6nniy85grl4l5605vgbd0gw9f2xxx1kqwp"))))
+    (build-system pyproject-build-system)
     (arguments
      '(#:phases
        (modify-phases %standard-phases
-         (add-after 'unpack 'loosen-verion-restrictions
-           (lambda _
-             (substitute* "setup.py"
-               (("geopy.*") "geopy\",\n"))))
-         (add-before 'check 'set-gdal-lib-path
+         (add-before 'check 'set-lib-path
            (lambda* (#:key inputs #:allow-other-keys)
-             (setenv "GDAL_LIBRARY_PATH"
-                     (string-append (assoc-ref inputs "gdal")
-                                    "/lib"))))
+             (setenv "LD_LIBRARY_PATH"
+                     (string-append
+                      (assoc-ref inputs "gdal") "/lib"
+                      ":" (assoc-ref inputs "geos") "/lib"))))
+         (replace 'check
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests?
+               (begin
+                 ;; Delete absent elasticsearch tests.
+                 (delete-file-recursively "test_haystack/elasticsearch_tests")
+                 (delete-file-recursively "test_haystack/elasticsearch2_tests")
+                 (delete-file-recursively "test_haystack/elasticsearch5_tests")
+                 (delete-file-recursively "test_haystack/elasticsearch7_tests")
+                 ;; Solr tests require a running solr server.
+                 ;; Deactivating solr.
+                 (delete-file-recursively "test_haystack/solr_tests")
+                 (delete-file "haystack/backends/solr_backend.py")
+                 (delete-file
+                  "haystack/management/commands/build_solr_schema.py")
+                 (delete-file
+                  "test_haystack/test_altered_internal_names.py")
+                 (delete-file "test_haystack/multipleindex/tests.py")
+                 (delete-file "test_haystack/spatial/test_spatial.py")
+                 (substitute* "test_haystack/test_loading.py"
+                   (("class ConnectionHandlerTestCase" all)
+                    (string-append
+                     "\nfrom nose.plugins.attrib import attr"
+                     "\n@attr('skip')"
+                     "\n" all)))
+                 (substitute* "test_haystack/settings.py"
+                   (("\"solr\":")
+                    (string-append
+                     "\"solr\": {\"ENGINE\": \"test_haystack.mocks.MockEngine\"}}"
+                     "\n_={\"solr\":")))
+                 ;; Run tests.
+                 (invoke "django-admin"
+                         "test" "--settings=test_haystack.settings"
+                         "--pythonpath=.")))))
          ;; Importing this module requires setting up a Django project.
-         (delete 'sanity-check))
-       #:tests? #f)) ; OSError: libgdal.so.27: cannot open shared object file
+              (delete 'sanity-check))))
     (propagated-inputs
      (list python-django))
     (native-inputs
-     (list gdal
+     (list gdal geos
            python-coverage
            python-dateutil
            python-geopy
@@ -506,7 +535,6 @@ (define-public python-django-haystack
            python-nose
            python-requests
            python-setuptools-scm
-           python-pysolr
            python-whoosh))
     (home-page "https://haystacksearch.org/")
     (synopsis "Pluggable search for Django")
-- 
2.40.1





  parent reply	other threads:[~2023-06-25 17:58 UTC|newest]

Thread overview: 132+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-17  7:54 [bug#55474] [PATCH 01/18] gnu: python-django-taggit: Update to 2.1.0 Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55473] [PATCH 02/18] gnu: python-django-filter: Update to 21.1 Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55476] [PATCH 03/18] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 04/18] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55475] [PATCH 05/18] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 06/18] gnu: Add python-flake8-blind-except Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 07/18] gnu: Add python-willow Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 08/18] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 09/18] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 10/18] gnu: Add python-psycopg2-2.8 Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 11/18] gnu: Add python-beautifulsoup4-4.8 Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 12/18] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 13/18] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 14/18] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 15/18] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 16/18] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 17/18] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2022-05-17  7:54 ` [bug#55474] [PATCH 18/18] gnu: Add python-wagtail-localize Nicolas Graves via Guix-patches via
     [not found] ` <handler.55474.B.165277415014271.ack@debbugs.gnu.org>
2022-06-12 18:25   ` [bug#55474] Acknowledgement ([PATCH 01/18] gnu: python-django-taggit: Update to 2.1.0.) Nicolas Graves via Guix-patches via
2023-08-17 16:49     ` Nicolas Graves via Guix-patches via
2022-08-09 17:13 ` [bug#55474] [PATCH v2 01/17] gnu: python-django-taggit: Update to 2.1.0 Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 02/17] gnu: python-django-filter: Update to 21.1 Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 03/17] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 04/17] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 05/17] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 06/17] gnu: Add python-willow Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 07/17] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 08/17] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 09/17] gnu: Add python-psycopg2-2.8 Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 10/17] gnu: Add python-beautifulsoup4-4.8 Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 11/17] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 12/17] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 13/17] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 14/17] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 15/17] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 16/17] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2022-08-09 17:13   ` [bug#55474] [PATCH v2 17/17] gnu: Add python-wagtail-localize Nicolas Graves via Guix-patches via
2022-12-23 10:21     ` Nicolas Graves via Guix-patches via
2022-12-29 15:33       ` Lars-Dominik Braun
     [not found]         ` <87tu17yhu6.fsf@ngraves.fr>
2023-01-05  7:53           ` Lars-Dominik Braun
2023-06-13  7:09             ` Nicolas Graves via Guix-patches via
2023-04-17 14:53 ` [bug#55474] [PATCH v3 01/17] gnu: python-django-taggit: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 02/17] gnu: python-django-filter: Update to 22.1 Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 03/17] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 04/17] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 05/17] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 06/17] gnu: Add python-willow Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 07/17] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 08/17] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 09/17] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 10/17] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 11/17] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 12/17] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 13/17] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 14/17] gnu: Add python-django-permissionedforms Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 15/17] gnu: python-openpyxl: Update to 3.1.2 Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 16/17] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2023-04-17 14:53   ` [bug#55474] [PATCH v3 17/17] gnu: Add python-wagtail-localize Nicolas Graves via Guix-patches via
2023-06-05 16:24 ` [bug#55474] [PATCH v4 01/19] gnu: python-django-taggit: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-06-05 16:24   ` [bug#55474] [PATCH v4 02/19] gnu: python-django-filter: Update to 22.1 Nicolas Graves via Guix-patches via
2023-06-05 16:24   ` [bug#55474] [PATCH v4 03/19] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2023-06-05 16:24   ` [bug#55474] [PATCH v4 04/19] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 05/19] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 06/19] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 07/19] gnu: Add python-willow Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 08/19] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 09/19] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 10/19] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 11/19] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 12/19] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 13/19] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 14/19] gnu: Add python-django-permissionedforms Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 15/19] gnu: python-openpyxl: Update to 3.1.2 Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 16/19] gnu: python-django-4.0: Update to 4.0.9 Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 17/19] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 18/19] gnu: Add python-wagtail-factories Nicolas Graves via Guix-patches via
2023-06-05 16:25   ` [bug#55474] [PATCH v4 19/19] gnu: Add python-wagtail-localize Nicolas Graves via Guix-patches via
2023-06-25 16:57 ` [bug#55474] [PATCH v5 01/55] gnu: python-django-4.0: Update to 4.0.9 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 02/55] gnu: python-asgiref: Update to 3.6.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 03/55] gnu: Add python-asgiref-3.4.1 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 04/55] gnu: python-distributed: Disable failing tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 05/55] gnu: Add python-django-4.2 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 06/55] gnu: python-pint: Disable failing tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 07/55] gnu: python-django-extensions: Update to 3.2.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 08/55] gnu: Add python-django-extensions-3.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 09/55] gnu: python-django-3.1.14: Skip failing tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 10/55] gnu: python-django-simple-math-captcha: Update to 1.0.9-0-61adb4f Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 11/55] gnu: python-easy-thumbnails: Update to 2.8.5 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 12/55] gnu: python-django-filter: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 13/55] gnu: python-django-allauth: Update to 0.47.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 14/55] gnu: python-django-debug-toolbar: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 15/55] gnu: python-django-picklefield: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 16/55] gnu: Remove python-django-2.2 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 17/55] gnu: datasette: Disabling failing tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 18/55] gnu: graphite-web: Update to 1.1.10-0-dca59dc Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 19/55] gnu: python-django-contact-form: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 20/55] gnu: python-django-contrib-comments: Update to 2.2.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 21/55] gnu: python-dango-rq: Add native-input tzdata-for-tests Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 22/55] gnu: python-django-sortedm2m: Replace input python-django by python-django-3.2 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 23/55] gnu: python-django-tagging: Add patch for django@4 support Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 24/55] gnu: python-django-sortedm2m: Update to 3.1.1-0-ddf321f Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 25/55] gnu: python-defusedxml: Update to 0.7.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 26/55] gnu: python-filetype: Update to 1.0.10 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 27/55] gnu: python-rcssmin: Update to 1.1.1 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 28/55] gnu: python-rjsmin: Update to 1.2.1 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 29/55] gnu: python-django-mailman3: Update to 1.3.8 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 30/55] gnu: Remove python-pysolr Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 31/55] gnu: python-django-compressor: Update to 4.3.1 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` Nicolas Graves via Guix-patches via [this message]
2023-06-25 16:57   ` [bug#55474] [PATCH v5 33/55] gnu: python-hyperkitty: Update to 1.3.7 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 34/55] gnu: Add python-django-requests-debug-toolbar Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 35/55] gnu: postorius: Update to 1.3.7 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 36/55] gnu: python-django-rest-framework: Update to 3.14.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 37/55] gnu: python-django: Update default version to 4.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 38/55] gnu: python-django-taggit: Update to 3.1.0 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 39/55] gnu: python-django-filter: Update to 22.1 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 40/55] gnu: Add python-django-modelcluster Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 41/55] gnu: Add python-django-treebeard Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 42/55] gnu: Add python-parsy Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 43/55] gnu: Add python-jinjalint Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 44/55] gnu: Add python-willow Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 45/55] gnu: Add python-django-request Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 46/55] gnu: Add python-django-environ Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 47/55] gnu: Add python-draftjs-exporter Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 48/55] gnu: Add python-l18n Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 49/55] gnu: Add python-anyascii Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 50/55] gnu: Add python-telepath Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 51/55] gnu: Add python-django-permissionedforms Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 52/55] gnu: python-openpyxl: Update to 3.1.2 Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 53/55] gnu: Add python-wagtail Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 54/55] gnu: Add python-wagtail-factories Nicolas Graves via Guix-patches via
2023-06-25 16:57   ` [bug#55474] [PATCH v5 55/55] gnu: Add python-wagtail-localize 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

  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=ffcb1eeb395594ac0656eb5936a641b8270321c8.1687712245.git.ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=55474@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 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).