[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#67902] [PATCH v5 01/54] gnu: Add abnfgen.
From: |
Nicolas Graves |
Subject: |
[bug#67902] [PATCH v5 01/54] gnu: Add abnfgen. |
Date: |
Fri, 18 Oct 2024 12:30:23 +0200 |
On 2024-10-18 01:05, Nicolas Graves via Guix-patches via wrote:
> * gnu/packages/check.scm (abnfgen): New variable.
>
> Change-Id: Ifd7b9a06119ef22cb3654529ac3d41a6e654e121
> ---
> gnu/packages/check.scm | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
> index 8d41996c71..05c5c229f5 100644
> --- a/gnu/packages/check.scm
> +++ b/gnu/packages/check.scm
> @@ -125,6 +125,30 @@ (define-module (gnu packages check)
> #:use-module (ice-9 match)
> #:use-module (srfi srfi-1))
>
> +(define-public abnfgen
> + (package
> + (name "abnfgen")
> + (version "0.21")
> + (source
> + (origin
> + (method url-fetch)
> + (uri "https://www.quut.com/abnfgen/abnfgen-0.21.tar.gz")
> + (sha256
> + (base32 "0vjkbsgr193r0fz0f29sljkw28djwavk51m1izinfjqb07k89xsv"))))
> + (build-system gnu-build-system)
> + (home-page "https://www.quut.com/abnfgen")
> + (synopsis "Generate random documents matching an ABNF grammar.")
> + (description
> + "Given an Augmented Backus-Naur form (ABNF) grammar (RFC 4234),
> +this package provides a binary to quickly generate lots of random documents
> +that match that grammar. That is useful for
Found the lint culprit! I searched in the wrong file. However, since QA
passes, I would rather avoid such a heavy new submission for only a
space. Feel free to add it when committing.
> +@itemize
> +@item verifying an ABNF grammar's syntactical correctness
> +@item illustrating a grammar with non-obvious examples
> +@item testing software that is supposed to consume documents described by a
> grammar
> +@end itemize")
> + (license license:expat)))
> +
> (define-public atf
> (package
> (name "atf")
--
Best regards,
Nicolas Graves
- [bug#67902] [PATCH v5 44/54] gnu: Add php-sebastian-object-enumerator., (continued)
- [bug#67902] [PATCH v5 44/54] gnu: Add php-sebastian-object-enumerator., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 22/54] gnu: Add php-phpstan-phpdoc-parser., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 40/54] gnu: Add php-sebastian-environment., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 45/54] gnu: Add php-sebastian-object-reflector., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 46/54] gnu: Add php-sebastian-recursion-context., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 50/54] gnu: Add php-symfony-polyfill-ctype., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 51/54] gnu: Add php-symfony-process., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 53/54] gnu: Add php-webmozart-assert., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 52/54] gnu: Add php-theseer-tokenizer., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 54/54] gnu: Add php-phpunit-phpunit., Nicolas Graves, 2024/10/17
- [bug#67902] [PATCH v5 01/54] gnu: Add abnfgen.,
Nicolas Graves <=