GNU bug report logs - #57014
[PATCH] gnu: terminals: Deprecate wterm.

Previous Next

Package: guix-patches;

Reported by: "(" <paren <at> disroot.org>

Date: Sat, 6 Aug 2022 09:14:01 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57014 in the body.
You can then email your comments to 57014 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57014; Package guix-patches. (Sat, 06 Aug 2022 09:14:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "(" <paren <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 06 Aug 2022 09:14:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "(" <paren <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: "\(" <paren <at> disroot.org>
Subject: [PATCH] gnu: terminals: Deprecate wterm.
Date: Sat,  6 Aug 2022 10:13:31 +0100
* gnu/packages/terminals.scm (wterm): Deprecate in favour of `foot`.

`wterm` no longer works with modern Wayland, and has been unmaintained
since early 2021. See issue #52029.
---
 gnu/packages/terminals.scm | 56 ++------------------------------------
 1 file changed, 2 insertions(+), 54 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 7e5016f08f..3603f4710e 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -31,6 +31,7 @@
 ;;; Copyright © 2021 Solene Rapenne <solene <at> perso.pw>
 ;;; Copyright © 2021 Petr Hodina <phodina <at> protonmail.com>
 ;;; Copyright © 2022 Felipe Balbi <balbi <at> kernel.org>
+;;; Copyright © 2022 ( <paren <at> disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1301,60 +1302,7 @@ (define-public eternalterminal
     (license license:asl2.0)))
 
 (define-public wterm
-  (package
-    (name "wterm")
-    (version "0.7")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/majestrate/wterm")
-             (commit "0ae42717c08a85a6509214e881422c7fbe7ecc45")))
-       (sha256
-         (base32
-          "0g4lzmc1w6na81i6hny32xds4xfig4xzswzfijyi6p93a1226dv0"))
-       (file-name (git-file-name name version))))
-    (build-system gnu-build-system)
-    (native-inputs
-     (list pkg-config))
-    (inputs
-     `(("fontconfig" ,fontconfig)
-       ("freetype" ,freetype)
-       ("libdrm" ,libdrm)
-       ("libxkbcommon" ,libxkbcommon)
-       ("ncurses" ,ncurses)
-       ("pixman" ,pixman)
-       ("wayland" ,wayland)))
-    (arguments
-     '(#:tests? #f
-
-       ;; Without -j1 it fails to find file libwld.a.
-       #:parallel-build? #f
-
-       #:make-flags (list "CC=gcc"
-                          (string-append "PREFIX=" %output)
-                          (string-append "TERMINFO="
-                                         (assoc-ref %outputs "out")
-                                         "/share/terminfo"))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure)
-         (add-after 'unpack 'terminfo-fix
-           (lambda _
-             (substitute* "Makefile"
-               (("\ttic .*") "\tmkdir -p $(SHARE_PREFIX)/share/terminfo
-\ttic -o $(SHARE_PREFIX)/share/terminfo -s wterm.info\n"))
-             #t)))))
-    (native-search-paths
-      (list (search-path-specification
-              (variable "TERMINFO_DIRS")
-              (files '("share/terminfo")))))
-    (home-page "https://github.com/majestrate/wterm")
-    (synopsis "Terminal emulator for Wayland")
-    (description "wterm is a native Wayland terminal emulator based on
-an st fork using wld. st is a simple terminal emulator for X originally
-made by suckless.")
-    (license license:x11)))
+  (deprecated-package "wterm" foot))
 
 (define-public tio
   (package
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57014; Package guix-patches. (Wed, 10 Aug 2022 16:11:01 GMT) Full text and rfc822 format available.

Message #8 received at 57014 <at> debbugs.gnu.org (full text, mbox):

From: Joshua Branson <jbranso <at> dismail.de>
To: "(" <paren <at> disroot.org>
Cc: 57014 <at> debbugs.gnu.org
Subject: Re: bug#57014: [PATCH] gnu: terminals: Deprecate wterm.
Date: Wed, 10 Aug 2022 12:10:38 -0400
Can we please commit this to guix proper?  This patch is in reponse to
the closed bug reports:

56965

and

52029

Thanks,

Joshua




Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Tue, 16 Aug 2022 01:26:02 GMT) Full text and rfc822 format available.

Notification sent to "(" <paren <at> disroot.org>:
bug acknowledged by developer. (Tue, 16 Aug 2022 01:26:02 GMT) Full text and rfc822 format available.

Message #13 received at 57014-done <at> debbugs.gnu.org (full text, mbox):

From: 宋文武 <iyzsong <at> envs.net>
To: "(" <paren <at> disroot.org>
Cc: 57014-done <at> debbugs.gnu.org
Subject: Re: bug#57014: [PATCH] gnu: terminals: Deprecate wterm.
Date: Tue, 16 Aug 2022 09:24:55 +0800
"(" <paren <at> disroot.org> writes:

> * gnu/packages/terminals.scm (wterm): Deprecate in favour of `foot`.
>
> `wterm` no longer works with modern Wayland, and has been unmaintained
> since early 2021. See issue #52029.

Applied, thank you!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 13 Sep 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 223 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.