[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: libantlr3c: Use G-Expression.
From: |
guix-commits |
Subject: |
02/08: gnu: libantlr3c: Use G-Expression. |
Date: |
Sun, 26 Jan 2025 22:39:42 -0500 (EST) |
z572 pushed a commit to branch master
in repository guix.
commit b213b0d360d8119da152c9f57a0d341e314eaa5f
Author: Zheng Junjie <873216071@qq.com>
AuthorDate: Sun Jan 26 12:19:44 2025 +0800
gnu: libantlr3c: Use G-Expression.
gnu/packages/java.scm (libantlr3c)[arguments]: Use G-Expression.
Change-Id: If280b345a9c86ddccb0614a124ff8b2215b8648c
---
gnu/packages/java.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index e6ccd34db9..f4d83da05a 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -21,6 +21,7 @@
;;; Copyright © 2022, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024 Paul A. Patience <paul@apatience.com>
;;; Copyright © 2024 Raven Hallsby <karl@hallsby.com>
+;;; Copyright © 2025 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2187,14 +2188,15 @@ build process and its dependencies, whereas Make uses
Makefile format.")
(base32 "0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa"))))
(build-system gnu-build-system)
(arguments
- `(#:configure-flags (list "--enable-debuginfo"
- "--disable-static"
- ,@(if (target-64bit?)
- `("--enable-64bit")
- '())
- ,@(if (target-riscv64?)
- `("--disable-abiflags")
- '()))))
+ (list #:configure-flags
+ #~(list "--enable-debuginfo"
+ "--disable-static"
+ #$@(if (target-64bit?)
+ #~("--enable-64bit")
+ #~())
+ #$@(if (target-riscv64?)
+ #~("--disable-abiflags")
+ #~()))))
(synopsis "ANTLR C Library")
(description "LIBANTLR3C provides run-time C libraries for ANTLR3 (ANother
Tool for Language Recognition v3).")
- branch master updated (5133fe25d4 -> 77603927fb), guix-commits, 2025/01/26
- 02/08: gnu: libantlr3c: Use G-Expression.,
guix-commits <=
- 07/08: gnu: Remove arachne-pnr., guix-commits, 2025/01/26
- 05/08: gnu: abc: Update to 0.0-4.d5e1a5d., guix-commits, 2025/01/26
- 01/08: gnu: libantlr3c: Fix build on riscv64., guix-commits, 2025/01/26
- 04/08: gnu: dhcpcd: Update to 10.1.0., guix-commits, 2025/01/26
- 06/08: gnu: snapper: Update to 0.12.1., guix-commits, 2025/01/26
- 03/08: gnu: Add dhcpcd., guix-commits, 2025/01/26
- 08/08: gnu: diffoscope: Update to 286., guix-commits, 2025/01/26