2017-05-07 12:29:28 +00:00
|
|
|
# use as
|
2017-05-08 06:01:13 +00:00
|
|
|
# %?strip_all_nondeterminism
|
|
|
|
# or
|
2017-05-07 12:29:28 +00:00
|
|
|
# %if 0%?have_strip_nondeterminism > 0
|
2017-05-08 06:01:13 +00:00
|
|
|
# strip_nondeterminism path/to/file.zip
|
2017-05-07 12:29:28 +00:00
|
|
|
# %endif
|
|
|
|
|
|
|
|
%have_strip_nondeterminism 1
|
2017-05-08 06:01:13 +00:00
|
|
|
%strip_all_nondeterminism() \
|
|
|
|
find '(' -name '*.zip' -o -name '*.jar' -o -name '*.xpi' -o -name '*.pk3' -o -name '*.mo' -o -name '*.html' -o -name '*.gz' -o -name '*.png' ')' -print0 | xargs -0 --no-run-if-empt strip-nondeterminism \
|
2017-05-07 12:29:28 +00:00
|
|
|
%{nil}
|