Bug 1801743 - Stop bootstrapping uuid. r=firefox-build-system-reviewers,nalexander

It was not installed consistently across platforms, and I think the only
reason we installed it had been superseded by the `mach uuid` command
(which didn't rely on it), and the `mach uuid` command was removed in
bug 1639509.

Differential Revision: https://phabricator.services.mozilla.com/D162636
This commit is contained in:
Mike Hommey 2022-11-22 04:36:35 +00:00
Родитель 2094c5ed88
Коммит 98437139e6
3 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -45,10 +45,6 @@ class ArchlinuxBootstrapper(LinuxBootstrapper, BaseBootstrapper):
"gst-plugins-good",
]
BROWSER_AUR_PACKAGES = [
"uuid",
]
MOBILE_ANDROID_COMMON_PACKAGES = [
# See comment about 32 bit binaries and multilib below.
"multilib/lib32-ncurses",
@ -65,7 +61,6 @@ class ArchlinuxBootstrapper(LinuxBootstrapper, BaseBootstrapper):
def install_browser_packages(self, mozconfig_builder, artifact_mode=False):
# TODO: Figure out what not to install for artifact mode
self.aur_install(*self.BROWSER_AUR_PACKAGES)
self.pacman_install(*self.BROWSER_PACKAGES)
def install_browser_artifact_mode_packages(self, mozconfig_builder):

Просмотреть файл

@ -19,7 +19,6 @@ class DebianBootstrapper(LinuxBootstrapper, BaseBootstrapper):
"libpython3-dev",
"m4",
"unzip",
"uuid",
]
# These are common packages for building Firefox for Desktop

Просмотреть файл

@ -31,7 +31,6 @@ class OpenSUSEBootstrapper(LinuxBootstrapper, BaseBootstrapper):
"libstdc++-devel",
"libXt-devel",
"libproxy-devel",
"libuuid-devel",
"clang-devel",
"patterns-gnome-devel_gnome",
]