guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 5d3c9b71c414edd9b88ea6038066f4684b9f3b52
Author: Nguyễn Gia Phong <[email protected]>
AuthorDate: Sat Feb 14 22:45:58 2026 +0900
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 <[email protected]>
---
gnu/packages/electronics.scm | 2 +-
gnu/packages/fontutils.scm | 2 +-
gnu/packages/java.scm | 10 +++++++---
3 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index de74664e3f..73ce1e22f1 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -2461,7 +2461,7 @@ SystemVerilog, and SystemC, with conversion between
languages and to JSON.")
;; Yosys source for parsing tests.
yosys-src-for-hdlconvertor-tests))
(inputs
- (list java-antlr4-runtime-cpp))
+ (list cpp-antlr4-runtime))
(propagated-inputs
(list python-hdlconvertorast))
(home-page "https://github.com/Nic30/hdlConvertor")
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 4f0febbb0e..c6228c097a 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -303,7 +303,7 @@ them as it goes.")
python-wheel))
(inputs
(list bash-minimal
- java-antlr4-runtime-cpp
+ cpp-antlr4-runtime
libxml2
`(,util-linux "lib")))
(propagated-inputs
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 31995e3d2d..b0809ce07b 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)