2015-05-30 01:29:48 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
if [ ! -d .git ]; then
|
|
|
|
echo "no .git present. run this from the base dir of the git checkout."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
version=$1
|
2015-06-01 18:19:46 +00:00
|
|
|
[ -z "$version" ] && version=`git describe --match 'v*' | sed 's/^v//'`
|
2015-05-30 01:29:48 +00:00
|
|
|
outfile="ceph-$version"
|
|
|
|
|
2015-06-01 18:19:46 +00:00
|
|
|
echo "version $version"
|
|
|
|
|
2015-05-30 01:29:48 +00:00
|
|
|
# update submodules
|
|
|
|
echo "updating submodules..."
|
|
|
|
force=$(if git submodule usage 2>&1 | grep --quiet 'update.*--force'; then echo --force ; fi)
|
|
|
|
if ! git submodule sync || ! git submodule update $force --init --recursive; then
|
|
|
|
echo "Error: could not initialize submodule projects"
|
|
|
|
echo " Network connectivity might be required."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-08-31 17:00:04 +00:00
|
|
|
download_boost() {
|
|
|
|
boost_version=$1
|
2017-09-28 05:28:53 +00:00
|
|
|
shift
|
|
|
|
boost_md5=$1
|
|
|
|
shift
|
2017-08-31 17:00:04 +00:00
|
|
|
boost_version_underscore=$(echo $boost_version | sed 's/\./_/g')
|
|
|
|
boost_fname=boost_${boost_version_underscore}.tar.bz2
|
2017-09-28 05:28:53 +00:00
|
|
|
set +e
|
|
|
|
while true; do
|
|
|
|
url_base=$1
|
|
|
|
shift
|
|
|
|
if [ -z $url_base ]; then
|
|
|
|
echo "Error: failed to download boost."
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
url=$url_base/$boost_fname
|
|
|
|
wget -c --no-verbose -O $boost_fname $url
|
|
|
|
if [ $? != 0 -o ! -e $boost_fname ]; then
|
|
|
|
echo "Download of $url failed"
|
|
|
|
elif [ $(md5sum $boost_fname | awk '{print $1}') != $boost_md5 ]; then
|
|
|
|
echo "Error: failed to download boost: MD5 mismatch."
|
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
set -e
|
2017-11-24 05:56:02 +00:00
|
|
|
tar xjf $boost_fname -C src \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/doc" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/example" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/examples" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/meta" \
|
|
|
|
--exclude="$boost_version_underscore/libs/*/test" \
|
|
|
|
--exclude="$boost_version_underscore/tools/boostbook" \
|
|
|
|
--exclude="$boost_version_underscore/tools/quickbook" \
|
|
|
|
--exclude="$boost_version_underscore/tools/auto_index" \
|
|
|
|
--exclude='doc' --exclude='more' --exclude='status'
|
2017-08-31 17:00:04 +00:00
|
|
|
mv src/boost_${boost_version_underscore} src/boost
|
2017-11-24 02:27:19 +00:00
|
|
|
tar cf ${outfile}.boost.tar ${outfile}/src/boost
|
2017-08-31 17:00:04 +00:00
|
|
|
rm -rf src/boost
|
|
|
|
}
|
|
|
|
|
2015-05-30 01:29:48 +00:00
|
|
|
# clean out old cruft...
|
|
|
|
echo "cleanup..."
|
2016-06-10 20:47:32 +00:00
|
|
|
rm -f $outfile*
|
2015-05-30 01:29:48 +00:00
|
|
|
|
|
|
|
# build new tarball
|
|
|
|
echo "building tarball..."
|
2015-05-31 21:58:49 +00:00
|
|
|
bin/git-archive-all.sh --prefix ceph-$version/ \
|
|
|
|
--verbose \
|
|
|
|
--ignore corpus \
|
|
|
|
$outfile.tar
|
2016-06-10 20:47:32 +00:00
|
|
|
|
2016-06-28 15:40:37 +00:00
|
|
|
# populate files with version strings
|
2016-10-26 14:51:06 +00:00
|
|
|
echo "including src/.git_version, ceph.spec"
|
2016-10-27 16:39:20 +00:00
|
|
|
|
|
|
|
(git rev-parse HEAD ; git describe) 2> /dev/null > src/.git_version
|
2016-06-28 15:40:37 +00:00
|
|
|
|
2016-10-05 18:01:26 +00:00
|
|
|
# if the version has '-' in it, it has a 'release' part,
|
|
|
|
# like vX.Y.Z-N-g<shortsha1>. If it doesn't, it's just
|
|
|
|
# vX.Y.Z. Handle both, and translate - to . for rpm
|
|
|
|
# naming rules (the - separates version and release).
|
|
|
|
|
|
|
|
if expr index $version '-' > /dev/null; then
|
|
|
|
rpm_version=`echo $version | cut -d - -f 1-1`
|
|
|
|
rpm_release=`echo $version | cut -d - -f 2- | sed 's/-/./'`
|
|
|
|
else
|
|
|
|
rpm_version=$version
|
|
|
|
rpm_release=0
|
|
|
|
fi
|
2016-07-22 15:19:40 +00:00
|
|
|
|
2016-12-21 01:21:57 +00:00
|
|
|
for spec in ceph.spec.in alpine/APKBUILD.in; do
|
|
|
|
cat $spec |
|
|
|
|
sed "s/@VERSION@/$rpm_version/g" |
|
|
|
|
sed "s/@RPM_RELEASE@/$rpm_release/g" |
|
|
|
|
sed "s/@TARBALL_BASENAME@/ceph-$version/g" > `echo $spec | sed 's/.in$//'`
|
|
|
|
done
|
2016-06-10 20:47:32 +00:00
|
|
|
ln -s . $outfile
|
2016-12-21 01:21:57 +00:00
|
|
|
tar cvf $outfile.version.tar $outfile/src/.git_version $outfile/ceph.spec $outfile/alpine/APKBUILD
|
2017-11-24 02:27:19 +00:00
|
|
|
# NOTE: If you change this version number make sure the package is available
|
|
|
|
# at the three URLs referenced below (may involve uploading to download.ceph.com)
|
2017-12-18 18:03:35 +00:00
|
|
|
boost_version=1.66.0
|
|
|
|
download_boost $boost_version b2dfbd6c717be4a7bb2d88018eaccf75 \
|
2017-11-24 02:27:19 +00:00
|
|
|
https://dl.bintray.com/boostorg/release/$boost_version/source \
|
|
|
|
https://downloads.sourceforge.net/project/boost/boost/$boost_version \
|
|
|
|
https://download.ceph.com/qa
|
2017-08-31 17:00:04 +00:00
|
|
|
tar --concatenate -f $outfile.all.tar $outfile.version.tar
|
|
|
|
tar --concatenate -f $outfile.all.tar $outfile.boost.tar
|
|
|
|
tar --concatenate -f $outfile.all.tar $outfile.tar
|
|
|
|
mv $outfile.all.tar $outfile.tar
|
2016-06-10 20:47:32 +00:00
|
|
|
rm $outfile
|
|
|
|
rm -f $outfile.version.tar
|
2017-08-31 17:00:04 +00:00
|
|
|
rm -f $outfile.boost.tar
|
2016-06-10 20:47:32 +00:00
|
|
|
|
2015-06-01 18:20:03 +00:00
|
|
|
echo "compressing..."
|
2015-05-31 21:57:41 +00:00
|
|
|
bzip2 -9 $outfile.tar
|
2015-05-30 01:29:48 +00:00
|
|
|
|
|
|
|
echo "done."
|