GNU bug report logs - #77919
[PATCH] gnu: swig-next: Update to 4.3.1.

Previous Next

Package: guix-patches;

Reported by: Andy Tai <atai <at> atai.org>

Date: Sat, 19 Apr 2025 08:50:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

To reply to this bug, email your comments to 77919 AT debbugs.gnu.org.
There is no need to reopen the bug first.

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#77919; Package guix-patches. (Sat, 19 Apr 2025 08:50:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Andy Tai <atai <at> atai.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 19 Apr 2025 08:50:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: guix-patches <at> gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: swig-next: Update to 4.3.1.
Date: Sat, 19 Apr 2025 01:48:58 -0700
* gnu/packages/swig.scm (swig-next): Update to 4.3.1.

Change-Id: I2d9b7d8a00a19e3e294f438299a2d7ea5672d563
---
 gnu/packages/swig.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
index d852f40f51..7743fcf8e5 100644
--- a/gnu/packages/swig.scm
+++ b/gnu/packages/swig.scm
@@ -79,7 +79,7 @@ (define-public swig-next
   (package
     (inherit swig)
     (name "swig")
-    (version "4.3.0")
+    (version "4.3.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://sourceforge/" name "/" name "/"
@@ -87,5 +87,5 @@ (define-public swig-next
                                  name "-" version ".tar.gz"))
               (sha256
                (base32
-                "17ma0iwan81hnmd1wqx9g8dx7l6b6ri8218cqy3gj6pnjvvkw87p"))))
+                "1f31xjxymq0nwlis0jn2xjcnd29qmfn6jk9bb9ipvqgif2gq5z24"))))
     (inputs (list pcre2))))

base-commit: b862ec2176fbfe609b16b801e3c91907ea232577
-- 
2.43.0





Information forwarded to guix-patches <at> gnu.org:
bug#77919; Package guix-patches. (Sat, 19 Apr 2025 09:18:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: 77919 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v2] gnu: swig-next: Update to 4.3.1.
Date: Sat, 19 Apr 2025 02:17:18 -0700
* gnu/packages/swig.scm (swig-next): Update to 4.3.1.
[native-inputs]: Add pcre2.

Change-Id: I2d9b7d8a00a19e3e294f438299a2d7ea5672d563
---
 gnu/packages/swig.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
index d852f40f51..f02c14b86a 100644
--- a/gnu/packages/swig.scm
+++ b/gnu/packages/swig.scm
@@ -79,7 +79,7 @@ (define-public swig-next
   (package
     (inherit swig)
     (name "swig")
-    (version "4.3.0")
+    (version "4.3.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://sourceforge/" name "/" name "/"
@@ -87,5 +87,11 @@ (define-public swig-next
                                  name "-" version ".tar.gz"))
               (sha256
                (base32
-                "17ma0iwan81hnmd1wqx9g8dx7l6b6ri8218cqy3gj6pnjvvkw87p"))))
+                "1f31xjxymq0nwlis0jn2xjcnd29qmfn6jk9bb9ipvqgif2gq5z24"))))
+    (native-inputs (list boost
+                         pcre2 ; for pcre2-config
+                         ;; The following are for tests and examples:
+                         guile-3.0
+                         perl))
+                     ;;("python" ,python-wrapper)
     (inputs (list pcre2))))

base-commit: b862ec2176fbfe609b16b801e3c91907ea232577
-- 
2.43.0





Information forwarded to guix-patches <at> gnu.org:
bug#77919; Package guix-patches. (Mon, 28 Apr 2025 07:12:02 GMT) Full text and rfc822 format available.

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

