Source: sympa
Version: 6.2.16~dfsg-1
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: randomness
X-Debbugs-Cc: [email protected]
Hi,
Whilst working on the Reproducible Builds effort [0], I noticed
that sympa could not be built reproducibly due to the repeated
use of a value in the "order" attribute.
This resulted in non-deterministic ordering in the sympa_database(5)
manpage.
Patch attached.
[0] https://reproducible-builds.org/
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
diff --git a/src/lib/Sympa/DatabaseDescription.pm
b/src/lib/Sympa/DatabaseDescription.pm
index e1a2954..7d34804 100644
--- a/src/lib/Sympa/DatabaseDescription.pm
+++ b/src/lib/Sympa/DatabaseDescription.pm
@@ -152,7 +152,7 @@ my %full_db_struct = (
'custom_attribute_subscriber' => {
'struct' => 'text',
'doc' => 'FIXME',
- 'order' => 10,
+ 'order' => 20,
},
},