- Update to 5.2.75 (no changelog). This fixes boo#1212956. - Add set_current_version.patch. OBS-URL: https://build.opensuse.org/request/show/1098306 OBS-URL: https://build.opensuse.org/package/show/network:telephony/linphone?expand=0&rev=135
36 lines
1.5 KiB
Diff
36 lines
1.5 KiB
Diff
https://gitlab.linphone.org/BC/public/linphone/issues/5
|
|
https://github.com/BelledonneCommunications/linphone/pull/112
|
|
http://lists.nongnu.org/archive/html/linphone-developers/2018-04/msg00012.html
|
|
|
|
From 0a98667d1306097dcda9ea59c7627952eaee6db5 Mon Sep 17 00:00:00 2001
|
|
From: "Bernhard M. Wiedemann" <bwiedemann@suse.de>
|
|
Date: Thu, 12 Apr 2018 08:55:48 +0200
|
|
Subject: [PATCH] Sort input file list
|
|
|
|
so that liblinphone++.so builds in a reproducible way
|
|
in spite of indeterministic filesystem readdir order
|
|
|
|
---
|
|
While working on the reproducible builds effort, I found that
|
|
when building the linphone package for openSUSE Linux (in disposable VMs),
|
|
there were differences between each build,
|
|
because ordering of functions in linphone++.cc
|
|
depended on the indeterministic filesystem order.
|
|
---
|
|
tools/genapixml.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: liblinphone-5.2.88/tools/genapixml.py
|
|
===================================================================
|
|
--- liblinphone-5.2.88.orig/tools/genapixml.py
|
|
+++ liblinphone-5.2.88/tools/genapixml.py
|
|
@@ -655,7 +655,7 @@ class Project:
|
|
self.__discoverClasses()
|
|
|
|
def initFromDir(self, xmldir):
|
|
- files = [ os.path.join(xmldir, f) for f in os.listdir(xmldir) if (os.path.isfile(os.path.join(xmldir, f)) and f.endswith('.xml')) ]
|
|
+ files = [ os.path.join(xmldir, f) for f in sorted(os.listdir(xmldir)) if (os.path.isfile(os.path.join(xmldir, f)) and f.endswith('.xml')) ]
|
|
self.initFromFiles(files)
|
|
|
|
def check(self):
|