mirror of
https://github.com/videolan/vlc.git
synced 2024-12-15 20:53:44 +08:00
90 lines
1.5 KiB
Bash
Executable File
90 lines
1.5 KiB
Bash
Executable File
#! /bin/sh
|
|
# Piggy list consistency checker
|
|
|
|
LANG=C
|
|
export LANG
|
|
|
|
TEMPFILE=/tmp/vlclist.tmp.$$
|
|
LISTFILE=LIST
|
|
LISTFILE2=/tmp/vlclist2.tmp.$$
|
|
LISTFILE3=/tmp/vlclist3.tmp.$$
|
|
|
|
|
|
rm -f $TEMPFILE
|
|
touch $TEMPFILE
|
|
|
|
echo "------------------------------------"
|
|
echo "Checking that all modules are listed"
|
|
echo "------------------------------------"
|
|
|
|
i=0
|
|
|
|
for modfile in `find . -name "Modules.am"`
|
|
do
|
|
for module in `awk '/^SOURCES_/{sub(/SOURCES_/,"",$1); print $1}' "$modfile"`
|
|
do
|
|
echo $module >> $TEMPFILE
|
|
if ! grep -q " \* $module:" $LISTFILE
|
|
then
|
|
echo "$module exists in $modfile, but not listed"
|
|
i=1
|
|
fi
|
|
done
|
|
done
|
|
|
|
if [ $i = 0 ]
|
|
then
|
|
echo "OK"
|
|
fi
|
|
|
|
i=0
|
|
|
|
echo
|
|
echo "--------------------------------------"
|
|
echo "Checking that all listed modules exist"
|
|
echo "--------------------------------------"
|
|
|
|
for module in `awk '/ \* /{gsub(/:/,"",$2); print $2}' $LISTFILE`
|
|
do
|
|
if ! grep -q $module $TEMPFILE
|
|
then
|
|
i=1
|
|
echo "$module is listed but does not exist"
|
|
fi
|
|
done
|
|
|
|
if [ $i = 0 ]
|
|
then
|
|
echo "OK"
|
|
fi
|
|
|
|
echo
|
|
echo "-------------------------------"
|
|
echo "Checking for alphabetical order"
|
|
echo "-------------------------------"
|
|
|
|
rm -f $LISTFILE2
|
|
touch $LISTFILE2
|
|
rm -f $LISTFILE3
|
|
touch $LISTFILE3
|
|
|
|
grep " \* " $LISTFILE >> $LISTFILE2
|
|
|
|
sort -n $LISTFILE2 >> $LISTFILE3
|
|
|
|
i=`diff $LISTFILE2 $LISTFILE3|wc -l`
|
|
diff -u $LISTFILE2 $LISTFILE3
|
|
|
|
if [ $i = 0 ]
|
|
then
|
|
echo "OK"
|
|
fi
|
|
|
|
|
|
echo ""
|
|
echo "`cat $TEMPFILE| wc -l` modules listed in Modules.am files"
|
|
|
|
rm -f $TEMPFILE
|
|
rm -f $LISTFILE2
|
|
rm -f $LISTFILE3
|