firefox/get_rust_bundled_provides.sh
Tomas Popela 6e3741561a Make the timer optional while getting compiled rust crates
So we can use the script in other components that are using rust crates.

Related: RHEL-14546
2023-11-01 13:20:40 +01:00

15 lines
452 B
Bash
Executable File

#!/bin/bash
# Get the list of the compiled bundled rust crates.
# Usage: $0 build.log
if [ -z $1 ]; then
echo Get the list of the compiled bundled rust crates.
echo Usage: $0 build.log
exit
fi
while read LINE; do
name=`echo $LINE | cut -d\ -f1`
version=`echo $LINE | cut -d\ -f2|sed -e 's/^v//g'`
echo "Provides: bundled(crate($name)) = $version"
done < <(cat $1 |grep "[0-9]*[ ]*Compiling [a-z]"|sed -e 's/.*Compiling //'g| sort|uniq)