From: Adriel Dumas--Jondeau via Guix-patches via <guix-patches@gnu.org>
To: 61903@debbugs.gnu.org
Subject: [bug#61903] [PATCH] Update fish to 3.6.0
Date: Thu, 02 Mar 2023 01:01:31 +0100 [thread overview]
Message-ID: <87356oj9dk.fsf@disroot.org> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 1038 bytes --]
Hello,
This patch updates fish to the latest released version (2023-01-07) as
it seems to work well (it's my main shell and I have been testing this
version on Guix on a daily basis this week).
The update was made with guix refresh and then tested on a daily basis
during this week (only on x86_64 architecture though, as I wanted to
make a first patch before struggling with virtualisation).
We have to remove PCRE2 related snippets as upstream removed the bundled
copy from its source[1] (see “For Distributors” header).
In the near future, we'll probably need to change the build system and
the package definition a lot, as Fish is being rewritten in rust[2].
Given the nature of this patch, I don't care being credited in the
copyright notice.
PS: This is my first patch, I hope I'm properly following the
conventions, please tell me if I can do anything better next times :)
[1] https://github.com/fish-shell/fish-shell/releases/tag/3.6.0
[2] https://github.com/fish-shell/fish-shell/pull/9512
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: Update fish to 3.6.0 --]
[-- Type: text/x-patch, Size: 2087 bytes --]
From c05adaddb14064f0d2817e331fe5d0618f218bb9 Mon Sep 17 00:00:00 2001
Message-Id: <c05adaddb14064f0d2817e331fe5d0618f218bb9.1677701063.git.leirda@disroot.org>
From: Andy Tai <atai@atai.org>
Date: Sun, 12 Feb 2023 15:54:49 -0800
Subject: [PATCH] gnu: Add emacs-motif.
* gnu/packages/text-editors.scm (emacs-motif): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 51ce4e481b..94d08244d1 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -66,6 +66,7 @@ (define-module (gnu packages emacs)
#:use-module (gnu packages gtk)
#:use-module (gnu packages guile)
#:use-module (gnu packages image)
+ #:use-module (gnu packages lesstif) ; motif
#:use-module (gnu packages linux) ; alsa-lib, gpm
#:use-module (gnu packages mail) ; for mailutils
#:use-module (gnu packages multiprecision)
@@ -512,6 +513,30 @@ (define-public emacs-xwidgets
(modify-inputs (package-inputs emacs)
(prepend webkitgtk-with-libsoup2 libxcomposite)))))
+(define-public emacs-motif
+ (package/inherit emacs
+ (name "emacs-motif")
+ (synopsis
+ "The extensible, customizable, self-documenting text editor (with Motif
+toolkit)")
+ (build-system gnu-build-system)
+ (inputs (modify-inputs (package-inputs emacs)
+ (delete "gtk+")
+ (prepend inotify-tools motif)))
+ (arguments
+ (substitute-keyword-arguments
+ (package-arguments
+ emacs)
+ ((#:configure-flags flags #~'())
+ #~(cons "--with-x-toolkit=motif"
+ #$flags))
+ ((#:modules _)
+ (%emacs-modules build-system))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (delete 'restore-emacs-pdmp)
+ (delete 'strip-double-wrap)))))))
+
(define-public emacs-no-x
(package/inherit emacs
(name "emacs-no-x")
--
2.39.1
[-- Attachment #1.3: Type: text/plain, Size: 15 bytes --]
--
Adriel
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 686 bytes --]
next prev reply other threads:[~2023-03-02 1:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <be17997691a0211a0bcb8deceae8c700a14b92e9ed2a7c5b398e0ce76c18942f@mu.id>
2023-03-02 0:19 ` [bug#61904] [PATCH] Update fish to 3.6.0 Adriel Dumas--Jondeau via Guix-patches via
2023-03-02 0:01 ` Adriel Dumas--Jondeau via Guix-patches via [this message]
2023-03-02 9:21 ` [bug#61903] Fwd: " Adriel Dumas--Jondeau via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87356oj9dk.fsf@disroot.org \
--to=guix-patches@gnu.org \
--cc=61903@debbugs.gnu.org \
--cc=leirda@disroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.