Vagrant Cascadian wrote:
> > This is because some help output enumerated the constants in a Python
> > set without a sort which does not have an implicitly deterministic
> > ordering. Patch attached that applies a sort to the list.
>
> empty patch?
An error.
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` la...@debian.org 🍥 chris-lamb.co.uk
`-
--- a/debian/patches/repoducible-build.patch 1970-01-01 01:00:00.000000000
+0100
--- b/debian/patches/repoducible-build.patch 2020-05-15 10:05:16.465023428
+0100
@@ -0,0 +1,15 @@
+Description: Make the build reproducible
+Author: Chris Lamb <la...@debian.org>
+Last-Update: 2020-05-15
+
+--- mistral-10.0.0.orig/mistral/config.py
++++ mistral-10.0.0/mistral/config.py
+@@ -451,7 +451,7 @@ execution_expiration_policy_opts = [
+ default=[],
+ help='The states that the expiration policy will filter '
+ 'out and will not delete.'
+- 'Valid values are, [{}]'.format(states.TERMINAL_STATES)
++ 'Valid values are, [{}]'.format(sorted(states.TERMINAL_STATES))
+ )
+ ]
+
--- a/debian/patches/series 2020-05-15 09:37:51.964924304 +0100
--- b/debian/patches/series 2020-05-15 10:05:15.493016263 +0100
@@ -1 +1,2 @@
install-missing-files.patch
+repoducible-build.patch