Package Details: ungoogled-chromium-bin 125.0.6422.112-1

Git Clone URL: https://aur.archlinux.org/ungoogled-chromium-bin.git (read-only, click to copy)
Package Base: ungoogled-chromium-bin
Description: A lightweight approach to removing Google web service dependency
Upstream URL: https://github.com/ungoogled-software/ungoogled-chromium
Keywords: blink browser privacy web
Licenses: BSD
Conflicts: chromedriver, chromium
Provides: chromedriver, chromium
Submitter: networkException
Maintainer: networkException
Last Packager: networkException
Votes: 73
Popularity: 3.76
First Submitted: 2022-08-27 13:16 (UTC)
Last Updated: 2024-05-25 16:51 (UTC)

Required by (118)

Sources (1)

Pinned Comments

networkException commented on 2022-09-20 17:36 (UTC)

Please note that normally it's not required to flag this package as out of date. I usually tag releases in the main ungoogled-chromium repository and update the arch packaging right afterwards.

If the package hasn't updated after an ungoogled-chromium release GitHub Actions might still be building or the ungoogled-chromium patchset got updated for non Linux platforms only to match their upstream release cycle

Latest Comments

1 2 3 4 5 6 .. 9 Next › Last »

MartinVonReich commented on 2024-05-30 17:29 (UTC)

For anybody interested in Google Chrome/Chromium (Stable, Beta, Dev) releases, you can check this website out:

https://chromiumdash.appspot.com/releases?platform=Linux

There is everything . . .

kgw commented on 2024-05-26 22:26 (UTC)

I must admit I am unable to get the latest build to start. I have tried several of the fixes to no avail...I am reduced to using Firefox! ;~)

tomacrisan commented on 2024-05-20 22:52 (UTC)

In other words, the PKGBUILD file, line 28, should be: source=(https://github.com/ungoogled-software/ungoogled-chromium-archlinux/releases/download/$pkgver/ungoogled-chromium-$pkgver-$pkgrel-x86_64.pkg.tar.zst)

DarioTD commented on 2024-05-20 20:14 (UTC)

@pavard the maintainer forgot to append the pkgrel "-1" in 125.0.6422.60 tag This is the correct url

pavard commented on 2024-05-20 19:18 (UTC)

curl: (22) The requested URL returned error: 404
==> ОШИБКА: Ошибка при загрузке 'https://github.com/ungoogled-software/ungoogled-chromium-archlinux/releases/download/125.0.6422.60-1/ungoogled-chromium-125.0.6422.60-1-x86_64.pkg.tar.zst'
    Прерывание...

cyberpunkrocker commented on 2024-05-20 17:08 (UTC)

@Duter2016 The original Arch package is here https://archive.archlinux.org/packages/i/icu/icu-74.2-2-x86_64.pkg.tar.zst But I suppose a Fedora library works, too :)

Duter2016 commented on 2024-05-20 16:50 (UTC)

download icu-74.2-2 from: https://mirror.ghproxy.com/https://github.com/unicode-org/icu/releases/download/release-74-2/icu4c-74_2-Fedora_Linux36-x64.tgz

then use cyberpunkrocker's method.

success

cyberpunkrocker commented on 2024-05-20 11:34 (UTC) (edited on 2024-05-20 11:36 (UTC) by cyberpunkrocker)

Or, you could just get the icu-74.2-2 Arch package from the archive, extract it and

cd /icu-74*/usr/lib/
LD_PRELOAD=./libicui18n.so.74:./libicuuc.so.74:./libicudata.so.74 /usr/bin/chromium

No need to install or downgrade anything.

magnus commented on 2024-05-20 07:48 (UTC)

I followed @Gozenka's suggestion, though I started from libicu53 here on AUR and made the following changes:

diff --git a/PKGBUILD b/PKGBUILD
index 88dd4b9..d3fd08a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,17 @@
 # Maintainer: William Tang <galaxyking0419@gmail.com>

-pkgname=libicu53
-pkgver=53.2
+pkgname=libicu74
+pkgver=74.1
 pkgrel=2
 pkgdesc='International Components for Unicode library (version 53)'
 arch=('x86_64')
 url='https://icu.unicode.org'
 license=('custom:icu')
 depends=('gcc-libs')
-provides=(libicu{data,i18n,io,test,tu,uc}.so.53)
+provides=(libicu{data,i18n,io,test,tu,uc}.so.74)

 source=("https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz")
-sha512sums=('fa3a7c9e388d263d548a02a1e4a63358c24883b4b6d7b29715fb333b96ba193d6c1fef363dafb96097565cf4baf3c1e3be3da5ed1647edf30757a4a65286970b')
+sha256sums=('86ce8e60681972e60e4dcb2490c697463fcec60dd400a5f9bffba26d0b52b8d0')

 build() {
    cd icu/source

Just in case someone else is unable to wait for a fix from the maintainer :D

pavard commented on 2024-05-19 20:39 (UTC)

in my memory, this is not the first problem caused by updating the icu version. maybe it's worth linking to it statically?