6e3741561a
So we can use the script in other components that are using rust crates. Related: RHEL-14546
15 lines
452 B
Bash
Executable File
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)
|