unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#63356] [PATCH] gnu: ftxui: Update to 4.0.0.
@ 2023-05-08  7:11 Artyom V. Poptsov
  2023-05-13  9:57 ` bug#63356: " 宋文武 via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Artyom V. Poptsov @ 2023-05-08  7:11 UTC (permalink / raw)
  To: 63356


[-- Attachment #1.1: Type: text/plain, Size: 66 bytes --]

Hello,

this patch updates FTXUI[1] to 4.0.0 and fixes its build.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-ftxui-Update-to-4.0.0.patch --]
[-- Type: text/x-diff, Size: 2852 bytes --]

From 492897d7e9a266fecafa31da2342e63b604364e6 Mon Sep 17 00:00:00 2001
Message-Id: <492897d7e9a266fecafa31da2342e63b604364e6.1683529548.git.poptsov.artyom@gmail.com>
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Date: Mon, 8 May 2023 10:05:31 +0300
Subject: [PATCH] gnu: ftxui: Update to 4.0.0.

* gnu/packages/cpp.scm (ftxui): Update to 4.0.0.
  [native-inputs]: Add benchmark.
  [arguments]: Remove phase modifiers.
---
 gnu/packages/cpp.scm | 22 +++++-----------------
 1 file changed, 5 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 023d1c0337..242ea088bb 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -67,6 +67,7 @@ (define-module (gnu packages cpp)
   #:use-module (gnu packages)
   #:use-module (gnu packages assembly)
   #:use-module (gnu packages autotools)
+  #:use-module (gnu packages benchmark)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages build-tools)
   #:use-module (gnu packages c)
@@ -2433,7 +2434,7 @@ (define-public wdl
 (define-public ftxui
   (package
     (name "ftxui")
-    (version "3.0.0")
+    (version "4.0.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2441,27 +2442,14 @@ (define-public ftxui
                     (commit (string-append "v" version))))
               (sha256
                (base32
-                "10a4yw2h29kixxyhll6cvrwyscsvz9asxry857a9l8nqvbhs946s"))
+                "01h59ln8amsj6ymxmsxhmslld2yp003n82fg3mphgkrh6lf22h6y"))
               (file-name (git-file-name name version))))
     (build-system cmake-build-system)
-    (native-inputs (list googletest))
+    (native-inputs (list googletest benchmark))
     (arguments
      (list #:configure-flags
            #~(list "-DFTXUI_BUILD_TESTS:BOOL=ON"
-                   "-DFTXUI_BUILD_TESTS_FUZZER:BOOL=OFF")
-           #:phases
-           #~(modify-phases %standard-phases
-               (add-after 'unpack 'patch-cmake-tests
-                 (lambda _
-                   (substitute* "cmake/ftxui_test.cmake"
-                     (("NOT googletest_POPULATED")
-                      "FALSE"))
-                   ;; Disable benchmarks for a while as they require bundled Google
-                   ;; benchmark and when the 'googlebenchmark' is unbundled, there's
-                   ;; a CMake configuration error.
-                   (substitute* "cmake/ftxui_benchmark.cmake"
-                     (("NOT WIN32")
-                      "FALSE")))) )))
+                   "-DFTXUI_BUILD_TESTS_FUZZER:BOOL=OFF")))
     (home-page "https://github.com/ArthurSonzogni/FTXUI")
     (synopsis "C++ Functional Terminal User Interface")
     (description

base-commit: b7e77446261fdc8dab360d7835a5dec919f6a79f
-- 
2.34.1


[-- Attachment #1.3: Type: text/plain, Size: 275 bytes --]


- avp

References:
1. https://github.com/ArthurSonzogni/FTXUI

-- 
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE  B57C E9C5 A2D9 0898 A02F

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 519 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#63356: [PATCH] gnu: ftxui: Update to 4.0.0.
  2023-05-08  7:11 [bug#63356] [PATCH] gnu: ftxui: Update to 4.0.0 Artyom V. Poptsov
@ 2023-05-13  9:57 ` 宋文武 via Guix-patches via
  2023-05-14 20:11   ` [bug#63356] " Artyom V. Poptsov
  0 siblings, 1 reply; 3+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-05-13  9:57 UTC (permalink / raw)
  To: Artyom V. Poptsov; +Cc: 63356-done

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> writes:

> Hello,
>
> this patch updates FTXUI[1] to 4.0.0 and fixes its build.
>

Hello, it was already updated to 4.0.0 by another patch.
But this patch's add 'benchmark' and remove the #:phases still apply, so
I did that.

Thank you!




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#63356] [PATCH] gnu: ftxui: Update to 4.0.0.
  2023-05-13  9:57 ` bug#63356: " 宋文武 via Guix-patches via
@ 2023-05-14 20:11   ` Artyom V. Poptsov
  0 siblings, 0 replies; 3+ messages in thread
From: Artyom V. Poptsov @ 2023-05-14 20:11 UTC (permalink / raw)
  To: 宋文武; +Cc: 63356-done

[-- Attachment #1: Type: text/plain, Size: 424 bytes --]

Hello!

> Hello, it was already updated to 4.0.0 by another patch.
> But this patch's add 'benchmark' and remove the #:phases still apply, so
> I did that.

Thanks, I'm glad you found my patch useful.

- avp

-- 
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE  B57C E9C5 A2D9 0898 A02F

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 519 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-05-14 20:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-08  7:11 [bug#63356] [PATCH] gnu: ftxui: Update to 4.0.0 Artyom V. Poptsov
2023-05-13  9:57 ` bug#63356: " 宋文武 via Guix-patches via
2023-05-14 20:11   ` [bug#63356] " Artyom V. Poptsov

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).