/usr/lib/rpm/redhat
NameSizeModeActions
brp-fix-pyc-reproducibility5600755editdlrm
brp-ldconfig4170755editdlrm
brp-mangle-shebangs45170755editdlrm
brp-python-bytecompile57780755editdlrm
brp-strip-lto5750755editdlrm
compileall2.py221110644editdlrm
config.guess439430755editdlrm
config.sub363100755editdlrm
dist.sh19850755editdlrm
find-provides12200755editdlrm
find-requires10130755editdlrm
gpgverify36260755editdlrm
kmodtool92470755editdlrm
macros162290644editdlrm
redhat-annobin-cc1890444editdlrm
redhat-annobin-plugin-select.sh61980755editdlrm
redhat-annobin-select-annobin-built-plugin890444editdlrm
redhat-annobin-select-gcc-built-plugin930444editdlrm
redhat-hardened-cc11530444editdlrm
redhat-hardened-clang.cfg60444editdlrm
redhat-hardened-ld470444editdlrm
rpmrc56530644editdlrm
rpmsort21640755editdlrm
Edit: /usr/lib/rpm/redhat/brp-fix-pyc-reproducibility (560B)
#!/usr/bin/bash -e # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi # Defined as %py_reproducible_pyc_path macro and passed here as # the first command-line argument path_to_fix=$1 # First, check that the parser is available: if [ ! -x /usr/bin/marshalparser ]; then echo "ERROR: If %py_reproducible_pyc_path is defined, you have to also BuildRequire: /usr/bin/marshalparser !" exit 1 fi find "$path_to_fix" -type f -name "*.pyc" | xargs /usr/bin/marshalparser --fix --overwrite