diff options
| author | Cory Fields <[email protected]> | 2016-07-19 15:41:36 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-07-19 15:43:07 -0400 |
| commit | 3b3ce25df6cc84cd1e75a7ec20fc7da8d2ef76e0 (patch) | |
| tree | 3257ce549fdaf6d8aba898d0cd9152b2d1779924 /depends/patches | |
| parent | Merge #8367: [Wallet] Ensure <0.13 clients can't open HD wallets (diff) | |
| download | discoin-3b3ce25df6cc84cd1e75a7ec20fc7da8d2ef76e0.tar.xz discoin-3b3ce25df6cc84cd1e75a7ec20fc7da8d2ef76e0.zip | |
build: fix non-deterministic biplist
The non-deterministic ordering produced by biplist ends up in the .DS_Store
file that is included in the OSX dmg.
Diffstat (limited to 'depends/patches')
| -rw-r--r-- | depends/patches/native_biplist/sorted_list.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/depends/patches/native_biplist/sorted_list.patch b/depends/patches/native_biplist/sorted_list.patch new file mode 100644 index 000000000..89abdb1b7 --- /dev/null +++ b/depends/patches/native_biplist/sorted_list.patch @@ -0,0 +1,29 @@ +--- a/biplist/__init__.py 2014-10-26 19:03:11.000000000 +0000 ++++ b/biplist/__init__.py 2016-07-19 19:30:17.663521999 +0000 +@@ -541,7 +541,7 @@ + return HashableWrapper(n) + elif isinstance(root, dict): + n = {} +- for key, value in iteritems(root): ++ for key, value in sorted(iteritems(root)): + n[self.wrapRoot(key)] = self.wrapRoot(value) + return HashableWrapper(n) + elif isinstance(root, list): +@@ -616,7 +616,7 @@ + elif isinstance(obj, dict): + size = proc_size(len(obj)) + self.incrementByteCount('dictBytes', incr=1+size) +- for key, value in iteritems(obj): ++ for key, value in sorted(iteritems(obj)): + check_key(key) + self.computeOffsets(key, asReference=True) + self.computeOffsets(value, asReference=True) +@@ -714,7 +714,7 @@ + keys = [] + values = [] + objectsToWrite = [] +- for key, value in iteritems(obj): ++ for key, value in sorted(iteritems(obj)): + keys.append(key) + values.append(value) + for key in keys: |