[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: libvterm: Update to 0.3.3.
From: |
guix-commits |
Subject: |
05/07: gnu: libvterm: Update to 0.3.3. |
Date: |
Wed, 13 Sep 2023 04:23:23 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 8d5304b143eee34e1998fca8f0c9f2fad7599d1a
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Wed Sep 6 16:55:39 2023 +0800
gnu: libvterm: Update to 0.3.3.
* gnu/packages/terminals.scm (libvterm): Update to 0.3.3.
[source]: Use launchpad.net url.
[arguments]: Use CC-FOR-TARGET.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/terminals.scm | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 43aeac9fd7..1f72393593 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -35,6 +35,7 @@
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; Copyright © 2023 Aaron Covrig <aaron.covrig.us@ieee.org>
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
+;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -629,19 +630,25 @@ should be thread-safe.")
(define-public libvterm
(package
(name "libvterm")
- (version "0.3.1")
+ (version "0.3.3")
(source
(origin
(method url-fetch)
- (uri (string-append "https://www.leonerd.org.uk/code/libvterm/"
- "libvterm-" version ".tar.gz"))
+ (uri (string-append
+ "https://launchpad.net/libvterm/trunk/v"
+ (version-major+minor version)
+ "/+download/libvterm-" version ".tar.gz"))
(sha256
- (base32 "15y3y23kfpcda7n79ym3gp1abzn8mshxrad8s3gnhls82nfava15"))))
+ (base32 "1q16fbznm54p24hqvw8c9v3347apk86ybsxyghsbsa11vm1ny589"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
- (list "CC=gcc"
- (string-append "PREFIX=" (assoc-ref %outputs "out")))
+ (list
+ ;; FIXME: cross build fails.
+ ;; ld: src/.libs/encoding.o: error adding symbols: file in wrong format
+ ;; collect2: error: ld returned 1 exit status
+ (string-append "CC=" ,(cc-for-target))
+ (string-append "PREFIX=" (assoc-ref %outputs "out")))
#:test-target "test"
#:phases
(modify-phases %standard-phases
- branch master updated (07d43c66d5 -> c30c9df5e9), guix-commits, 2023/09/13
- 05/07: gnu: libvterm: Update to 0.3.3.,
guix-commits <=
- 03/07: gnu: python-qtsass: Update to 0.4.0., guix-commits, 2023/09/13
- 01/07: gnu: emilua: Update to 0.4.3., guix-commits, 2023/09/13
- 04/07: gnu: tennix: Update to 1.3.4., guix-commits, 2023/09/13
- 07/07: gnu: yoyo-migrations: Update to 8.2.0., guix-commits, 2023/09/13
- 02/07: gnu: python-libsass: Update to 0.22.0., guix-commits, 2023/09/13
- 06/07: gnu: libvterm: Update arguments style., guix-commits, 2023/09/13