Current Path: > > usr > lib > rpm
Operation : Linux premium107.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 : 198.54.126.246 | Your IP: 216.73.216.181 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 | February 02 2026 15:26:27. | |
| 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 | February 03 2026 12:51:15. | |
| alt-nodejs22_native.req | File | 40 bytes | February 03 2026 17:36:24. | |
| alt-nodejs24_native.req | File | 40 bytes | February 04 2026 01:56:42. | |
| 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
#
# Script to install in:
# /usr/lib/rpm/redhat/find-provides.d
#
# Transform GStreamer auto install info into RPM provides
#
# Author: Bastien Nocera <hadess@hadess.net>
# Based on other provides scripts from RPM
#
filelist=`grep -e '.so$' | sed "s/['\"]/\\\&/g"`
# --- Alpha does not mark 64bit dependencies•
case `uname -m` in
alpha*) mark64="" ;;
*) mark64="()(64bit)" ;;
esac
solist=$(echo $filelist | grep "libgst" | \
xargs file -L 2>/dev/null | grep "ELF.*shared object" | cut -d: -f1 )
function getmark()
{
lib64=`if file -L $1 2>/dev/null | \
grep "ELF 64-bit" >/dev/null; then echo -n "$mark64"; fi`
}
function libdir()
{
buildlibdir=`dirname $1`
buildlibdir=`dirname $buildlibdir`
}
for so in $solist ; do
getmark $so
libdir $so
LD_LIBRARY_PATH=$buildlibdir gst-inspect-1.0 --print-plugin-auto-install-info --rpm $so 2> /dev/null | while read line ; do
echo -n "$line";
echo -n "$lib64"
echo
done
done
SILENT KILLER Tool