From f0e090f67a90f9b653faeddbf5a1c4f75e24e91a Mon Sep 17 00:00:00 2001 From: Linn <65576637+mycelialinn@users.noreply.github.com> Date: Thu, 23 Jul 2026 20:30:34 -0500 Subject: [PATCH] Update `emerge-webrsync` to `emaint sync` (#26352) Gentoo users using git to sync cannot use `emerge-webrsync` command, but it seems like `emaint sync` still works with the webrsync method. Furthermore, running the version with `emerge-webrsync` on my Gentoo computer, which syncs with git, seemed to break syncing until manually fixed (by deleting and reinstalling the gentoo repository) --- .github/workflows/bootstrap_testing.yml | 2 +- util/env-bootstrap.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bootstrap_testing.yml b/.github/workflows/bootstrap_testing.yml index 9e35399ed2d..76aa29e83ff 100644 --- a/.github/workflows/bootstrap_testing.yml +++ b/.github/workflows/bootstrap_testing.yml @@ -99,7 +99,7 @@ jobs: zypper --non-interactive install sudo git shadow findutils tar # findutils=xargs ;; *gentoo*) - emerge-webrsync + emaint sync emerge --noreplace --ask=n sudo dev-vcs/git shadow findutils # findutils=xargs ;; *archlinux*|*cachyos*|*manjaro*) diff --git a/util/env-bootstrap.sh b/util/env-bootstrap.sh index e845d8dc64f..47238a78dff 100755 --- a/util/env-bootstrap.sh +++ b/util/env-bootstrap.sh @@ -359,7 +359,7 @@ __EOT__ *gentoo*) echo "It will also install the following system packages using 'emerge':" >&2 print_package_manager_deps_and_delay - $(nsudo) emerge-webrsync + $(nsudo) emaint sync $(nsudo) emerge --noreplace --ask=n $(get_package_manager_deps | tr ' ' '\n') || signal_execution_failure exit_if_execution_failed ;;