From: Christopher Baines <mail <at> cbaines.net>
To: Andy Tai <atai <at> atai.org>
Cc: 77919 <at> debbugs.gnu.org
Subject: Re: [bug#77919] [PATCH v2] gnu: swig-next: Update to 4.3.1.
Date: Mon, 28 Apr 2025 08:11:32 +0100
[Message part 1 (text/plain, inline)]
Andy Tai <atai <at> atai.org> writes:

> * gnu/packages/swig.scm (swig-next): Update to 4.3.1.
> [native-inputs]: Add pcre2.
>
> Change-Id: I2d9b7d8a00a19e3e294f438299a2d7ea5672d563
> ---
>  gnu/packages/swig.scm | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
> index d852f40f51..f02c14b86a 100644
> --- a/gnu/packages/swig.scm
> +++ b/gnu/packages/swig.scm
> @@ -79,7 +79,7 @@ (define-public swig-next
>    (package
>      (inherit swig)
>      (name "swig")
> -    (version "4.3.0")
> +    (version "4.3.1")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "mirror://sourceforge/" name "/" name "/"
> @@ -87,5 +87,11 @@ (define-public swig-next
>                                   name "-" version ".tar.gz"))
>                (sha256
>                 (base32
> -                "17ma0iwan81hnmd1wqx9g8dx7l6b6ri8218cqy3gj6pnjvvkw87p"))))
> +                "1f31xjxymq0nwlis0jn2xjcnd29qmfn6jk9bb9ipvqgif2gq5z24"))))
> +    (native-inputs (list boost
> +                         pcre2 ; for pcre2-config
> +                         ;; The following are for tests and examples:
> +                         guile-3.0
> +                         perl))
> +                     ;;("python" ,python-wrapper)

The commit message doesn't line up with the changes here, plus the new
("python" ,python-wrapper) bit is commented out, which doesn't make much
sense?

Thanks,

Chris
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#77919; Package guix-patches. (Fri, 06 Jun 2025 05:15:02 GMT) Full text and rfc822 format available.

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

From: Andy Tai <atai <at> atai.org>
To: 77919 <at> debbugs.gnu.org,
	mail <at> cbaines.net
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v3] gnu: swig-next: Update to 4.3.1.
Date: Thu,  5 Jun 2025 22:14:28 -0700
* gnu/packages/swig.scm (swig-next): Update to 4.3.1.
[native-inputs]: Add pcre2, boost, guile-3 and perl.

Change-Id: I2d9b7d8a00a19e3e294f438299a2d7ea5672d563
---
 gnu/packages/swig.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
index d852f40f51..856d760034 100644
--- a/gnu/packages/swig.scm
+++ b/gnu/packages/swig.scm
@@ -79,7 +79,7 @@ (define-public swig-next
   (package
     (inherit swig)
     (name "swig")
-    (version "4.3.0")
+    (version "4.3.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://sourceforge/" name "/" name "/"
@@ -87,5 +87,10 @@ (define-public swig-next
                                  name "-" version ".tar.gz"))
               (sha256
                (base32
-                "17ma0iwan81hnmd1wqx9g8dx7l6b6ri8218cqy3gj6pnjvvkw87p"))))
+                "1f31xjxymq0nwlis0jn2xjcnd29qmfn6jk9bb9ipvqgif2gq5z24"))))
+    (native-inputs (list boost
+                         pcre2 ; for pcre2-config
+                         ;; The following are for tests and examples:
+                         guile-3.0
+                         perl))
     (inputs (list pcre2))))

base-commit: 027a47787f8dcf6651a1c20c5b475376defe6d6b
-- 
2.43.0





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 09 Jun 2025 20:08:04 GMT) Full text and rfc822 format available.

Notification sent to Andy Tai <atai <at> atai.org>:
bug acknowledged by developer. (Mon, 09 Jun 2025 20:08:04 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Andy Tai <atai <at> atai.org>
Cc: 77919-done <at> debbugs.gnu.org, mail <at> cbaines.net
Subject: Re: bug#77919: [PATCH] gnu: swig-next: Update to 4.3.1.
Date: Mon, 09 Jun 2025 19:33:26 +0200
Andy Tai <atai <at> atai.org> writes:

> * gnu/packages/swig.scm (swig-next): Update to 4.3.1.
> [native-inputs]: Add pcre2, boost, guile-3 and perl.
>
> Change-Id: I2d9b7d8a00a19e3e294f438299a2d7ea5672d563

Applied, thanks!




This bug report was last modified 6 days ago.

Previous Next


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