├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── create-release.yml ├── LICENSE ├── README.md └── void-packages ├── common └── repo-keys │ └── 91:aa:05:51:81:3f:38:b6:6a:74:af:3f:40:2d:08:c3.plist ├── etc └── conf └── srcpkgs ├── ungoogled-chromium-qt6 └── ungoogled-chromium ├── files ├── chromium.sh └── musl-patches │ ├── libc++-musl.patch │ ├── musl-sandbox.patch │ └── no-res-ninit-nclose.patch ├── patches ├── aarch64-musl-no-memory-tagging.patch ├── angle-wayland-include.patch ├── chromium-117-string-convert.patch ├── chromium-124-iwyu-sys-select-dawn-terminal.patch ├── chromium-138-rust-clang_lib.patch ├── chromium-138-rust-musl-targets.patch ├── chromium-140-8393b61.patch.args ├── chromium-140-musl-prctl.patch ├── chromium-140-musl-toolchain.patch ├── chromium-141-cross-toolchain.patch ├── chromium-141-cssstylesheet-iwyu.patch ├── chromium-142-reenable-i686.patch ├── chromium-142-revert-e33287758f2.patch.args ├── chromium-143--libsync-__BEGIN_DECLS.patch ├── chromium-143-revert-libpng_for_testonly.patch ├── chromium-143-revert-libpng_for_testonly.patch.args ├── chromium-system-nodejs.patch ├── cr138-node-version-check.patch ├── fix-aarch64-musl-memory-tagging-macros.patch ├── fix-argument_spec-isnan-isinf.patch ├── fix-missing-TEMP_FAILURE_RETRY-macro.patch ├── fix-missing-cstdint-include-musl.patch ├── fix-musl-missing-unistd_h-include.patch ├── fix-perfetto-GetThreadName-musl.patch ├── fix-swiftshader-llvm-musl-config.patch ├── libc_malloc.patch ├── llvm19.patch ├── musl-no-execinfo.patch ├── musl-no-mallinfo.patch ├── musl-no-sandbox-settls.patch ├── musl-partition-atfork.patch ├── musl-tid-caching.patch ├── no-getcontext.patch ├── node-do-not-check-version.patch ├── remove-sys-cdefs-includes.patch ├── sandbox-membarrier.patch ├── sndio.patch ├── systypes.patch ├── unbundled-cross-toolchain.patch ├── ungoogled-chromium-fix-re2.patch └── webrtc-size_t.patch ├── template └── update /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/README.md -------------------------------------------------------------------------------- /void-packages/common/repo-keys/91:aa:05:51:81:3f:38:b6:6a:74:af:3f:40:2d:08:c3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/common/repo-keys/91:aa:05:51:81:3f:38:b6:6a:74:af:3f:40:2d:08:c3.plist -------------------------------------------------------------------------------- /void-packages/etc/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/etc/conf -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium-qt6: -------------------------------------------------------------------------------- 1 | ungoogled-chromium -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/files/chromium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/files/chromium.sh -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/files/musl-patches/libc++-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/files/musl-patches/libc++-musl.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/files/musl-patches/musl-sandbox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/files/musl-patches/musl-sandbox.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/files/musl-patches/no-res-ninit-nclose.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/files/musl-patches/no-res-ninit-nclose.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/aarch64-musl-no-memory-tagging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/aarch64-musl-no-memory-tagging.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/angle-wayland-include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/angle-wayland-include.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-117-string-convert.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-117-string-convert.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-124-iwyu-sys-select-dawn-terminal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-124-iwyu-sys-select-dawn-terminal.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-138-rust-clang_lib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-138-rust-clang_lib.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-138-rust-musl-targets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-138-rust-musl-targets.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-140-8393b61.patch.args: -------------------------------------------------------------------------------- 1 | -d chromium-143.0.7499.40 -Np1 -R 2 | -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-140-musl-prctl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-140-musl-prctl.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-140-musl-toolchain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-140-musl-toolchain.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-141-cross-toolchain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-141-cross-toolchain.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-141-cssstylesheet-iwyu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-141-cssstylesheet-iwyu.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-142-reenable-i686.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-142-reenable-i686.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-142-revert-e33287758f2.patch.args: -------------------------------------------------------------------------------- 1 | -d chromium-143.0.7499.40 -Np1 -R 2 | -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-143--libsync-__BEGIN_DECLS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-143--libsync-__BEGIN_DECLS.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-143-revert-libpng_for_testonly.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-143-revert-libpng_for_testonly.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-143-revert-libpng_for_testonly.patch.args: -------------------------------------------------------------------------------- 1 | -d chromium-143.0.7499.40 -R -Np1 2 | -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/chromium-system-nodejs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/chromium-system-nodejs.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/cr138-node-version-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/cr138-node-version-check.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-aarch64-musl-memory-tagging-macros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/fix-aarch64-musl-memory-tagging-macros.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-argument_spec-isnan-isinf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/fix-argument_spec-isnan-isinf.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-missing-TEMP_FAILURE_RETRY-macro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/fix-missing-TEMP_FAILURE_RETRY-macro.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-missing-cstdint-include-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/fix-missing-cstdint-include-musl.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-musl-missing-unistd_h-include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/fix-musl-missing-unistd_h-include.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-perfetto-GetThreadName-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/fix-perfetto-GetThreadName-musl.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/fix-swiftshader-llvm-musl-config.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/libc_malloc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/libc_malloc.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/llvm19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/llvm19.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/musl-no-execinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/musl-no-execinfo.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/musl-no-mallinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/musl-no-mallinfo.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/musl-no-sandbox-settls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/musl-no-sandbox-settls.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/musl-partition-atfork.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/musl-partition-atfork.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/musl-tid-caching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/musl-tid-caching.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/no-getcontext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/no-getcontext.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/node-do-not-check-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/node-do-not-check-version.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/remove-sys-cdefs-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/remove-sys-cdefs-includes.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/sandbox-membarrier.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/sandbox-membarrier.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/sndio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/sndio.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/systypes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/systypes.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/unbundled-cross-toolchain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/unbundled-cross-toolchain.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/ungoogled-chromium-fix-re2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/ungoogled-chromium-fix-re2.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/patches/webrtc-size_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/patches/webrtc-size_t.patch -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/template -------------------------------------------------------------------------------- /void-packages/srcpkgs/ungoogled-chromium/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAINRA/ungoogled-chromium-void/HEAD/void-packages/srcpkgs/ungoogled-chromium/update --------------------------------------------------------------------------------