XYZ File Manager
Current Path:
/lib/rpm/redhat
lib
/
rpm
/
redhat
/
📁
..
📄
brp-fix-pyc-reproducibility
(560 B)
📄
brp-ldconfig
(417 B)
📄
brp-llvm-compile-lto-elf
(1.88 KB)
📄
brp-mangle-shebangs
(4.41 KB)
📄
brp-python-bytecompile
(5.64 KB)
📄
brp-strip-lto
(558 B)
📄
compileall2.py
(21.59 KB)
📄
config.guess
(42.91 KB)
📄
config.sub
(35.46 KB)
📄
dist.sh
(1.94 KB)
📄
find-provides
(1.19 KB)
📄
find-requires
(1013 B)
📄
gpgverify
(3.54 KB)
📄
kmodtool
(9.03 KB)
📄
macros
(16.02 KB)
📄
redhat-annobin-cc1
(93 B)
📄
redhat-annobin-plugin-select.sh
(6.05 KB)
📄
redhat-annobin-select-annobin-built-plugin
(89 B)
📄
redhat-annobin-select-gcc-built-plugin
(93 B)
📄
redhat-hardened-cc1
(153 B)
📄
redhat-hardened-clang.cfg
(6 B)
📄
redhat-hardened-ld
(47 B)
📄
rpmrc
(5.52 KB)
📄
rpmsort
(2.11 KB)
Editing: brp-fix-pyc-reproducibility
#!/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
Upload File
Create Folder