Revert "tools: Add distdir-from-configure-ac.sh"

This reverts commit 762ad9c074.
This tool should simply be installed on buildbot build slaves, doesn't
make sense to version control it in GIMP.
This commit is contained in:
Martin Nordholts 2010-08-31 17:34:18 +02:00
parent ab852d7409
commit bf62cc2e5f
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
#!/bin/sh
if [ -z "$1" ] || [ -z "$2" ]; then
echo "Usage: `basename $0` PACKAGE_NAME CONFIGURE_AC"
echo
echo "Prints the distdir for the given package based on version information"
echo "in configure.ac. Useful for example in a buildbot buildstep to remove "
echo "a stray distdir from a failed distcheck"
exit 1
fi
package_name=$1
configure_ac=$2
if [ ! -f $configure_ac ]; then
echo "File '$configure_ac' does not exist"
exit 2
elif ! grep $package_name $configure_ac &>/dev/null; then
echo "No occurance of '$package_name' in '$configure_ac'"
exit 3
fi
number ()
{
number_type=$1
regexp=".*m4_define.*\[${package_name}_${number_type}_version\].*\[\(.\)\].*"
grep $regexp $configure_ac | sed s/$regexp/\\1/
}
echo $package_name-`number major`.`number minor`.`number micro`