Package Details: ungoogled-chromium 129.0.6668.58-1

Git Clone URL: https://aur.archlinux.org/ungoogled-chromium.git (read-only, click to copy)
Package Base: ungoogled-chromium
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-3-Clause
Conflicts: chromedriver, chromium
Provides: chromedriver, chromium
Submitter: ilikenwf
Maintainer: JstKddng (networkException)
Last Packager: networkException
Votes: 349
Popularity: 1.50
First Submitted: 2016-12-19 08:08 (UTC)
Last Updated: 2024-09-22 18:34 (UTC)

Dependencies (49)

Required by (131)

Sources (14)

Pinned Comments

JstKddng commented on 2022-05-06 14:37 (UTC) (edited on 2022-06-27 13:48 (UTC) by JstKddng)

A new va-api patch for wayland has been added. Required flags for it to work are the following, thanks to @acidunit

--disable-features=UseChromeOSDirectVideoDecoder
--enable-hardware-overlays

JstKddng commented on 2020-07-19 06:34 (UTC)

You can get prebuilt binaries here:

https://github.com/ungoogled-software/ungoogled-chromium-archlinux#binary-downloads

seppia commented on 2018-12-12 21:34 (UTC)

Please do NOT flag this package as out of date in relation to official chromium releases.

This is NOT Google Chromium and new releases come after additional work of the ungoogled-chromium contributors, so they may not be ready, nor available for days or even weeks after a new version of official chromium is released.

Please refer to https://github.com/Eloston/ungoogled-chromium/tags for ungoogled-chromium releases. Use those and please flag this package as out of date only if a newer release is present there. I will update the PKGBUILD as soon as I can every time a new release comes out.

Thanks

Latest Comments

« First ‹ Previous 1 .. 37 38 39 40 41 42 43 44 45 46 47 .. 66 Next › Last »

NullRoute commented on 2020-02-24 10:21 (UTC) (edited on 2020-02-24 12:47 (UTC) by NullRoute)

I can now confirm that patch provided by "Megumi_fox" works and I was able to compile latest version using latest "glibc" libraries.

@Megumi_fox, Thank you for the patch!


Workaround for those who still want to use old version 79, can downgrade there glibc and lib32-glibc to version 2.30. This works too, I confirmed it yesterday.


Maintainer of the package please update PKGBUILD with "Megumi_fox" patch. (I flagged the package)


@IEPforAUR, You should learn how to read manual/wiki.

missingSleepDeps commented on 2020-02-24 07:40 (UTC)

so screen pamac --rebuild ungoogled-chromium?

NullRoute commented on 2020-02-23 21:20 (UTC) (edited on 2020-02-23 21:37 (UTC) by NullRoute)

Tried compiling this newest version and always get same error at the end.


[37483/37483] LINK ./chrome FAILED: chrome ld.lld: error: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/9.2.1/../../../../lib64/libopenjp2.so: undefined reference to __exp_finite ld.lld: error: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/9.2.1/../../../../lib64/libopenjp2.so: undefined reference to __exp2_finite clang-9: error: linker command failed with exit code 1 (use -v to see invocation) ninja: build stopped: subcommand failed. ==> ERROR: A failure occurred in build(). Aborting...


I will try one more time with patch provided by "Megumi_fox" and report back.


@archieslove, Just run command;

patch PKGBUILD fixme.patch

(copy/paste patch text to fixme.patch)


@IEPforAUR, use "screen" to build your packages.

https://linux.die.net/man/1/screen

missingSleepDeps commented on 2020-02-23 19:34 (UTC)

Does anyone here know how cgroups work/where to edit this so that the build process doesn't freeze the system while I'm wanting to do other tasks on it at the same time?

njhanley commented on 2020-02-22 21:52 (UTC)

@aurelieng The base-devel group is supposed to be installed before using makepkg.

aurelieng commented on 2020-02-22 08:55 (UTC)

I tried to build the package in a clean chroot using yay, and it fails unless I add manually install bison. Is there a reason why bison is not listed as a build dep, or should it be added?

@Megumi_fox: thanks for the extra line

@archieslove: you can open the PKBUILD and insert the sed line where it should be (line 131, cf. https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ungoogled-chromium )

archieslove commented on 2020-02-20 23:31 (UTC)

@Megumi_fox Can you please elaborate ? Where to put those lines exactly in the pkgbuild ? Kinda lost as I'm new here.

solnce commented on 2020-02-20 13:21 (UTC)

@Megumi_fox Patch works wonderfully! Thanks!

lunainvictum commented on 2020-02-18 19:51 (UTC)

Building fails (again) at last point "Link" because of libopenjp2.so error.

Please Update the pkgbuild.

Megumi_fox commented on 2020-02-18 11:11 (UTC)

try this patch, @solnce @d351d3r I has been try and it build successfully.

diff --git a/PKGBUILD b/PKGBUILD
index 8642eb2..a3c5635 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -128,6 +128,7 @@ build() {
   cp "$_ungoogled_repo/flags.gn" "out/Default/args.gn"
   printf '\n' >> "out/Default/args.gn"
   cat "$_ungoogled_archlinux_repo/flags.archlinux.gn" >> "out/Default/args.gn"
+  sed -i '/use_system_libopenjpeg2=true/d' "out/Default/args.gn"

   # Facilitate deterministic builds (taken from build/config/compiler/BUILD.gn)
   CFLAGS+='   -Wno-builtin-macro-redefined'