0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2025-01-03 03:10:07 -05:00

update tumbleweed-bootstrap.patch

This commit is contained in:
Malte Jürgens 2022-07-21 16:30:12 +02:00
parent 10cafdb5ef
commit 77b9a9fd21
No known key found for this signature in database
GPG key ID: D29FBD5F93C0CFC3

View file

@ -148,3 +148,28 @@
+
+ def zypper_patterninstall(self, *packages):
+ self.zypper("install", "-t", "pattern", *packages)
--- a/python/mozboot/mozboot/base.py
+++ b/python/mozboot/mozboot/base.py
@@ -49,6 +49,22 @@ If it continues to fail, consider installing Mercurial by following the
instructions at http://mercurial.selenic.com/.
"""
+MERCURIAL_INSTALL_PROMPT = """
+Mercurial releases a new version every 3 months and your distro's package
+may become out of date. This may cause incompatibility with some
+Mercurial extensions that rely on new Mercurial features. As a result,
+you may not have an optimal version control experience.
+
+To have the best Mercurial experience possible, we recommend installing
+Mercurial via the "pip" Python packaging utility. This will likely result
+in files being placed in /usr/local/bin and /usr/local/lib.
+
+How would you like to continue?
+ 1. Install a modern Mercurial via pip [default]
+ 2. Install a legacy Mercurial via the distro package manager
+ 3. Do not install Mercurial
+Your choice: """
+
PYTHON_UNABLE_UPGRADE = """
You are currently running Python %s. Running %s or newer (but
not 3.x) is required.