Current Path: > > usr > lib > > rpm
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
fileattrs | Directory | - | - | |
macros.d | Directory | - | - | |
platform | Directory | - | - | |
redhat | Directory | - | - | |
alt-nodejs10_native.req | File | 70 bytes | March 22 2023 11:24:59. | |
alt-nodejs11_native.req | File | 70 bytes | October 19 2021 10:09:25. | |
alt-nodejs12_native.req | File | 70 bytes | January 11 2022 02:11:43. | |
alt-nodejs14_native.req | File | 70 bytes | March 23 2023 18:19:20. | |
alt-nodejs16_native.req | File | 40 bytes | November 03 2023 14:28:38. | |
alt-nodejs18_native.req | File | 40 bytes | June 05 2025 11:46:41. | |
alt-nodejs19_native.req | File | 39 bytes | December 06 2023 18:26:05. | |
alt-nodejs20_native.req | File | 40 bytes | July 11 2025 11:50:04. | |
alt-nodejs22_native.req | File | 40 bytes | July 08 2025 16:28:47. | |
alt-nodejs24_native.req | File | 39 bytes | July 08 2025 16:31:09. | |
alt-nodejs6_native.req | File | 64 bytes | September 28 2021 09:41:32. | |
alt-nodejs8_native.req | File | 68 bytes | September 28 2021 10:55:42. | |
alt-nodejs9_native.req | File | 68 bytes | September 28 2021 11:57:47. | |
brp-scl-compress | File | 1809 bytes | August 25 2017 08:23:02. | |
brp-scl-python-bytecompile | File | 3109 bytes | August 25 2017 08:23:02. | |
gstreamer1.prov | File | 954 bytes | May 30 2020 07:44:22. | |
kabi.sh | File | 468 bytes | May 15 2023 14:30:31. | |
kmod.prov | File | 682 bytes | May 15 2023 14:30:31. | |
macros | File | 43988 bytes | December 17 2024 04:11:02. | |
nodejs_native.req | File | 70 bytes | March 10 2021 14:47:25. | |
python-macro-helper | File | 634 bytes | December 17 2024 04:11:01. | |
pythondeps.sh | File | 921 bytes | March 31 2023 15:44:53. | |
pythondistdeps.py | File | 11184 bytes | March 31 2023 15:44:53. | |
rpm.daily | File | 296 bytes | December 17 2024 04:11:01. | |
rpm.log | File | 61 bytes | December 17 2024 04:11:01. | |
rpm.supp | File | 688 bytes | December 17 2024 04:11:01. | |
rpm2cpio.sh | File | 1249 bytes | December 17 2024 04:11:01. | |
rpmdb_dump | File | bytes | January 01 1970 00:00:00. | |
rpmdb_load | File | bytes | January 01 1970 00:00:00. | |
rpmdb_loadcvt | File | 1467 bytes | December 17 2024 04:11:01. | |
rpmdb_recover | File | bytes | January 01 1970 00:00:00. | |
rpmdb_stat | File | bytes | January 01 1970 00:00:00. | |
rpmdb_upgrade | File | bytes | January 01 1970 00:00:00. | |
rpmdb_verify | File | bytes | January 01 1970 00:00:00. | |
rpmpopt-4.14.3 | File | 11470 bytes | December 17 2024 04:11:02. | |
rpmrc | File | 17154 bytes | December 17 2024 04:11:02. | |
scldeps.sh | File | 254 bytes | August 25 2017 08:23:02. | |
tgpg | File | 929 bytes | December 17 2024 04:11:01. |
#!/bin/bash errors_terminate=$2 scl_path=$3 # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi [ "0$scl_path" = "0" ] && exit 0 # If we don't have a python interpreter, avoid changing anything. default_python=${1:-/usr/bin/python} if [ ! -x "$default_python" ]; then exit 0 fi # Figure out how deep we need to descend. We could pick an insanely high # number and hope it's enough, but somewhere, somebody's sure to run into it. depth=`(find "$RPM_BUILD_ROOT" -type f -name "*.py" -print0 ; echo /) | \ xargs -0 -n 1 dirname | sed 's,[^/],,g' | sort -u | tail -n 1 | wc -c` if [ -z "$depth" -o "$depth" -le "1" ]; then exit 0 fi # .pyc/.pyo files embed a "magic" value, identifying the ABI version of Python # bytecode that they are for. # # The files below RPM_BUILD_ROOT could be targeting multiple versions of # python (e.g. a single build that emits several subpackages e.g. a # python26-foo subpackage, a python31-foo subpackage etc) # # Support this by assuming that below each /usr/lib/python$VERSION/, all # .pyc/.pyo files are to be compiled for /usr/bin/python$VERSION. # # For example, below /usr/lib/python2.6/, we're targeting /usr/bin/python2.6 # and below /usr/lib/python3.1/, we're targeting /usr/bin/python3.1 shopt -s nullglob for python_libdir in "$RPM_BUILD_ROOT"/usr/lib{,64}/python[0-9].[0-9]/ "$RPM_BUILD_ROOT"/$scl_path/usr/lib{,64}/python[0-9].[0-9]/; do python_binary=/usr/bin/$(basename $python_libdir) real_libdir=${python_libdir/$RPM_BUILD_ROOT/} echo "Bytecompiling .py files below $python_libdir using $python_binary" # Generate normal (.pyc) byte-compiled files. $python_binary -c 'import compileall, sys; sys.exit(not compileall.compile_dir("'"$python_libdir"'", '"$depth"', "'"$real_libdir"'", force=1, quiet=1))' if [ $? -ne 0 -a 0$errors_terminate -ne 0 ]; then # One or more of the files had a syntax error exit 1 fi # Generate optimized (.pyo) byte-compiled files. $python_binary -O -c 'import compileall, sys; sys.exit(not compileall.compile_dir("'"$python_libdir"'", '"$depth"', "'"$real_libdir"'", force=1, quiet=1))' if [ $? -ne 0 -a 0$errors_terminate -ne 0 ]; then # One or more of the files had a syntax error exit 1 fi done # Handle other locations in the filesystem using the default python # implementation: # Generate normal (.pyc) byte-compiled files. $default_python -c 'import compileall, re, sys; sys.exit (not compileall.compile_dir("'"$RPM_BUILD_ROOT"'", '"$depth"', "/", 1, re.compile(r"'"/bin/|/sbin/|/usr/lib(64)?/python[0-9]\.[0-9]"'"), quiet=1))' if [ $? -ne 0 -a 0$errors_terminate -ne 0 ]; then # One or more of the files had a syntax error exit 1 fi # Generate optimized (.pyo) byte-compiled files. $default_python -O -c 'import compileall, re, sys; sys.exit(not compileall.compile_dir("'"$RPM_BUILD_ROOT"'", '"$depth"', "/", 1, re.compile(r"'"/bin/|/sbin/|/usr/lib(64)?/python[0-9]\.[0-9]"'"), quiet=1))' > /dev/null if [ $? -ne 0 -a 0$errors_terminate -ne 0 ]; then # One or more of the files had a syntax error exit 1 fi exit 0
SILENT KILLER Tool