diff options
| author | Nguyễn Gia Phong <cnx@loang.net> | 2026-02-14 22:45:58 +0900 |
|---|---|---|
| committer | Julien Lepiller <julien@lepiller.eu> | 2026-02-16 19:23:28 +0100 |
| commit | 5d3c9b71c414edd9b88ea6038066f4684b9f3b52 (patch) | |
| tree | 3d5b1c06695e451c69a0e9c91731dbd73bbb091a /gnu/packages/java.scm | |
| parent | 2cd64e3de11e07188d895ca91e1bbf5a560786f0 (diff) | |
gnu: java-antlr4-runtime-cpp: Rename to cpp-antlr4-runtime.
* gnu/packages/java.scm (cpp-antlr4-runtime):
Rename from java-antlr4-runtime-cpp. [synopsis]: Fix typo.
(java-antlr4-runtime-cpp): Deprecate in favor of cpp-antlr4-runtime.
* gnu/packages/electronics.scm (python-hdlconvertor)[inputs]:
Replace java-antlr4-runtime-cpp with cpp-antlr4-runtime.
* gnu/packages/fontutils.scm (python-afdko)[inputs]:
Replace java-antlr4-runtime-cpp with cpp-antlr4-runtime.
Change-Id: I6332f55909dabe55debe5dba20c4fe7dd80c321e
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
Diffstat (limited to 'gnu/packages/java.scm')
| -rw-r--r-- | gnu/packages/java.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 31995e3d2d5..b0809ce07b9 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -8875,10 +8875,11 @@ actual rendering.") sources by ANTLR.") (license license:bsd-3))) -(define-public java-antlr4-runtime-cpp +(define-public cpp-antlr4-runtime (package (inherit java-antlr4-runtime) - (name "java-antlr4-runtime-cpp") + (name "cpp-antlr4-runtime") + (properties '((upstream-name . "antlr4-cpp-runtime"))) (outputs '("out" "static")) (build-system cmake-build-system) (arguments @@ -8905,10 +8906,13 @@ sources by ANTLR.") (basename libantlr4-runtime.a))))))))) (native-inputs (list pkg-config)) (inputs (list `(,util-linux "lib"))) ;libuuid - (synopsis "ANTL C++ runtime library") + (synopsis "ANTLR C++ runtime library") (description "This package contains the C++ runtime library used with C++ generated sources by ANTLR."))) +(define-deprecated-package java-antlr4-runtime-cpp + cpp-antlr4-runtime) + (define-public java-antlr4-runtime-python (package (inherit java-antlr4-runtime) |
