all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67294] [PATCH] gnu: opus: Update to 1.4.
@ 2023-11-20 14:49 Antoine Côté
  2023-11-26 13:46 ` Mathieu Othacehe
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Antoine Côté @ 2023-11-20 14:49 UTC (permalink / raw)
  To: 67294; +Cc: Antoine Côté

* gnu/packages/xiph.scm (opus): Update to 1.4.

Change-Id: Ib1a6408c43a2915201d0caae0df31c0a337f7aea
---
 gnu/packages/xiph.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index b47c718fb6..4cd2359719 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
 ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2023 Antoine Côté <antoine.cote@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -327,14 +328,14 @@ (define-public vorbis-tools
 (define-public opus
   (package
     (name "opus")
-    (version "1.3.1")
+    (version "1.4")
     (source (origin
               (method url-fetch)
-              (uri (string-append "https://archive.mozilla.org/pub/opus/opus-"
+              (uri (string-append "https://downloads.xiph.org/releases/opus/opus-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5"))))
+                "07y5977a7qsqxz72m85pa4lhypsbp43flvpi3wyycnmyad12pcy9"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--disable-static")))

base-commit: 761810d32a0550912b5bb36a0c9f60141bcb7d20
-- 
2.41.0





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

* [bug#67294] [PATCH] gnu: opus: Update to 1.4.
  2023-11-20 14:49 [bug#67294] [PATCH] gnu: opus: Update to 1.4 Antoine Côté
@ 2023-11-26 13:46 ` Mathieu Othacehe
  2024-01-30 17:56 ` [bug#67294] [PATCH v2] " Greg Hogan
  2024-03-12 18:27 ` [bug#67294] [PATCH v3 0/2] Update opus Greg Hogan
  2 siblings, 0 replies; 6+ messages in thread
From: Mathieu Othacehe @ 2023-11-26 13:46 UTC (permalink / raw)
  To: Antoine Côté; +Cc: 67294


Hello,

>                (method url-fetch)
> -              (uri (string-append "https://archive.mozilla.org/pub/opus/opus-"
> +              (uri (string-append "https://downloads.xiph.org/releases/opus/opus-"
>                                    version ".tar.gz"))

Why is the URL updated? It needs to be mentioned in the commit message.

Thanks,

Mathieu




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

* [bug#67294] [PATCH v2] gnu: opus: Update to 1.4.
  2023-11-20 14:49 [bug#67294] [PATCH] gnu: opus: Update to 1.4 Antoine Côté
  2023-11-26 13:46 ` Mathieu Othacehe
@ 2024-01-30 17:56 ` Greg Hogan
  2024-03-12 18:27 ` [bug#67294] [PATCH v3 0/2] Update opus Greg Hogan
  2 siblings, 0 replies; 6+ messages in thread
From: Greg Hogan @ 2024-01-30 17:56 UTC (permalink / raw)
  To: 67294; +Cc: Antoine Côté

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1729 bytes --]

From: Antoine Côté <antoine.cote@posteo.net>

Am submitting Antoine's patch with an updated commit message per the
review on 2023/11/26.

This package has ~2749 dependent packages.

The mozilla archive is no longer actively mirroring the source for opus.

* gnu/packages/xiph.scm (opus): Update to 1.4.
[source]: Update origin URI.

Change-Id: Id94adf022e8a4fc14d54d9146111e53ccc9a81b4
---
 gnu/packages/xiph.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 480589292d..75cee3345c 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
 ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2023 Antoine Côté <antoine.cote@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -327,14 +328,14 @@ (define-public vorbis-tools
 (define-public opus
   (package
     (name "opus")
-    (version "1.3.1")
+    (version "1.4")
     (source (origin
               (method url-fetch)
-              (uri (string-append "https://archive.mozilla.org/pub/opus/opus-"
+              (uri (string-append "https://downloads.xiph.org/releases/opus/opus-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5"))))
+                "07y5977a7qsqxz72m85pa4lhypsbp43flvpi3wyycnmyad12pcy9"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--disable-static")))

base-commit: c60afaf731e01a02fccccedfe6cc79ec197c5a8d
-- 
2.43.0





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

* [bug#67294] [PATCH v3 0/2] Update opus.
  2023-11-20 14:49 [bug#67294] [PATCH] gnu: opus: Update to 1.4 Antoine Côté
  2023-11-26 13:46 ` Mathieu Othacehe
  2024-01-30 17:56 ` [bug#67294] [PATCH v2] " Greg Hogan
@ 2024-03-12 18:27 ` Greg Hogan
  2024-03-12 18:27   ` [bug#67294] [PATCH v3 1/2] gnu: opus: Update to 1.4 Greg Hogan
  2024-03-12 18:27   ` [bug#67294] [PATCH v3 2/2] gnu: opus: Update to 1.5.1 Greg Hogan
  2 siblings, 2 replies; 6+ messages in thread
From: Greg Hogan @ 2024-03-12 18:27 UTC (permalink / raw)
  To: 67294; +Cc: Greg Hogan

Am submitting Antoine's patch with an updated commit message per the
review on 2023/11/26.

Also updates opus to version 1.5.1

Antoine Côté (1):
  gnu: opus: Update to 1.4.

Greg Hogan (1):
  gnu: opus: Update to 1.5.1.

 gnu/packages/xiph.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)


base-commit: 447e9c96259e8fa15a828de9b2dd3400e2ffafe6
-- 
2.44.0





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

* [bug#67294] [PATCH v3 1/2] gnu: opus: Update to 1.4.
  2024-03-12 18:27 ` [bug#67294] [PATCH v3 0/2] Update opus Greg Hogan
@ 2024-03-12 18:27   ` Greg Hogan
  2024-03-12 18:27   ` [bug#67294] [PATCH v3 2/2] gnu: opus: Update to 1.5.1 Greg Hogan
  1 sibling, 0 replies; 6+ messages in thread
From: Greg Hogan @ 2024-03-12 18:27 UTC (permalink / raw)
  To: 67294; +Cc: Antoine Côté

From: Antoine Côté <antoine.cote@posteo.net>

This update has ~2749 dependent packages.

The mozilla archive is no longer actively mirroring the source for this
package.

* gnu/packages/xiph.scm (opus): Update to 1.4.
[source]: Update origin URI.

Change-Id: Id94adf022e8a4fc14d54d9146111e53ccc9a81b4
---
 gnu/packages/xiph.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 9019029f24..d98cddbf4a 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -14,6 +14,7 @@
 ;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2023 Antoine Côté <antoine.cote@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -351,14 +352,14 @@ (define-public vorbis-tools
 (define-public opus
   (package
     (name "opus")
-    (version "1.3.1")
+    (version "1.4")
     (source (origin
               (method url-fetch)
-              (uri (string-append "https://archive.mozilla.org/pub/opus/opus-"
+              (uri (string-append "https://downloads.xiph.org/releases/opus/opus-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "17gz8kxs4i7icsc1gj713gadiapyklynlwqlf0ai98dj4lg8xdb5"))))
+                "07y5977a7qsqxz72m85pa4lhypsbp43flvpi3wyycnmyad12pcy9"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--disable-static")))
-- 
2.44.0





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

* [bug#67294] [PATCH v3 2/2] gnu: opus: Update to 1.5.1.
  2024-03-12 18:27 ` [bug#67294] [PATCH v3 0/2] Update opus Greg Hogan
  2024-03-12 18:27   ` [bug#67294] [PATCH v3 1/2] gnu: opus: Update to 1.4 Greg Hogan
@ 2024-03-12 18:27   ` Greg Hogan
  1 sibling, 0 replies; 6+ messages in thread
From: Greg Hogan @ 2024-03-12 18:27 UTC (permalink / raw)
  To: 67294; +Cc: Greg Hogan

* gnu/packages/xiph.scm (opus): Update to 1.5.1.

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

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index d98cddbf4a..58dfd1eeb2 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -352,14 +352,14 @@ (define-public vorbis-tools
 (define-public opus
   (package
     (name "opus")
-    (version "1.4")
+    (version "1.5.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://downloads.xiph.org/releases/opus/opus-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "07y5977a7qsqxz72m85pa4lhypsbp43flvpi3wyycnmyad12pcy9"))))
+                "118g6hz58i6qk28d32b3gh4k4dqabrb24am139hpnhcdkfai0imq"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--disable-static")))
-- 
2.44.0





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

end of thread, other threads:[~2024-03-12 18:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-20 14:49 [bug#67294] [PATCH] gnu: opus: Update to 1.4 Antoine Côté
2023-11-26 13:46 ` Mathieu Othacehe
2024-01-30 17:56 ` [bug#67294] [PATCH v2] " Greg Hogan
2024-03-12 18:27 ` [bug#67294] [PATCH v3 0/2] Update opus Greg Hogan
2024-03-12 18:27   ` [bug#67294] [PATCH v3 1/2] gnu: opus: Update to 1.4 Greg Hogan
2024-03-12 18:27   ` [bug#67294] [PATCH v3 2/2] gnu: opus: Update to 1.5.1 Greg Hogan

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.