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/sh # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi scl_path=${1:-opt/*} cd "$RPM_BUILD_ROOT" # Compress man pages COMPRESS="gzip -9 -n" COMPRESS_EXT=.gz for d in ./usr/man/man* ./usr/man/*/man* ./usr/info \ ./usr/share/man/man* ./usr/share/man/*/man* ./usr/share/info \ ./usr/kerberos/man ./usr/X11R6/man/man* ./usr/lib/perl5/man/man* \ ./usr/share/doc/*/man/man* ./usr/lib/*/man/man* \ ./$scl_path/usr/man/man* ./$scl_path/usr/man/*/man* ./$scl_path/usr/info \ ./$scl_path/usr/share/man/man* ./$scl_path/usr/share/man/*/man* ./$scl_path/usr/share/info \ ./$scl_path/usr/kerberos/man ./$scl_path/usr/X11R6/man/man* ./$scl_path/usr/lib/perl5/man/man* \ ./$scl_path/usr/share/doc/*/man/man* ./$scl_path/usr/lib/*/man/man* do [ -d $d ] || continue for f in `find $d -type f ! -name dir` do [ -f "$f" ] || continue case "$f" in *.gz|*.Z) gunzip -f $f; b=`echo $f | sed -e 's/\.\(gz\|Z\)$//'`;; *.bz2) bunzip2 -f $f; b=`echo $f | sed -e 's/\.bz2$//'`;; *.xz|*.lzma) unxz -f $f; b=`echo $f | sed -e 's/\.\(xz\|lzma\)$//'`;; *) b=$f;; esac $COMPRESS $b </dev/null 2>/dev/null || { inode=`ls -i $b | awk '{ print $1 }'` others=`find $d -type f -inum $inode` if [ -n "$others" ]; then for afile in $others ; do [ "$afile" != "$b" ] && rm -f $afile done $COMPRESS -f $b for afile in $others ; do [ "$afile" != "$b" ] && ln $b$COMPRESS_EXT $afile$COMPRESS_EXT done else $COMPRESS -f $b fi } done for f in `find $d -type l` do l=`ls -l $f | sed -e 's/.* -> //' -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\)$//'` rm -f $f b=`echo $f | sed -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\)$//'` ln -sf $l$COMPRESS_EXT $b$COMPRESS_EXT done done
SILENT KILLER Tool