2008-01-16 01:53:24 +03:00
#!/bin/bash
2008-05-28 01:27:21 +04:00
## option defaults
OPT_BRANCH=""
OPT_DOCSDIR=""
OPT_TAG=""
OPT_KEYID=""
2008-01-16 01:53:24 +03:00
TOPDIR="`dirname $0`/.."
2008-09-22 19:57:59 +04:00
VER_H="${TOPDIR}/source3/include/version.h"
2008-05-28 01:27:21 +04:00
function exitOnError
{
local _error="$1"
local _msg="$2"
if [ ${_error} -eq 0 ]; then
return 0
fi
echo "FAILURE: ${_msg}"
exit ${_error}
}
##
## Print help usage
##
function printUsage
{
echo "Usage $0 [options]"
echo " --help Print command usage"
echo " --branch <name> Specify the branch to to create the archive file from"
echo " --copy-docs <dir> Copy documentation from <dir> rather than building"
echo " --tag <name> Tag name for release"
echo " --keyid <email> The GnuPG key ID used to sign the release tag"
echo ""
}
##
2008-09-22 19:53:40 +04:00
## Parse the command line options
2008-05-28 01:27:21 +04:00
##
function parseOptions
{
while [ -n "$1" ]; do
case "$1" in
--help)
printUsage
exit 0
;;
--branch)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_BRANCH="$1"
shift
;;
--copy-docs)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_DOCSDIR="$1"
shift
;;
--tag)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_TAG="$1"
shift
;;
--keyid)
shift
if [ -z "$1" ]; then
printUsage
return 1
fi
OPT_KEYID="$1"
shift
;;
*)
printUsage
return 1
;;
esac
done
if [ -z "${OPT_BRANCH}" ]; then
echo "You must specify a branch name!"
printUsage
return 1
fi
}
##
## Build the dopcumentation (may be a no-op)
##
function buildDocs
{
if [ -n "${OPT_DOCSDIR}" ]; then
if [ ! -d "${OPT_DOCSDIR}" ]; then
exitOnError 1 "${OPT_DOCSDIR} does not exist. Please specify the absolute path."
fi
mkdir docs
exitOnError $? "Failed to create docs directory"
rsync -av "${OPT_DOCSDIR}"/ docs/
exitOnError $? "Failed top copy docs from ${OPT_DOCSDIR}"
2008-09-22 19:53:40 +04:00
2009-11-26 13:18:39 +03:00
cd docs/
/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test
if [ -d manpages-3 ]; then
mv manpages-3 manpages
fi
if [ -d htmldocs/manpages-3 ]; then
mv htmldocs/manpages-3 htmldocs/manpages
fi
# Sync thanks, history and registry/ into the docs dir
rsync -Ca --exclude=.svn ../../$OPT_BRANCH/docs-xml/registry ../docs/
rsync -Ca --exclude=.svn ../../$OPT_BRANCH/docs-xml/archives/ ../docs/
cd ../
2008-05-28 01:27:21 +04:00
return 0
fi
echo "Building documentation. This may take a while. Log file in /tmp/docs-build.log.$$"
${TOPDIR}/release-scripts/build-docs 2> /tmp/docs-build.log.$$
return $?
}
##
## Create a release tag
##
function createReleaseTag
{
if [ -z "${OPT_TAG}" ]; then
echo "Tagging disabled"
return 0
fi
2008-11-17 17:23:34 +03:00
if [ "x`git tag -l ${OPT_TAG}`" != "x" ]; then
2008-05-28 01:27:21 +04:00
echo -n "Tag exists. Do you wish to overwrite? (y/N): "
read answer
if [ "x$answer" != "xy" ]; then
echo "Tag creation aborted."
exit 1
fi
fi
if [ -z "${OPT_KEYID}" ]; then
echo -n "Enter the keyid:"
read OPT_KEYID
if [ -z "${OPT_KEYID}" ]; then
exitOnError 1 "No keyid specified"
fi
fi
2008-11-17 17:23:34 +03:00
git tag -u ${OPT_KEYID} ${OPT_TAG}
2008-05-28 01:27:21 +04:00
exitOnError $? "Failed to create tag"
return 0
}
##
## Main driver
##
2008-09-22 19:53:40 +04:00
function main
2008-05-28 01:27:21 +04:00
{
parseOptions "$@"
exitOnError $? "Failed to parse options"
2008-09-22 19:53:40 +04:00
2008-05-28 01:27:21 +04:00
cd $TOPDIR
2008-11-17 17:23:34 +03:00
git checkout ${OPT_BRANCH}
2008-05-28 01:27:21 +04:00
exitOnError $? "Invalid branch name \"${OPT_BRANCH}\""
2008-09-22 19:57:59 +04:00
(cd source3 && ./script/mkversion.sh)
2008-05-28 01:27:21 +04:00
if [ ! -f $VER_H ]; then
exitOnError 1 "Failed to find ${VER_H}!"
fi
2008-09-22 19:55:01 +04:00
version=`grep "define SAMBA_VERSION_OFFICIAL_STRING" $VER_H | awk '{print $3}'`
vendor_version=`grep "define SAMBA_VERSION_VENDOR_SUFFIX" $VER_H | awk '{print $3}'`
2008-05-28 01:27:21 +04:00
if [ -n "$vendor_version" ]; then
version="$version-$vendor_version"
fi
2010-03-09 01:37:21 +03:00
vendor_patch=`grep "define SAMBA_VERSION_VENDOR_PATCH_STRING" $VER_H | awk '{print $3}'`
2009-01-21 13:45:23 +03:00
if [ -n "$vendor_patch" ]; then
version="$version-$vendor_patch"
fi
2008-05-28 01:27:21 +04:00
version=`echo $version | sed 's/\"//g'`
echo "Creating release tarball for Samba $version"
/bin/rm -rf ../samba-${version}
2008-11-17 17:23:34 +03:00
git archive --format=tar --prefix=samba-${version}/ HEAD | (cd .. && tar xf -)
2008-05-28 01:27:21 +04:00
exitOnError $? "Failed to create release directory tree"
pushd ../samba-${version}
2009-07-28 15:22:35 +04:00
# Remove RFCs as they are non-free content (with a strict interpretation of
# the DFSG)
if [ -d source4 ]; then
echo "Removing RFCs"
find source4/ -name "rfc*.txt" -exec rm -f {} \;
2009-11-15 22:52:11 +03:00
rm -f source4/ldap_server/devdocs/draft-armijo-ldap-syntax-00.txt
rm -f source4/ldap_server/devdocs/ldapext-ldapv3-vlv-04.txt
2009-07-28 15:22:35 +04:00
fi
2008-05-28 01:27:21 +04:00
packaging/bin/update-pkginfo ${version} 1 ""
buildDocs
exitOnError $? "Failed to build documentation"
2008-09-22 19:57:59 +04:00
( cd source3 && ./autogen.sh )
2008-05-28 01:27:21 +04:00
cd ..
tar cf samba-${version}.tar --exclude=.git* --exclude=CVS --exclude=.svn samba-${version}
exitOnError $? "Failed to create tarball from git tree"
gpg --detach-sign --armor samba-${version}.tar
## exitOnError $? "Failed to sign tarball"
gzip -9 samba-${version}.tar
exitOnError $? "Failed to compress archive"
popd
createReleaseTag
exitOnError $? "Failed to create release tag"
return 0
}
2008-01-16 01:53:24 +03:00
2008-05-28 01:27:21 +04:00
main "$@"
exit $?