Add support for versioninfo file in the branch.

Change-Id: I7a180ff14dece7fbe4f5dd72e863465d2cdd1c37
This commit is contained in:
Monty Taylor 2012-06-24 17:19:49 -05:00
parent 2a12940a46
commit c0b0cee756

View File

@ -49,14 +49,22 @@ find_next_version() {
printf "%s" "$version"
}
snapshotversion=$(find_next_version)
rm -f dist/*.tar.gz
if [ -f setup.py ] ; then
tox -evenv python setup.py sdist
# There should only be one, so this should be safe.
tarball=$(echo dist/*.tar.gz)
# If our tarball includes a versioninfo file, use that version
snapshotversion=`tar --wildcards -O -z -xf $tarball *versioninfo 2>/dev/null`
if [ "x${snapshotversion}" = "x" ] ; then
snapshotversion=$(find_next_version)
echo mv "$tarball" "dist/$(basename $tarball .tar.gz)${SEPARATOR}${snapshotversion}.tar.gz"
mv "$tarball" "dist/$(basename $tarball .tar.gz)${SEPARATOR}${snapshotversion}.tar.gz"
else
projectname=`tar --wildcards -O -z -xf $tarball *PKG-INFO 2>/dev/null | grep Name: | awk '{print $2}'`
echo mv "$tarball" "dist/${projectname}-${snapshotversion}.tar.gz"
mv "$tarball" "dist/${projectname}-${snapshotversion}.tar.gz"
echo mv "$tarball" "dist/$(basename $tarball .tar.gz)${SEPARATOR}${snapshotversion}.tar.gz"
mv "$tarball" "dist/$(basename $tarball .tar.gz)${SEPARATOR}${snapshotversion}.tar.gz"
fi
fi