Accepting request 504323 from home:bmwiedemann:reproducible:test

sort autogenerated Requires to make builds of packages like gnome-shell, gnome-maps, polari and cjs fully reproducible

also uniq did not work without sort

OBS-URL: https://build.opensuse.org/request/show/504323
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gobject-introspection?expand=0&rev=170
This commit is contained in:
Dominique Leuenberger 2017-06-17 09:36:45 +00:00 committed by Git OBS Bridge
parent 2f5f873551
commit c42f8d4972
2 changed files with 8 additions and 2 deletions

View File

@ -55,7 +55,7 @@ for resource in $($gresourcecmd list "$1" 2>/dev/null); do
mkdir -p $tmpdir/$(dirname $resource)
$gresourcecmd extract "$1" $resource > $tmpdir/$resource
done
find $tmpdir -type f | sh $0 -R
find $tmpdir -type f | sort | sh $0 -R
rm -rf "$tmpdir"
}
@ -225,7 +225,7 @@ x64bitarch="x86_64 ppc64 ppc64le s390x ia64 aarch64"
for path in \
$(for tlpath in \
$(find ${RPM_BUILD_ROOT}/usr/lib64 ${RPM_BUILD_ROOT}/usr/lib /usr/lib64 /usr/lib -name '*.typelib' 2>/dev/null); do
dirname $tlpath; done | uniq ); do
dirname $tlpath; done | sort --unique ); do
export GI_TYPELIB_PATH=$GI_TYPELIB_PATH:$path
done

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Jun 17 05:35:10 UTC 2017 - bwiedemann@suse.com
- sort autogenerated Requires to make builds of packages like polari
fully reproducible
-------------------------------------------------------------------
Sun Apr 16 16:55:30 UTC 2017 - zaitor@opensuse.org