mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: ungoogled-chromium: Update to 109.0.5414.119-1.
* gnu/packages/chromium.scm (%chromium-version): Set to 109.0.5414.119. (%ungoogled-origin): Update hash. (ungoogled-chromium)[source]: Likewise. [arguments]: Use delete-file-recursively instead of rmdir for compatibility with downstream versions. Remove unused binding.
This commit is contained in:
parent
0e480ca7b6
commit
c6ec9c7af9
1 changed files with 5 additions and 7 deletions
|
@ -316,7 +316,7 @@ (define %blacklisted-files
|
|||
;; run the Blink performance tests, just remove everything to save ~70MiB.
|
||||
'("third_party/blink/perf_tests"))
|
||||
|
||||
(define %chromium-version "109.0.5414.74")
|
||||
(define %chromium-version "109.0.5414.119")
|
||||
(define %ungoogled-revision (string-append %chromium-version "-1"))
|
||||
(define %debian-revision "debian/102.0.5005.61-1")
|
||||
(define %arch-revision "a0b214b3bdfbc7ee3d9004a70494a2b9e3da2c80")
|
||||
|
@ -329,7 +329,7 @@ (define %ungoogled-origin
|
|||
(file-name (git-file-name "ungoogled-chromium" %ungoogled-revision))
|
||||
(sha256
|
||||
(base32
|
||||
"0l07f9221g7q9rmi3drlia40m7dsac26smgh7nnyhfncahzjsc2y"))))
|
||||
"1nb0099gwkhxv3zc184jyvpl5jrrq194pv6yq95nbc27vw6zz7qv"))))
|
||||
|
||||
(define %debian-origin
|
||||
(origin
|
||||
|
@ -492,7 +492,7 @@ (define-public ungoogled-chromium
|
|||
%chromium-version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0pcfaj3n3rjk4va9g0ajlsv1719kdhqcnjdd4piinqxb4qy27vgd"))
|
||||
"0bdyb14v12izxkldq27jx532p0bid3wdwfpd1mwm7jqswxgfzkfb"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet (force ungoogled-chromium-snippet))))
|
||||
(build-system gnu-build-system)
|
||||
|
@ -671,7 +671,7 @@ (define-public ungoogled-chromium
|
|||
;; The unbundling script leaves behind an empty pyyaml directory
|
||||
;; which prevents the code that tries to use it from falling
|
||||
;; back to the pyyaml provided by Guix.
|
||||
(rmdir "third_party/pyyaml")
|
||||
(delete-file-recursively "third_party/pyyaml")
|
||||
|
||||
(substitute*
|
||||
"third_party/breakpad/breakpad/src/common/linux/libcurl_wrapper.h"
|
||||
|
@ -750,9 +750,7 @@ (define-public ungoogled-chromium
|
|||
(string-append mesa-lib "/libGLESv2.so.2"))))))
|
||||
(add-before 'configure 'prepare-build-environment
|
||||
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
||||
(let ((c++ (search-input-directory (or native-inputs inputs)
|
||||
"include/c++"))
|
||||
(node (search-input-file (or native-inputs inputs)
|
||||
(let ((node (search-input-file (or native-inputs inputs)
|
||||
"/bin/node")))
|
||||
;; Define the GN toolchain.
|
||||
(setenv "AR" "llvm-ar") (setenv "NM" "llvm-nm")
|
||||
|
|
Loading…
Reference in a new issue