File reproducible.patch of Package python-krbV

sort input files

when building packages (e.g. for openSUSE Linux)
(random) filesystem order of input files
influences ordering of functions in the output,
thus without the patch, builds (in disposable VMs) would usually differ.

See https://reproducible-builds.org/ for why this matters.

Index: python-krbV-1.0.90/setup.py
===================================================================
--- python-krbV-1.0.90.orig/setup.py
+++ python-krbV-1.0.90/setup.py
@@ -88,7 +88,7 @@ setup(
 
     ext_modules = [
         Extension('krbV',
-            glob('*.c'),
+            sorted(glob('*.c')),
             include_dirs = ['.', 'krb5', 'com_err'],
             libraries = ['krb5', 'com_err'])
     ],
openSUSE Build Service is sponsored by