cfe45dadae
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
46 lines
1.1 KiB
Bash
Executable File
46 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
CREATEREPO=$(which createrepo_c)
|
|
if [ $? -ne 0 ]; then
|
|
CREATEREPO="createrepo"
|
|
fi
|
|
|
|
# If a file listed in list.txt is missing, this function attempts to find the
|
|
# RPM and copy it to the local directory. This should not be required normally
|
|
# and is only used when collecting the source RPMs initially.
|
|
function findSrc {
|
|
local lookingFor=$1
|
|
find $MY_REPO/cgcs-centos-repo/Source -name $lookingFor | xargs -I '{}' cp '{}' .
|
|
find $MY_REPO/cgcs-tis-repo/Source -name $lookingFor | xargs -I '{}' cp '{}' .
|
|
find $MY_WORKSPACE/std/rpmbuild/SRPMS -name $lookingFor | xargs -I '{}' cp '{}' .
|
|
}
|
|
|
|
rm -f success.txt
|
|
rm -f fail.txt
|
|
rm -f missing.txt
|
|
mkdir -p results
|
|
infile=list.txt
|
|
|
|
while read p; do
|
|
|
|
if [ ! -f "$p" ]; then
|
|
findSrc $p
|
|
if [ ! -f "$p" ]; then
|
|
echo "couldn't find" >> missing.txt
|
|
echo "couldn't find $p" >> missing.txt
|
|
continue
|
|
fi
|
|
echo "found $p"
|
|
fi
|
|
|
|
mock -r build.cfg $p --resultdir=results --no-clean
|
|
if [ $? -eq 0 ]; then
|
|
echo "$p" >> success.txt
|
|
cd results
|
|
$CREATEREPO .
|
|
cd ..
|
|
else
|
|
echo "$p" >> fail.txt
|
|
fi
|
|
done < $infile
|