all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73633] [PATCH] gnu: torbrowser: Update to 13.5.6 [security fixes].
@ 2024-10-05  3:08 André Batista
  2024-10-12  4:12 ` [bug#73633] [PATCH v2] gnu: torbrowser: Update to 13.5.7 " André Batista
  2024-10-12 15:01 ` [bug#73633] QA review for 73633 Rutherther via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: André Batista @ 2024-10-05  3:08 UTC (permalink / raw)
  To: 73633; +Cc: André Batista, ian, jonathan.brielmaier, mhw

Fixes CVEs 2024-9392, 2024-9393, 2024-9394 and 2024-9401. See the Mozilla
Foundation Security Advisory
<https://www.mozilla.org/en-US/security/advisories/mfsa2024-48/> for details.

* gnu/packages/tor-browsers.scm (%torbrowser-build-date): Update to
20240930230510.
(%torbrowser-version): Update to 13.5.6.
(%torbrowser-firefox-version): Update to 115.16.0esr-13.5-1-build2.
(torbrowser-translation-base): Update to
a142f78af87f994913faa15fb4b0f34f0ce1a22b.
(torbrowser-translation-specific): Update to
04f824bce1b6fb4b989bb9303949af17eab11406.

Change-Id: I2405c6bb61698af1e4ecd7957ae98a2fc1dc8e20
---
 gnu/packages/tor-browsers.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/tor-browsers.scm b/gnu/packages/tor-browsers.scm
index 7f601737b1..d234757e56 100644
--- a/gnu/packages/tor-browsers.scm
+++ b/gnu/packages/tor-browsers.scm
@@ -116,16 +116,16 @@ (define firefox-locales
 
 ;; We copy the official build id, which is defined at
 ;; tor-browser-build/rbm.conf (browser_release_date).
-(define %torbrowser-build-date "20240903073000")
+(define %torbrowser-build-date "20240930230510")
 
 ;; To find the last version, look at https://www.torproject.org/download/.
-(define %torbrowser-version "13.5.3")
+(define %torbrowser-version "13.5.6")
 
 ;; To find the last Firefox version, browse
 ;; https://archive.torproject.org/tor-package-archive/torbrowser/<%torbrowser-version>
 ;; There should be only one archive that starts with
 ;; "src-firefox-tor-browser-".
-(define %torbrowser-firefox-version "115.15.0esr-13.5-1-build3")
+(define %torbrowser-firefox-version "115.16.0esr-13.5-1-build2")
 
 ;; See tor-browser-build/rbm.conf for the list.
 (define %torbrowser-locales (list "ar" "ca" "cs" "da" "de" "el" "es-ES" "fa" "fi" "fr"
@@ -139,11 +139,11 @@ (define torbrowser-translation-base
     (method git-fetch)
     (uri (git-reference
           (url "https://gitlab.torproject.org/tpo/translation.git")
-          (commit "daed2afc487d1b20efc17feb153156524c6f714b")))
+          (commit "a142f78af87f994913faa15fb4b0f34f0ce1a22b")))
     (file-name "translation-base-browser")
     (sha256
      (base32
-      "0psmmgw9dnjwdhjbqkd69q5q7sdwyjcwagh93ffrjk0v7ybc79dq"))))
+      "15ahsyji6fk236sb28vqpi7ai70r3qblfypmc7r781zq7nw8f9bs"))))
 
 ;; See tor-browser-build/projects/translation/config.
 (define torbrowser-translation-specific
@@ -151,11 +151,11 @@ (define torbrowser-translation-specific
     (method git-fetch)
     (uri (git-reference
           (url "https://gitlab.torproject.org/tpo/translation.git")
-          (commit "6374e3b09c0894b8452fa1ba0b99c807722fc805")))
+          (commit "04f824bce1b6fb4b989bb9303949af17eab11406")))
     (file-name "translation-tor-browser")
     (sha256
      (base32
-      "1wd9iwcj2h70bp017pcdhgfiw2bs8zi68kljmpnk69pssd6cn8l3"))))
+      "0fgszphz5mfybs3sz853agjf14qgcc5fw50d6i17fhzh33hmvkiz"))))
 
 (define torbrowser-assets
   ;; This is a prebuilt Torbrowser from which we take the assets we need.
@@ -171,7 +171,7 @@ (define torbrowser-assets
          version "/tor-browser-linux-x86_64-" version ".tar.xz"))
        (sha256
         (base32
-         "0laz6yrm310iidddnas2w1s5wad183n9axjkgrf5cm5paj615343"))))
+         "18xqarsj4aw5q9y02mxxjlz3rh1ansk9wrqbwb2wach1dana4ikl"))))
     (arguments
      (list
       #:install-plan
@@ -213,7 +213,7 @@ (define* (make-torbrowser #:key
          ".tar.xz"))
        (sha256
         (base32
-         "13b9ni6anv279drhbb5m95nnmgslrp6frsm0y4028nfqiprs7vj5"))))
+         "1734v53739ndsi3wyqvb7l6p54npbg4jcfmzl9v3j4gv7bmfkvag"))))
     (build-system mozilla-build-system)
     (inputs
      (list go-gitlab-torproject-org-tpo-anti-censorship-pluggable-transports-lyrebird

base-commit: 73ec844389e91cb0f5a2647070516fc8d19d8730
-- 
2.45.2





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

* [bug#73633] [PATCH v2] gnu: torbrowser: Update to 13.5.7 [security fixes].
  2024-10-05  3:08 [bug#73633] [PATCH] gnu: torbrowser: Update to 13.5.6 [security fixes] André Batista
@ 2024-10-12  4:12 ` André Batista
  2024-10-12 17:12   ` bug#73633: " Ludovic Courtès
  2024-10-12 15:01 ` [bug#73633] QA review for 73633 Rutherther via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: André Batista @ 2024-10-12  4:12 UTC (permalink / raw)
  To: 73633; +Cc: André Batista, ian, jonathan.brielmaier, mhw

Fixes CVEs 2024-9392, 2024-9393, 2024-9394, 2024-9401 and 2024-9680.
See the Mozilla Foundation Security Advisories
<https://www.mozilla.org/en-US/security/advisories/mfsa2024-48/> and
<https://www.mozilla.org/en-US/security/advisories/mfsa2024-51/>
for details.

* gnu/packages/tor-browsers.scm (%torbrowser-build-date): Update to
20241008182800.
(%torbrowser-version): Update to 13.5.7.
(%torbrowser-firefox-version): Update to 115.16.0esr-13.5-1-build3.
(torbrowser-translation-base): Update to
ceb66dd0937da14962cb535699242b2526e11f02.
(torbrowser-translation-specific): Update to
dbf1454fdbd3256d65985cc1c46391ce0ec159e7.
(make-torbrowser) [arguments] <#:phases>: On 'copy-basebrowser-locales
stop copying 'cryptoSafetyPrompt.properties'. See
<https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/cf68476c67f6c5159dab3d7c241392c597fd3988>.

Change-Id: Ic17a669c1311d92da347e11ea08acc7a218bc728
---
 gnu/packages/tor-browsers.scm | 25 +++++++++----------------
 1 file changed, 9 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/tor-browsers.scm b/gnu/packages/tor-browsers.scm
index 6bc1ef5328..e517f9b214 100644
--- a/gnu/packages/tor-browsers.scm
+++ b/gnu/packages/tor-browsers.scm
@@ -116,16 +116,16 @@ (define firefox-locales
 
 ;; We copy the official build id, which is defined at
 ;; tor-browser-build/rbm.conf (browser_release_date).
-(define %torbrowser-build-date "20240903073000")
+(define %torbrowser-build-date "20241008182800")
 
 ;; To find the last version, look at https://www.torproject.org/download/.
-(define %torbrowser-version "13.5.3")
+(define %torbrowser-version "13.5.7")
 
 ;; To find the last Firefox version, browse
 ;; https://archive.torproject.org/tor-package-archive/torbrowser/<%torbrowser-version>
 ;; There should be only one archive that starts with
 ;; "src-firefox-tor-browser-".
-(define %torbrowser-firefox-version "115.15.0esr-13.5-1-build3")
+(define %torbrowser-firefox-version "115.16.0esr-13.5-1-build3")
 
 ;; See tor-browser-build/rbm.conf for the list.
 (define %torbrowser-locales (list "ar" "ca" "cs" "da" "de" "el" "es-ES" "fa" "fi" "fr"
@@ -139,11 +139,11 @@ (define torbrowser-translation-base
     (method git-fetch)
     (uri (git-reference
           (url "https://gitlab.torproject.org/tpo/translation.git")
-          (commit "daed2afc487d1b20efc17feb153156524c6f714b")))
+          (commit "ceb66dd0937da14962cb535699242b2526e11f02")))
     (file-name "translation-base-browser")
     (sha256
      (base32
-      "0psmmgw9dnjwdhjbqkd69q5q7sdwyjcwagh93ffrjk0v7ybc79dq"))))
+      "04ciw4rnl0cj7vz4pqbs1aca8fhva346bp0vahfcxv3isn1nwyy4"))))
 
 ;; See tor-browser-build/projects/translation/config.
 (define torbrowser-translation-specific
@@ -151,11 +151,11 @@ (define torbrowser-translation-specific
     (method git-fetch)
     (uri (git-reference
           (url "https://gitlab.torproject.org/tpo/translation.git")
-          (commit "6374e3b09c0894b8452fa1ba0b99c807722fc805")))
+          (commit "dbf1454fdbd3256d65985cc1c46391ce0ec159e7")))
     (file-name "translation-tor-browser")
     (sha256
      (base32
-      "1wd9iwcj2h70bp017pcdhgfiw2bs8zi68kljmpnk69pssd6cn8l3"))))
+      "09zhl6fk0z69qy82l050fm02h0dyb3f8j38fbazmkwnd8x3z6jv0"))))
 
 (define torbrowser-assets
   ;; This is a prebuilt Torbrowser from which we take the assets we need.
@@ -171,7 +171,7 @@ (define torbrowser-assets
          version "/tor-browser-linux-x86_64-" version ".tar.xz"))
        (sha256
         (base32
-         "0laz6yrm310iidddnas2w1s5wad183n9axjkgrf5cm5paj615343"))))
+         "1mdi6x0dvdvlk957fws1pw55z9hwkd5x05rv8k2g1vzy9qkvgrf3"))))
     (arguments
      (list
       #:install-plan
@@ -213,7 +213,7 @@ (define* (make-torbrowser #:key
          ".tar.xz"))
        (sha256
         (base32
-         "13b9ni6anv279drhbb5m95nnmgslrp6frsm0y4028nfqiprs7vj5"))))
+         "0v4hkxcz7cahbhwwafmspcl67ih2rnkmamcvp06kyx64xvpad00i"))))
     (build-system mozilla-build-system)
     (inputs
      (list go-gitlab-torproject-org-tpo-anti-censorship-pluggable-transports-lyrebird
@@ -580,13 +580,6 @@ (define (runpaths-of-input label)
                            "translation-tor-browser/~a/tor-browser.ftl"
                            "~a/~a/toolkit/toolkit/global/"))
                      lang l10ncentral lang))
-                   (system
-                    (format
-                     #f (string-join
-                         '("mv"
-                           "translation-tor-browser/~a/cryptoSafetyPrompt.properties"
-                           "~a/~a/browser/chrome/browser/"))
-                     lang l10ncentral lang))
                    (system
                     (format
                      #f (string-join

base-commit: b8fd792ea267cb920da0651074a533d8abf00488
-- 
2.45.2





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

* [bug#73633] QA review for 73633
  2024-10-05  3:08 [bug#73633] [PATCH] gnu: torbrowser: Update to 13.5.6 [security fixes] André Batista
  2024-10-12  4:12 ` [bug#73633] [PATCH v2] gnu: torbrowser: Update to 13.5.7 " André Batista
@ 2024-10-12 15:01 ` Rutherther via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Rutherther via Guix-patches via @ 2024-10-12 15:01 UTC (permalink / raw)
  To: control, 73633; +Cc: André Batista

user guix
usertag 73633 + reviewed-looks-good
thanks

Hi André, thanks for the patch. I've tried it,
it seems fine, Torbrowser builds and works as expected
on x86_64.

Regards,
Rutherther




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

* bug#73633: [PATCH v2] gnu: torbrowser: Update to 13.5.7 [security fixes].
  2024-10-12  4:12 ` [bug#73633] [PATCH v2] gnu: torbrowser: Update to 13.5.7 " André Batista
@ 2024-10-12 17:12   ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2024-10-12 17:12 UTC (permalink / raw)
  To: André Batista; +Cc: mhw, 73633-done, jonathan.brielmaier, ian

Hi,

André Batista <nandre@riseup.net> skribis:

> Fixes CVEs 2024-9392, 2024-9393, 2024-9394, 2024-9401 and 2024-9680.
> See the Mozilla Foundation Security Advisories
> <https://www.mozilla.org/en-US/security/advisories/mfsa2024-48/> and
> <https://www.mozilla.org/en-US/security/advisories/mfsa2024-51/>
> for details.
>
> * gnu/packages/tor-browsers.scm (%torbrowser-build-date): Update to
> 20241008182800.
> (%torbrowser-version): Update to 13.5.7.
> (%torbrowser-firefox-version): Update to 115.16.0esr-13.5-1-build3.
> (torbrowser-translation-base): Update to
> ceb66dd0937da14962cb535699242b2526e11f02.
> (torbrowser-translation-specific): Update to
> dbf1454fdbd3256d65985cc1c46391ce0ec159e7.
> (make-torbrowser) [arguments] <#:phases>: On 'copy-basebrowser-locales
> stop copying 'cryptoSafetyPrompt.properties'. See
> <https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/cf68476c67f6c5159dab3d7c241392c597fd3988>.
>
> Change-Id: Ic17a669c1311d92da347e11ea08acc7a218bc728

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2024-10-12 17:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-05  3:08 [bug#73633] [PATCH] gnu: torbrowser: Update to 13.5.6 [security fixes] André Batista
2024-10-12  4:12 ` [bug#73633] [PATCH v2] gnu: torbrowser: Update to 13.5.7 " André Batista
2024-10-12 17:12   ` bug#73633: " Ludovic Courtès
2024-10-12 15:01 ` [bug#73633] QA review for 73633 Rutherther via Guix-patches via

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.