unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67902] [PATCH 00/95] PHP package chain.
@ 2023-12-19 13:42 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
                   ` (4 more replies)
  0 siblings, 5 replies; 298+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2023-12-19 13:42 UTC (permalink / raw)
  To: 67902; +Cc: ludo, ngraves

This patch series introduces a PHP package chain able to build phpunit
and test the vast majority of this chain's packages. phpunit is the
standard tool to test php packages.

Note that this patch series has to be applied as a whole, packages are
added in the order from the file, and not in the order required to
build a the subset of previous packages.

Nicolas Graves (95):
  gnu: Add abnfgen.
  gnu: php-xyz: Add copyright and useful modules.
  gnu: Add php-cache-tag-interop.
  gnu: Add php-doctrine-collections.
  gnu: Add php-doctrine-common.
  gnu: Add php-doctrine-deprecations.
  gnu: Add php-doctrine-event-manager.
  gnu: Add php-doctrine-instantiator.
  gnu: Add php-doctrine-lexer.
  gnu: Add php-doctrine-persistence.
  gnu: Add php-dms-phpunit-arraysubset-asserts.
  gnu: Add php-egulias-email-validator.
  gnu: Add php-fig-log-test.
  gnu: Add php-hamcrest-hamcrest-php.
  gnu: Add php-mockery-mockery.
  gnu: Add php-myclabs-deep-copy.
  gnu: Add php-nikic-php-parser.
  gnu: Add php-phar-io-manifest.
  gnu: Add php-phar-io-version.
  gnu: Add php-phpdocumentor-reflection-common.
  gnu: Add php-phpdocumentor-reflection-docblock.
  gnu: Add php-phpdocumentor-type-resolver.
  gnu: Add php-phpspec-prophecy.
  gnu: Add php-phpstan-phpdoc-parser.
  gnu: Add php-phpunit-php-code-coverage.
  gnu: Add php-phpunit-php-file-iterator.
  gnu: Add php-phpunit-php-invoker.
  gnu: Add php-phpunit-php-timer.
  gnu: Add php-phpunit-php-text-template.
  gnu: Add php-phpunit-php-token-stream.
  gnu: Add php-predis-predis.
  gnu: Add php-psr-log.
  gnu: Add php-psr-cache.
  gnu: Add php-psr-cache-1.
  gnu: Add php-psr-container.
  gnu: Add php-psr-event-dispatcher.
  gnu: Add php-psr-simple-cache.
  gnu: Add php-sebastian-cli-parser.
  gnu: Add php-sebastian-code-unit.
  gnu: Add php-sebastian-code-unit-reverse-lookup.
  gnu: Add php-sebastian-comparator.
  gnu: Add php-sebastian-complexity.
  gnu: Add php-sebastian-diff.
  gnu: Add php-sebastian-environment.
  gnu: Add php-sebastian-exporter.
  gnu: Add php-sebastian-global-state.
  gnu: Add php-sebastian-lines-of-code.
  gnu: Add php-sebastian-object-enumerator.
  gnu: Add php-sebastian-object-reflector.
  gnu: Add php-sebastian-recursion-context.
  gnu: Add php-sebastian-resource-operations.
  gnu: Add php-sebastian-type.
  gnu: Add php-sebastian-version.
  gnu: Add php-symfony-cache.
  gnu: Add php-cache-integration-tests.
  gnu: Add php-symfony-cache-contracts.
  gnu: Add php-symfony-config.
  gnu: Add php-symfony-console.
  gnu: Add php-symfony-dependency-injection.
  gnu: Add php-symfony-deprecation-contracts.
  gnu: Add php-symfony-error-handler.
  gnu: Add php-symfony-event-dispatcher.
  gnu: Add php-symfony-event-dispatcher-contracts.
  gnu: Add php-symfony-expression-language.
  gnu: Add php-symfony-filesystem.
  gnu: Add php-symfony-finder.
  gnu: Add php-symfony-http-foundation.
  gnu: Add php-symfony-http-kernel.
  gnu: Add php-symfony-intl.
  gnu: Add php-symfony-lock.
  gnu: Add php-symfony-mime.
  gnu: Add php-symfony-phpunit-bridge.
  gnu: Add php-symfony-process.
  gnu: Add php-symfony-property-info.
  gnu: Add php-symfony-polyfill-ctype.
  gnu: Add php-symfony-polyfill-intl-grapheme.
  gnu: Add php-symfony-polyfill-intl-idn.
  gnu: Add php-symfony-polyfill-intl-normalizer.
  gnu: Add php-symfony-polyfill-mbstring.
  gnu: Add php-symfony-polyfill-uuid.
  gnu: Add php-symfony-service-contracts.
  gnu: Add php-symfony-stopwatch.
  gnu: Add php-symfony-string.
  gnu: Add php-symfony-translation-contracts.
  gnu: Add php-symfony-uid.
  gnu: Add php-symfony-var-dumper.
  gnu: Add php-symfony-var-exporter.
  gnu: Add php-symfony-yaml.
  gnu: Add php-doctrine-cache.
  gnu: Add php-doctrine-annotations.
  gnu: Add php-doctrine-dbal.
  gnu: Add php-theseer-tokenizer.
  gnu: Add php-twig-twig.
  gnu: Add php-webmozart-assert.
  gnu: Add php-phpunit-phpunit.

 gnu/packages/check.scm                        |   24 +
 ...t-hamcrest-php-phpunit-compatibility.patch |  190 ++
 ...ymfony-phpunit-bridge-getVendors-fix.patch |   46 +
 gnu/packages/php-xyz.scm                      | 2588 ++++++++++++++++-
 4 files changed, 2845 insertions(+), 3 deletions(-)
 create mode 100644 gnu/packages/patches/php-hamcrest-hamcrest-php-phpunit-compatibility.patch
 create mode 100644 gnu/packages/patches/php-symfony-phpunit-bridge-getVendors-fix.patch

-- 
2.41.0





^ permalink raw reply	[flat|nested] 298+ messages in thread

end of thread, other threads:[~2024-10-07 22:58 UTC | newest]

Thread overview: 298+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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   ` [bug#67902] [PATCH v3 56/96] gnu: Add php-cache-integration-tests Nicolas Graves via Guix-patches via
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

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).