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: 67902@debbugs.gnu.org
Cc: Nicolas Graves <ngraves@ngraves.fr>
Subject: [bug#67902] [PATCH v3 56/96] gnu: Add php-cache-integration-tests.
Date: Mon,  7 Oct 2024 01:59:51 +0200	[thread overview]
Message-ID: <20241007000046.25625-56-ngraves@ngraves.fr> (raw)
In-Reply-To: <20241007000046.25625-1-ngraves@ngraves.fr>

* gnu/packages/php-xyz.scm (php-cache-integration-tests): New variable.

Change-Id: I561d088a95cdcb8629a7e6cab9503be7cf658492
---
 gnu/packages/php-xyz.scm | 42 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index c0342817da..2a03fd6ee4 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -1393,3 +1393,45 @@ (define-public php-symfony-cache
     (home-page "https://symfony.com")
     (license license:expat)))
 
+(define-public php-cache-integration-tests
+  (package
+    (name "php-cache-integration-tests")
+    (version "0.17.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/php-cache/integration-tests")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0i079z0jmcji4kn9mcxdv2093ypcd6albwkhhkiv39py31bjdpgg"))))
+    (build-system composer-build-system)
+    (arguments
+     (list
+      #:test-flags ''("--testsuite" "Symfony")
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'check 'fix-tests
+            (lambda _
+              ;; Adapt phpunit config to Guix context.
+              (substitute* "phpunit.xml.dist"
+                (("\\./vendor/symfony/cache")
+                 (string-append
+                  #$(this-package-native-input "php-symfony-cache")
+                  "/share/web/symfony/cache"))))))))
+    (inputs
+     (list php-psr-cache php-cache-tag-interop))
+    (native-inputs
+     (list php-phpunit-phpunit
+           (package/inherit php-symfony-cache
+             (arguments '(#:tests? #f))
+             (native-inputs '()))
+           php-symfony-filesystem
+           php-symfony-phpunit-bridge))
+    (synopsis "PHP integration tests")
+    (description "This package provides PHP integration tests for PSR-6 and
+PSR-16 cache implementations.")
+    (home-page "https://github.com/php-cache/integration-tests")
+    (license license:expat)))
+
-- 
2.46.0





  parent reply	other threads:[~2024-10-07  0:04 UTC|newest]

Thread overview: 298+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-19 13:42 [bug#67902] [PATCH 00/95] PHP package chain Nicolas Graves via Guix-patches via
2023-12-19 13:56 ` [bug#67902] [PATCH 01/95] gnu: Add abnfgen Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 02/95] gnu: php-xyz: Add copyright and useful modules Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 03/95] gnu: Add php-cache-tag-interop Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 04/95] gnu: Add php-doctrine-collections Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 05/95] gnu: Add php-doctrine-common Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 06/95] gnu: Add php-doctrine-deprecations Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 07/95] gnu: Add php-doctrine-event-manager Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 08/95] gnu: Add php-doctrine-instantiator Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 09/95] gnu: Add php-doctrine-lexer Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 10/95] gnu: Add php-doctrine-persistence Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 11/95] gnu: Add php-dms-phpunit-arraysubset-asserts Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 12/95] gnu: Add php-egulias-email-validator Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 13/95] gnu: Add php-fig-log-test Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 14/95] gnu: Add php-hamcrest-hamcrest-php Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 15/95] gnu: Add php-mockery-mockery Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 16/95] gnu: Add php-myclabs-deep-copy Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 17/95] gnu: Add php-nikic-php-parser Nicolas Graves via Guix-patches via
2023-12-19 13:56   ` [bug#67902] [PATCH 18/95] gnu: Add php-phar-io-manifest Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 19/95] gnu: Add php-phar-io-version Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 20/95] gnu: Add php-phpdocumentor-reflection-common Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 21/95] gnu: Add php-phpdocumentor-reflection-docblock Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 22/95] gnu: Add php-phpdocumentor-type-resolver Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 23/95] gnu: Add php-phpspec-prophecy Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 24/95] gnu: Add php-phpstan-phpdoc-parser Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 25/95] gnu: Add php-phpunit-php-code-coverage Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 26/95] gnu: Add php-phpunit-php-file-iterator Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 27/95] gnu: Add php-phpunit-php-invoker Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 28/95] gnu: Add php-phpunit-php-timer Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 29/95] gnu: Add php-phpunit-php-text-template Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 30/95] gnu: Add php-phpunit-php-token-stream Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 31/95] gnu: Add php-predis-predis Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 32/95] gnu: Add php-psr-log Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 33/95] gnu: Add php-psr-cache Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 34/95] gnu: Add php-psr-cache-1 Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 35/95] gnu: Add php-psr-container Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 36/95] gnu: Add php-psr-event-dispatcher Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 37/95] gnu: Add php-psr-simple-cache Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 38/95] gnu: Add php-sebastian-cli-parser Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 39/95] gnu: Add php-sebastian-code-unit Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 40/95] gnu: Add php-sebastian-code-unit-reverse-lookup Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 41/95] gnu: Add php-sebastian-comparator Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 42/95] gnu: Add php-sebastian-complexity Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 43/95] gnu: Add php-sebastian-diff Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 44/95] gnu: Add php-sebastian-environment Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 45/95] gnu: Add php-sebastian-exporter Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 46/95] gnu: Add php-sebastian-global-state Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 47/95] gnu: Add php-sebastian-lines-of-code Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 48/95] gnu: Add php-sebastian-object-enumerator Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 49/95] gnu: Add php-sebastian-object-reflector Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 50/95] gnu: Add php-sebastian-recursion-context Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 51/95] gnu: Add php-sebastian-resource-operations Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 52/95] gnu: Add php-sebastian-type Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 53/95] gnu: Add php-sebastian-version Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 54/95] gnu: Add php-symfony-cache Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 55/95] gnu: Add php-cache-integration-tests Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 56/95] gnu: Add php-symfony-cache-contracts Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 57/95] gnu: Add php-symfony-config Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 58/95] gnu: Add php-symfony-console Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 59/95] gnu: Add php-symfony-dependency-injection Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 60/95] gnu: Add php-symfony-deprecation-contracts Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 61/95] gnu: Add php-symfony-error-handler Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 62/95] gnu: Add php-symfony-event-dispatcher Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 63/95] gnu: Add php-symfony-event-dispatcher-contracts Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 64/95] gnu: Add php-symfony-expression-language Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 65/95] gnu: Add php-symfony-filesystem Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 66/95] gnu: Add php-symfony-finder Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 67/95] gnu: Add php-symfony-http-foundation Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 68/95] gnu: Add php-symfony-http-kernel Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 69/95] gnu: Add php-symfony-intl Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 70/95] gnu: Add php-symfony-lock Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 71/95] gnu: Add php-symfony-mime Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 72/95] gnu: Add php-symfony-phpunit-bridge Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 73/95] gnu: Add php-symfony-process Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 74/95] gnu: Add php-symfony-property-info Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 75/95] gnu: Add php-symfony-polyfill-ctype Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 76/95] gnu: Add php-symfony-polyfill-intl-grapheme Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 77/95] gnu: Add php-symfony-polyfill-intl-idn Nicolas Graves via Guix-patches via
2023-12-19 13:57   ` [bug#67902] [PATCH 78/95] gnu: Add php-symfony-polyfill-intl-normalizer Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 79/95] gnu: Add php-symfony-polyfill-mbstring Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 80/95] gnu: Add php-symfony-polyfill-uuid Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 81/95] gnu: Add php-symfony-service-contracts Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 82/95] gnu: Add php-symfony-stopwatch Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 83/95] gnu: Add php-symfony-string Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 84/95] gnu: Add php-symfony-translation-contracts Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 85/95] gnu: Add php-symfony-uid Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 86/95] gnu: Add php-symfony-var-dumper Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 87/95] gnu: Add php-symfony-var-exporter Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 88/95] gnu: Add php-symfony-yaml Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 89/95] gnu: Add php-doctrine-cache Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 90/95] gnu: Add php-doctrine-annotations Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 91/95] gnu: Add php-doctrine-dbal Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 92/95] gnu: Add php-theseer-tokenizer Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 93/95] gnu: Add php-twig-twig Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 94/95] gnu: Add php-webmozart-assert Nicolas Graves via Guix-patches via
2023-12-19 13:58   ` [bug#67902] [PATCH 95/95] gnu: Add php-phpunit-phpunit Nicolas Graves via Guix-patches via
2023-12-19 20:15 ` [bug#67902] [PATCH 02/95 v2] gnu: php-xyz: Add copyright and useful modules Nicolas Graves via Guix-patches via
2024-03-23 16:36 ` [bug#67902] [PATCH 00/95] PHP package chain Wilko Meyer
2024-04-05 20:12   ` Ludovic Courtès
2024-04-05 22:43     ` Nicolas Graves via Guix-patches via
2024-07-13 13:38       ` jgart via Guix-patches via
2024-07-13 15:53         ` Wilko Meyer
2024-07-14  0:28           ` Wilko Meyer
2024-07-15 17:46             ` jgart via Guix-patches via
2024-10-06 23:58 ` [bug#67902] [PATCH v3 01/96] gnu: Add abnfgen Nicolas Graves via Guix-patches via
2024-10-06 23:58   ` [bug#67902] [PATCH v3 02/96] gnu: php-xyz: Add copyright and useful modules Nicolas Graves via Guix-patches via
2024-10-06 23:58   ` [bug#67902] [PATCH v3 03/96] " Nicolas Graves via Guix-patches via
2024-10-06 23:58   ` [bug#67902] [PATCH v3 04/96] gnu: Add php-cache-tag-interop Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 05/96] gnu: Add php-doctrine-collections Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 06/96] gnu: Add php-doctrine-common Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 07/96] gnu: Add php-doctrine-deprecations Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 08/96] gnu: Add php-doctrine-event-manager Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 09/96] gnu: Add php-doctrine-instantiator Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 10/96] gnu: Add php-doctrine-lexer Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 11/96] gnu: Add php-doctrine-persistence Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 12/96] gnu: Add php-dms-phpunit-arraysubset-asserts Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 13/96] gnu: Add php-egulias-email-validator Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 14/96] gnu: Add php-fig-log-test Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 15/96] gnu: Add php-hamcrest-hamcrest-php Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 16/96] gnu: Add php-mockery-mockery Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 17/96] gnu: Add php-myclabs-deep-copy Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 18/96] gnu: Add php-nikic-php-parser Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 19/96] gnu: Add php-phar-io-manifest Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 20/96] gnu: Add php-phar-io-version Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 21/96] gnu: Add php-phpdocumentor-reflection-common Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 22/96] gnu: Add php-phpdocumentor-reflection-docblock Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 23/96] gnu: Add php-phpdocumentor-type-resolver Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 24/96] gnu: Add php-phpspec-prophecy Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 25/96] gnu: Add php-phpstan-phpdoc-parser Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 26/96] gnu: Add php-phpunit-php-code-coverage Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 27/96] gnu: Add php-phpunit-php-file-iterator Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 28/96] gnu: Add php-phpunit-php-invoker Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 29/96] gnu: Add php-phpunit-php-timer Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 30/96] gnu: Add php-phpunit-php-text-template Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 31/96] gnu: Add php-phpunit-php-token-stream Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 32/96] gnu: Add php-predis-predis Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 33/96] gnu: Add php-psr-log Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 34/96] gnu: Add php-psr-cache Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 35/96] gnu: Add php-psr-cache-1 Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 36/96] gnu: Add php-psr-container Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 37/96] gnu: Add php-psr-event-dispatcher Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 38/96] gnu: Add php-psr-simple-cache Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 39/96] gnu: Add php-sebastian-cli-parser Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 40/96] gnu: Add php-sebastian-code-unit Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 41/96] gnu: Add php-sebastian-code-unit-reverse-lookup Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 42/96] gnu: Add php-sebastian-comparator Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 43/96] gnu: Add php-sebastian-complexity Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 44/96] gnu: Add php-sebastian-diff Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 45/96] gnu: Add php-sebastian-environment Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 46/96] gnu: Add php-sebastian-exporter Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 47/96] gnu: Add php-sebastian-global-state Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 48/96] gnu: Add php-sebastian-lines-of-code Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 49/96] gnu: Add php-sebastian-object-enumerator Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 50/96] gnu: Add php-sebastian-object-reflector Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 51/96] gnu: Add php-sebastian-recursion-context Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 52/96] gnu: Add php-sebastian-resource-operations Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 53/96] gnu: Add php-sebastian-type Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 54/96] gnu: Add php-sebastian-version Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 55/96] gnu: Add php-symfony-cache Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` Nicolas Graves via Guix-patches via [this message]
2024-10-06 23:59   ` [bug#67902] [PATCH v3 57/96] gnu: Add php-symfony-cache-contracts Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 58/96] gnu: Add php-symfony-config Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 59/96] gnu: Add php-symfony-console Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 60/96] gnu: Add php-symfony-dependency-injection Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 61/96] gnu: Add php-symfony-deprecation-contracts Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 62/96] gnu: Add php-symfony-error-handler Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 63/96] gnu: Add php-symfony-event-dispatcher Nicolas Graves via Guix-patches via
2024-10-06 23:59   ` [bug#67902] [PATCH v3 64/96] gnu: Add php-symfony-event-dispatcher-contracts Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 65/96] gnu: Add php-symfony-expression-language Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 66/96] gnu: Add php-symfony-filesystem Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 67/96] gnu: Add php-symfony-finder Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 68/96] gnu: Add php-symfony-http-foundation Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 69/96] gnu: Add php-symfony-http-kernel Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 70/96] gnu: Add php-symfony-intl Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 71/96] gnu: Add php-symfony-lock Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 72/96] gnu: Add php-symfony-mime Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 73/96] gnu: Add php-symfony-phpunit-bridge Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 74/96] gnu: Add php-symfony-process Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 75/96] gnu: Add php-symfony-property-info Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 76/96] gnu: Add php-symfony-polyfill-ctype Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 77/96] gnu: Add php-symfony-polyfill-intl-grapheme Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 78/96] gnu: Add php-symfony-polyfill-intl-idn Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 79/96] gnu: Add php-symfony-polyfill-intl-normalizer Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 80/96] gnu: Add php-symfony-polyfill-mbstring Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 81/96] gnu: Add php-symfony-polyfill-uuid Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 82/96] gnu: Add php-symfony-service-contracts Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 83/96] gnu: Add php-symfony-stopwatch Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 84/96] gnu: Add php-symfony-string Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 85/96] gnu: Add php-symfony-translation-contracts Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 86/96] gnu: Add php-symfony-uid Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 87/96] gnu: Add php-symfony-var-dumper Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 88/96] gnu: Add php-symfony-var-exporter Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 89/96] gnu: Add php-symfony-yaml Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 90/96] gnu: Add php-doctrine-cache Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 91/96] gnu: Add php-doctrine-annotations Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 92/96] gnu: Add php-doctrine-dbal Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 93/96] gnu: Add php-theseer-tokenizer Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 94/96] gnu: Add php-twig-twig Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 95/96] gnu: Add php-webmozart-assert Nicolas Graves via Guix-patches via
2024-10-07  0:00   ` [bug#67902] [PATCH v3 96/96] gnu: Add php-phpunit-phpunit Nicolas Graves via Guix-patches via
2024-10-07 21:43 ` [bug#67902] [PATCH v4 01/98] gnu: Add abnfgen Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 02/98] gnu: php-xyz: Add copyright and useful modules Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 03/98] " Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 04/98] gnu: Add php-cache-tag-interop Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 05/98] gnu: Add php-doctrine-collections Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 06/98] gnu: Add php-doctrine-common Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 07/98] gnu: Add php-doctrine-deprecations Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 08/98] gnu: Add php-doctrine-event-manager Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 09/98] gnu: Add php-doctrine-instantiator Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 10/98] gnu: Add php-doctrine-lexer Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 11/98] gnu: Add php-doctrine-persistence Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 12/98] gnu: Add php-dms-phpunit-arraysubset-asserts Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 13/98] gnu: Add php-egulias-email-validator Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 14/98] gnu: Add php-fig-log-test Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 15/98] gnu: Add php-hamcrest-hamcrest-php Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 16/98] gnu: Add php-mockery-mockery Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 17/98] gnu: Add php-myclabs-deep-copy Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 18/98] gnu: Add php-nikic-php-parser Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 19/98] gnu: Add php-phar-io-manifest Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 20/98] gnu: Add php-phar-io-version Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 21/98] gnu: Add php-phpdocumentor-reflection-common Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 22/98] gnu: Add php-phpdocumentor-reflection-docblock Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 23/98] gnu: Add php-phpdocumentor-type-resolver Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 24/98] gnu: Add php-phpspec-prophecy Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 25/98] gnu: Add php-phpstan-phpdoc-parser Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 26/98] gnu: Add php-phpunit-php-code-coverage Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 27/98] gnu: Add php-phpunit-php-file-iterator Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 28/98] gnu: Add php-phpunit-php-invoker Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 29/98] gnu: Add php-phpunit-php-timer Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 30/98] gnu: Add php-phpunit-php-text-template Nicolas Graves via Guix-patches via
2024-10-07 21:43   ` [bug#67902] [PATCH v4 31/98] gnu: Add php-phpunit-php-token-stream Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 32/98] gnu: Add php-predis-predis Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 33/98] gnu: Add php-psr-log Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 34/98] gnu: Add php-psr-cache Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 35/98] gnu: Add php-psr-cache-1 Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 36/98] gnu: Add php-psr-container Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 37/98] gnu: Add php-psr-event-dispatcher Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 38/98] gnu: Add php-psr-simple-cache Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 39/98] gnu: Add php-sebastian-cli-parser Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 40/98] gnu: Add php-sebastian-code-unit Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 41/98] gnu: Add php-sebastian-code-unit-reverse-lookup Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 42/98] gnu: Add php-sebastian-comparator Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 43/98] gnu: Add php-sebastian-complexity Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 44/98] gnu: Add php-sebastian-diff Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 45/98] gnu: Add php-sebastian-environment Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 46/98] gnu: Add php-sebastian-exporter Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 47/98] gnu: Add php-sebastian-global-state Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 48/98] gnu: Add php-sebastian-lines-of-code Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 49/98] gnu: Add php-sebastian-object-enumerator Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 50/98] gnu: Add php-sebastian-object-reflector Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 51/98] gnu: Add php-sebastian-recursion-context Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 52/98] gnu: Add php-sebastian-resource-operations Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 53/98] gnu: Add php-sebastian-type Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 54/98] gnu: Add php-sebastian-version Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 55/98] gnu: Add php-symfony-cache Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 56/98] gnu: Add php-cache-integration-tests Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 57/98] gnu: Add php-symfony-cache-contracts Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 58/98] gnu: Add php-symfony-config Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 59/98] gnu: Add php-symfony-console Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 60/98] gnu: Add php-symfony-dependency-injection Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 61/98] gnu: Add php-symfony-deprecation-contracts Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 62/98] gnu: Add php-symfony-error-handler Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 63/98] gnu: Add php-symfony-event-dispatcher Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 64/98] gnu: Add php-symfony-event-dispatcher-contracts Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 65/98] gnu: Add php-symfony-expression-language Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 66/98] gnu: Add php-symfony-filesystem Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 67/98] gnu: Add php-symfony-finder Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 68/98] gnu: Add php-symfony-http-foundation Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 69/98] gnu: Add php-symfony-http-kernel Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 70/98] gnu: Add php-symfony-intl Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 71/98] gnu: Add php-symfony-lock Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 72/98] gnu: Add php-symfony-mime Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 73/98] gnu: Add php-symfony-phpunit-bridge Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 74/98] gnu: Add php-symfony-process Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 75/98] gnu: Add php-symfony-property-info Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 76/98] gnu: Add php-symfony-polyfill-ctype Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 77/98] gnu: Add php-symfony-polyfill-intl-grapheme Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 78/98] gnu: Add php-symfony-polyfill-intl-idn Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 79/98] gnu: Add php-symfony-polyfill-intl-normalizer Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 80/98] gnu: Add php-symfony-polyfill-mbstring Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 81/98] gnu: Add php-symfony-polyfill-uuid Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 82/98] gnu: Add php-symfony-service-contracts Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 83/98] gnu: Add php-symfony-stopwatch Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 84/98] gnu: Add php-symfony-string Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 85/98] gnu: Add php-symfony-translation-contracts Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 86/98] gnu: Add php-symfony-uid Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 87/98] gnu: Add php-symfony-var-dumper Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 88/98] gnu: Add php-symfony-var-exporter Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 89/98] gnu: Add php-symfony-yaml Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 90/98] gnu: Add php-doctrine-cache Nicolas Graves via Guix-patches via
2024-10-07 21:44   ` [bug#67902] [PATCH v4 91/98] gnu: Add php-doctrine-annotations Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 92/98] gnu: Add php-doctrine-dbal Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 93/98] gnu: Add php-theseer-tokenizer Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 94/98] gnu: Add php-twig-twig Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 95/98] gnu: Add php-webmozart-assert Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 96/98] gnu: Add php-phpunit-phpunit Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 97/98] gnu: php-doctrine-deprecations: Update to 1.1.3 Nicolas Graves via Guix-patches via
2024-10-07 21:45   ` [bug#67902] [PATCH v4 98/98] gnu: php-symfony-error-handler: Update to 6.2.13 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=20241007000046.25625-56-ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=67902@debbugs.gnu.org \
    --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).