unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0
@ 2023-01-18 15:46 Andy Tai
  2023-01-21  4:51 ` [bug#60937] [PATCH 1/2] gnu: wxwidgets: Reove configure option Andy Tai
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-18 15:46 UTC (permalink / raw)
  To: 60937

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



[-- Attachment #2: 0001-gnu-wxwidgets-Reove-configure-option.patch --]
[-- Type: text/x-patch, Size: 1627 bytes --]

From 68d5bd7abee816ebaa03819612016550a6200338 Mon Sep 17 00:00:00 2001
From: Andy Tai <atai@atai.org>
Date: Wed, 18 Jan 2023 07:35:10 -0800
Subject: [PATCH 1/2] gnu: wxwidgets: Reove configure option

* gnu/packages/wxwidgets.scm (wxwidgets): Remove
configure option that prevented webview option
from being in build and wxconfig feature list
---
 gnu/packages/wxwidgets.scm | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 0183e07c31..0a93c30f26 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -120,20 +120,12 @@ (define-public wxwidgets
                             "--with-sdl"
                             "--enable-gui"
                             "--enable-mediactrl"
-                            "--enable-webview"
-                            "--enable-webviewwebkit")
+                            "--enable-webview")
       #:make-flags
       #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
       #:tests? #f                       ;TODO
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'use-newer-webkit
-            (lambda _
-              ;; XXX: The configure script tests only for an ancient
-              ;; WebKitGTK version.
-              (substitute* "configure"
-                (("webkit2gtk-4\\.0")
-                 "webkit2gtk-4.1"))))
           (add-after 'unpack 'refer-to-inputs
             (lambda* (#:key inputs #:allow-other-keys)
               (let ((catch (search-input-file inputs "include/catch.hpp"))
-- 
2.38.1


[-- Attachment #3: 0002-gnu-wxmaxima-Update-to-22.12.0.patch --]
[-- Type: text/x-patch, Size: 1133 bytes --]

From 06886185f5206461d2af4f0cbf3373dd6fff4c4c Mon Sep 17 00:00:00 2001
From: Andy Tai <atai@atai.org>
Date: Wed, 18 Jan 2023 07:41:56 -0800
Subject: [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0

* gnu/packages/maths.scm (wxmaxima): Update to 22.12.0
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index ef747569ae..fda0a317c8 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4551,7 +4551,7 @@ (define-public maxima
 (define-public wxmaxima
   (package
     (name "wxmaxima")
-    (version "22.05.0")
+    (version "22.12.0")
     (source
      (origin
        (method git-fetch)
@@ -4560,7 +4560,7 @@ (define-public wxmaxima
              (commit (string-append "Version-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1va56v9dys97yln4m1z3fz3k90lpy8i3kvcq0v1cbg36689aghm5"))))
+        (base32 "12bjadmy2mf7d8v4iszmzckahfcwjzaba8wpbigksh4brvhb4gj5"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("gettext" ,gettext-minimal)))
-- 
2.38.1


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

* [bug#60937] [PATCH 1/2] gnu: wxwidgets: Reove configure option
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
@ 2023-01-21  4:51 ` Andy Tai
  2023-01-21  4:53 ` [bug#60937] [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-21  4:51 UTC (permalink / raw)
  To: 60937

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



[-- Attachment #2: 0001-gnu-wxwidgets-Reove-configure-option.patch --]
[-- Type: text/x-patch, Size: 1627 bytes --]

From 68d5bd7abee816ebaa03819612016550a6200338 Mon Sep 17 00:00:00 2001
From: Andy Tai <atai@atai.org>
Date: Wed, 18 Jan 2023 07:35:10 -0800
Subject: [PATCH 1/2] gnu: wxwidgets: Reove configure option

* gnu/packages/wxwidgets.scm (wxwidgets): Remove
configure option that prevented webview option
from being in build and wxconfig feature list
---
 gnu/packages/wxwidgets.scm | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 0183e07c31..0a93c30f26 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -120,20 +120,12 @@ (define-public wxwidgets
                             "--with-sdl"
                             "--enable-gui"
                             "--enable-mediactrl"
-                            "--enable-webview"
-                            "--enable-webviewwebkit")
+                            "--enable-webview")
       #:make-flags
       #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
       #:tests? #f                       ;TODO
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'use-newer-webkit
-            (lambda _
-              ;; XXX: The configure script tests only for an ancient
-              ;; WebKitGTK version.
-              (substitute* "configure"
-                (("webkit2gtk-4\\.0")
-                 "webkit2gtk-4.1"))))
           (add-after 'unpack 'refer-to-inputs
             (lambda* (#:key inputs #:allow-other-keys)
               (let ((catch (search-input-file inputs "include/catch.hpp"))
-- 
2.38.1


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

* [bug#60937] [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
  2023-01-21  4:51 ` [bug#60937] [PATCH 1/2] gnu: wxwidgets: Reove configure option Andy Tai
@ 2023-01-21  4:53 ` Andy Tai
  2023-01-28  8:56 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-21  4:53 UTC (permalink / raw)
  To: 60937

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



[-- Attachment #2: 0002-gnu-wxmaxima-Update-to-22.12.0.patch --]
[-- Type: text/x-patch, Size: 1133 bytes --]

From 06886185f5206461d2af4f0cbf3373dd6fff4c4c Mon Sep 17 00:00:00 2001
From: Andy Tai <atai@atai.org>
Date: Wed, 18 Jan 2023 07:41:56 -0800
Subject: [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0

* gnu/packages/maths.scm (wxmaxima): Update to 22.12.0
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index ef747569ae..fda0a317c8 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4551,7 +4551,7 @@ (define-public maxima
 (define-public wxmaxima
   (package
     (name "wxmaxima")
-    (version "22.05.0")
+    (version "22.12.0")
     (source
      (origin
        (method git-fetch)
@@ -4560,7 +4560,7 @@ (define-public wxmaxima
              (commit (string-append "Version-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1va56v9dys97yln4m1z3fz3k90lpy8i3kvcq0v1cbg36689aghm5"))))
+        (base32 "12bjadmy2mf7d8v4iszmzckahfcwjzaba8wpbigksh4brvhb4gj5"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("gettext" ,gettext-minimal)))
-- 
2.38.1


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

* [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
  2023-01-21  4:51 ` [bug#60937] [PATCH 1/2] gnu: wxwidgets: Reove configure option Andy Tai
  2023-01-21  4:53 ` [bug#60937] [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
@ 2023-01-28  8:56 ` Andy Tai
  2023-01-30 12:37   ` Simon Tournier
  2023-01-28  8:57 ` [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Andy Tai @ 2023-01-28  8:56 UTC (permalink / raw)
  To: 60937, 609370; +Cc: Andy Tai

* gnu/packages/wxwidgets.scm (wxwidgets): Remove
configure option that prevented webview option
from being in build and wxconfig feature list
---
 gnu/packages/wxwidgets.scm | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 0183e07c31..0a93c30f26 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -120,20 +120,12 @@ (define-public wxwidgets
                             "--with-sdl"
                             "--enable-gui"
                             "--enable-mediactrl"
-                            "--enable-webview"
-                            "--enable-webviewwebkit")
+                            "--enable-webview")
       #:make-flags
       #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
       #:tests? #f                       ;TODO
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'use-newer-webkit
-            (lambda _
-              ;; XXX: The configure script tests only for an ancient
-              ;; WebKitGTK version.
-              (substitute* "configure"
-                (("webkit2gtk-4\\.0")
-                 "webkit2gtk-4.1"))))
           (add-after 'unpack 'refer-to-inputs
             (lambda* (#:key inputs #:allow-other-keys)
               (let ((catch (search-input-file inputs "include/catch.hpp"))
-- 
2.39.1





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

* [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (2 preceding siblings ...)
  2023-01-28  8:56 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
@ 2023-01-28  8:57 ` Andy Tai
  2023-01-28  8:59 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-28  8:57 UTC (permalink / raw)
  To: 60937, 609370; +Cc: Andy Tai

* gnu/packages/maths.scm (wxmaxima): Update to 22.12.0
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index d9bc2922c5..ec9cfc1363 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4551,7 +4551,7 @@ (define-public maxima
 (define-public wxmaxima
   (package
     (name "wxmaxima")
-    (version "22.05.0")
+    (version "22.12.0")
     (source
      (origin
        (method git-fetch)
@@ -4560,7 +4560,7 @@ (define-public wxmaxima
              (commit (string-append "Version-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1va56v9dys97yln4m1z3fz3k90lpy8i3kvcq0v1cbg36689aghm5"))))
+        (base32 "12bjadmy2mf7d8v4iszmzckahfcwjzaba8wpbigksh4brvhb4gj5"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("gettext" ,gettext-minimal)))
-- 
2.39.1





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

* [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (3 preceding siblings ...)
  2023-01-28  8:57 ` [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
@ 2023-01-28  8:59 ` Andy Tai
  2023-01-28  8:59 ` [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-28  8:59 UTC (permalink / raw)
  To: 60937; +Cc: Andy Tai

* gnu/packages/wxwidgets.scm (wxwidgets): Remove
configure option that prevented webview option
from being in build and wxconfig feature list
---
 gnu/packages/wxwidgets.scm | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 0183e07c31..0a93c30f26 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -120,20 +120,12 @@ (define-public wxwidgets
                             "--with-sdl"
                             "--enable-gui"
                             "--enable-mediactrl"
-                            "--enable-webview"
-                            "--enable-webviewwebkit")
+                            "--enable-webview")
       #:make-flags
       #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
       #:tests? #f                       ;TODO
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'use-newer-webkit
-            (lambda _
-              ;; XXX: The configure script tests only for an ancient
-              ;; WebKitGTK version.
-              (substitute* "configure"
-                (("webkit2gtk-4\\.0")
-                 "webkit2gtk-4.1"))))
           (add-after 'unpack 'refer-to-inputs
             (lambda* (#:key inputs #:allow-other-keys)
               (let ((catch (search-input-file inputs "include/catch.hpp"))
-- 
2.39.1





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

* [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (4 preceding siblings ...)
  2023-01-28  8:59 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
@ 2023-01-28  8:59 ` Andy Tai
  2023-01-28 21:50 ` [bug#60937] [PATCH v3 1/2] gnu: wxwidgets: Remove configure option Andy Tai
  2023-01-28 21:50 ` [bug#60937] [PATCH v3 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-28  8:59 UTC (permalink / raw)
  To: 60937; +Cc: Andy Tai

* gnu/packages/maths.scm (wxmaxima): Update to 22.12.0
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index d9bc2922c5..ec9cfc1363 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4551,7 +4551,7 @@ (define-public maxima
 (define-public wxmaxima
   (package
     (name "wxmaxima")
-    (version "22.05.0")
+    (version "22.12.0")
     (source
      (origin
        (method git-fetch)
@@ -4560,7 +4560,7 @@ (define-public wxmaxima
              (commit (string-append "Version-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1va56v9dys97yln4m1z3fz3k90lpy8i3kvcq0v1cbg36689aghm5"))))
+        (base32 "12bjadmy2mf7d8v4iszmzckahfcwjzaba8wpbigksh4brvhb4gj5"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("gettext" ,gettext-minimal)))
-- 
2.39.1





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

* [bug#60937] [PATCH v3 1/2] gnu: wxwidgets: Remove configure option
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (5 preceding siblings ...)
  2023-01-28  8:59 ` [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
@ 2023-01-28 21:50 ` Andy Tai
  2023-01-28 21:50 ` [bug#60937] [PATCH v3 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-28 21:50 UTC (permalink / raw)
  To: 60937; +Cc: Andy Tai

* gnu/packages/wxwidgets.scm (wxwidgets): Remove
configure option that prevented webview option
from being in build and wxconfig feature list
---
 gnu/packages/wxwidgets.scm | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm
index 0183e07c31..0a93c30f26 100644
--- a/gnu/packages/wxwidgets.scm
+++ b/gnu/packages/wxwidgets.scm
@@ -120,20 +120,12 @@ (define-public wxwidgets
                             "--with-sdl"
                             "--enable-gui"
                             "--enable-mediactrl"
-                            "--enable-webview"
-                            "--enable-webviewwebkit")
+                            "--enable-webview")
       #:make-flags
       #~(list (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib"))
       #:tests? #f                       ;TODO
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'use-newer-webkit
-            (lambda _
-              ;; XXX: The configure script tests only for an ancient
-              ;; WebKitGTK version.
-              (substitute* "configure"
-                (("webkit2gtk-4\\.0")
-                 "webkit2gtk-4.1"))))
           (add-after 'unpack 'refer-to-inputs
             (lambda* (#:key inputs #:allow-other-keys)
               (let ((catch (search-input-file inputs "include/catch.hpp"))

base-commit: c6ec9c7af9814f84f293f62235eab9d0649751a7
-- 
2.39.1





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

* [bug#60937] [PATCH v3 2/2] gnu: wxmaxima: Update to 22.12.0
  2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
                   ` (6 preceding siblings ...)
  2023-01-28 21:50 ` [bug#60937] [PATCH v3 1/2] gnu: wxwidgets: Remove configure option Andy Tai
@ 2023-01-28 21:50 ` Andy Tai
  7 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-28 21:50 UTC (permalink / raw)
  To: 60937; +Cc: Andy Tai

* gnu/packages/maths.scm (wxmaxima): Update to 22.12.0
---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index d9bc2922c5..ec9cfc1363 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4551,7 +4551,7 @@ (define-public maxima
 (define-public wxmaxima
   (package
     (name "wxmaxima")
-    (version "22.05.0")
+    (version "22.12.0")
     (source
      (origin
        (method git-fetch)
@@ -4560,7 +4560,7 @@ (define-public wxmaxima
              (commit (string-append "Version-" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1va56v9dys97yln4m1z3fz3k90lpy8i3kvcq0v1cbg36689aghm5"))))
+        (base32 "12bjadmy2mf7d8v4iszmzckahfcwjzaba8wpbigksh4brvhb4gj5"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("gettext" ,gettext-minimal)))
-- 
2.39.1





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

* [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option
  2023-01-28  8:56 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
@ 2023-01-30 12:37   ` Simon Tournier
  2023-01-30 15:33     ` Andy Tai
  0 siblings, 1 reply; 11+ messages in thread
From: Simon Tournier @ 2023-01-30 12:37 UTC (permalink / raw)
  To: Andy Tai, 60937, 609370; +Cc: Andy Tai

Hi,

Typo on the commit message.

s/Reove/Remove.


Cheers,
simon




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

* [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option
  2023-01-30 12:37   ` Simon Tournier
@ 2023-01-30 15:33     ` Andy Tai
  0 siblings, 0 replies; 11+ messages in thread
From: Andy Tai @ 2023-01-30 15:33 UTC (permalink / raw)
  To: Simon Tournier; +Cc: 60937, 609370, 61130

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

fixed as Issue 61130

61130@debbugs.gnu.org

(I created a new issue so Guix QA can pick it up for testing)

On Mon, Jan 30, 2023 at 4:47 AM Simon Tournier <zimon.toutoune@gmail.com>
wrote:

> Hi,
>
> Typo on the commit message.
>
> s/Reove/Remove.
>
>
> Cheers,
> simon
>


-- 
Andy Tai, atai@atai.org, Skype: licheng.tai, Line: andy_tai, WeChat:
andytai1010
Year 2023 民國112年
自動的精神力是信仰與覺悟
自動的行為力是勞動與技能

[-- Attachment #2: Type: text/html, Size: 1563 bytes --]

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

end of thread, other threads:[~2023-01-30 15:35 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-18 15:46 [bug#60937] [PATCH] gnu: wxmaxima: Update to 22.12.0 Andy Tai
2023-01-21  4:51 ` [bug#60937] [PATCH 1/2] gnu: wxwidgets: Reove configure option Andy Tai
2023-01-21  4:53 ` [bug#60937] [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
2023-01-28  8:56 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
2023-01-30 12:37   ` Simon Tournier
2023-01-30 15:33     ` Andy Tai
2023-01-28  8:57 ` [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
2023-01-28  8:59 ` [bug#60937] [PATCH v2 1/2] gnu: wxwidgets: Reove configure option Andy Tai
2023-01-28  8:59 ` [bug#60937] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
2023-01-28 21:50 ` [bug#60937] [PATCH v3 1/2] gnu: wxwidgets: Remove configure option Andy Tai
2023-01-28 21:50 ` [bug#60937] [PATCH v3 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai

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).