···11+This part caused build failures in Collabora.
22+33+LibreOffice has just dropped the entire file some time ago.
44+55+--- a/i18npool/source/breakiterator/data/sent.txt 1970-01-01 01:00:01.000000000 +0100
66+--- b/i18npool/source/breakiterator/data/sent.txt 1970-01-01 01:00:01.000000000 +0100
77+@@ -88,41 +88,3 @@
88+ [[^$STerm $ATerm $Close $Sp $Sep $Format $Extend $Thai]{bof}] ($Extend | $Format | $Close | $Sp)* [^$Thai];
99+ [[^$STerm $ATerm $Close $Sp $Sep $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep{eof}] | $CR $LF){100};
1010+1111+-## -------------------------------------------------
1212+-
1313+-!!reverse;
1414+-
1515+-$SpEx_R = ($Extend | $Format)* $Sp;
1616+-$ATermEx_R = ($Extend | $Format)* $ATerm;
1717+-$STermEx_R = ($Extend | $Format)* $STerm;
1818+-$CloseEx_R = ($Extend | $Format)* $Close;
1919+-
2020+-#
2121+-# Reverse rules.
2222+-# For now, use the old style inexact reverse rules, which are easier
2323+-# to write, but less efficient.
2424+-# TODO: exact reverse rules. It appears that exact reverse rules
2525+-# may require improving support for look-ahead breaks in the
2626+-# builder. Needs more investigation.
2727+-#
2828+-
2929+-[{bof}] (.? | $LF $CR) [^$Sep]* [$Sep {eof}] ($SpEx_R* $CloseEx_R* ($STermEx_R | $ATermEx_R))*;
3030+-#.*;
3131+-
3232+-# Explanation for this rule:
3333+-#
3434+-# It needs to back over
3535+-# The $Sep at which we probably begin
3636+-# All of the non $Sep chars leading to the preceding $Sep
3737+-# The preceding $Sep, which will be the second one that the rule matches.
3838+-# Any immediately preceding STerm or ATerm sequences. We need to see these
3939+-# to get the correct rule status when moving forwards again.
4040+-#
4141+-# [{bof}] inhibit rule chaining. Without this, rule would loop on itself and match
4242+-# the entire string.
4343+-#
4444+-# (.? | $LF $CR) Match one $Sep instance. Use .? rather than $Sep because position might be
4545+-# at the beginning of the string at this point, and we don't want to fail.
4646+-# Can only use {eof} once, and it is used later.
4747+-#
4848+-
···11+diff --git a/setup.py b/setup.py
22+index 9a2abe0..75ce109 100644
33+--- a/setup.py
44++++ b/setup.py
55+@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
66+77+ # determine the version, then write it out into the bridge.py file
88+ version = (
99+- subprocess.check_output("git describe --tags", shell=True).decode("utf-8").strip()
1010++ "@version@"
1111+ )
1212+ # check if this is a non-tag release and remark it as a dev release
1313+ if "-" in version:
···11+diff --git a/setup.py b/setup.py
22+index 079cb01..c5e71b8 100644
33+--- a/setup.py
44++++ b/setup.py
55+@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
66+ long_description = fh.read()
77+88+ # determine the version, then write it out into the bridge.py file
99+-version = subprocess.check_output("git describe --tags", shell=True).decode("utf-8").strip()
1010++version = "@version@"
1111+ # check if this is a non-tag release and remark it as a dev release
1212+ if "-" in version:
1313+ ver, commits, hash = version.split("-")
···231231.It Cm build-image
232232Build a disk-image variant, pre-configured for the given platform/provider.
233233Select a variant with the
234234-.Fl --image-variant
234234+.Fl -image-variant
235235option or run without any options to get a list of available variants.
236236237237.Bd -literal -offset indent