2019-02-05 15:46:52 +00:00
|
|
|
#!/bin/bash -e
|
2015-05-30 01:29:48 +00:00
|
|
|
|
|
|
|
if [ ! -d .git ]; then
|
|
|
|
echo "no .git present. run this from the base dir of the git checkout."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
version=$1
|
2019-02-05 15:46:52 +00:00
|
|
|
[ -z "$version" ] && version=$(git describe --long --match 'v*' | sed 's/^v//')
|
|
|
|
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
|
2015-05-30 01:29:48 +00:00
|
|
|
|
2019-02-05 15:46:52 +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
|
|
|
|
|
2020-11-09 03:58:10 +00:00
|
|
|
download_from() {
|
|
|
|
fname=$1
|
2017-09-28 05:28:53 +00:00
|
|
|
shift
|
2020-11-09 03:58:10 +00:00
|
|
|
sha256=$1
|
2017-09-28 05:28:53 +00:00
|
|
|
shift
|
|
|
|
set +e
|
|
|
|
while true; do
|
|
|
|
url_base=$1
|
|
|
|
shift
|
|
|
|
if [ -z $url_base ]; then
|
2020-11-09 03:58:10 +00:00
|
|
|
echo "Error: failed to download $name."
|
2017-09-28 05:28:53 +00:00
|
|
|
exit
|
|
|
|
fi
|
2020-11-09 03:58:10 +00:00
|
|
|
url=$url_base/$fname
|
|
|
|
wget -c --no-verbose -O $fname $url
|
|
|
|
if [ $? != 0 -o ! -e $fname ]; then
|
2017-09-28 05:28:53 +00:00
|
|
|
echo "Download of $url failed"
|
2020-11-09 03:58:10 +00:00
|
|
|
elif [ $(sha256sum $fname | awk '{print $1}') != $sha256 ]; then
|
|
|
|
echo "Error: failed to download $name: SHA256 mismatch."
|
2017-09-28 05:28:53 +00:00
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
set -e
|
2020-11-09 03:58:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
download_boost() {
|
|
|
|
boost_version=$1
|
|
|
|
shift
|
|
|
|
boost_sha256=$1
|
|
|
|
shift
|
|
|
|
boost_version_underscore=$(echo $boost_version | sed 's/\./_/g')
|
|
|
|
boost_fname=boost_${boost_version_underscore}.tar.bz2
|
|
|
|
download_from $boost_fname $boost_sha256 $*
|
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
|
|
|
|
}
|
|
|
|
|
2020-11-09 04:25:24 +00:00
|
|
|
download_liburing() {
|
|
|
|
liburing_version=$1
|
|
|
|
shift
|
|
|
|
liburing_sha256=$1
|
|
|
|
shift
|
|
|
|
liburing_fname=liburing-${liburing_version}.tar.gz
|
|
|
|
download_from $liburing_fname $liburing_sha256 $*
|
|
|
|
tar xzf $liburing_fname -C src \
|
|
|
|
--exclude=debian \
|
|
|
|
--exclude=examples \
|
|
|
|
--exclude=man \
|
|
|
|
--exclude=test
|
|
|
|
# normalize the names, liburing-0.7 if downloaded from git.kernel.dk,
|
|
|
|
# liburing-liburing-0.7 from github.com
|
|
|
|
mv src/liburing-* src/liburing
|
|
|
|
tar cf ${outfile}.liburing.tar ${outfile}/src/liburing
|
|
|
|
rm -rf src/liburing
|
|
|
|
}
|
|
|
|
|
2018-02-13 14:03:05 +00:00
|
|
|
build_dashboard_frontend() {
|
|
|
|
CURR_DIR=`pwd`
|
2018-03-14 11:11:55 +00:00
|
|
|
TEMP_DIR=`mktemp -d`
|
2019-10-01 13:55:31 +00:00
|
|
|
|
2019-12-27 09:55:21 +00:00
|
|
|
$CURR_DIR/src/tools/setup-virtualenv.sh $TEMP_DIR
|
2018-03-14 11:11:55 +00:00
|
|
|
$TEMP_DIR/bin/pip install nodeenv
|
2020-09-28 23:25:48 +00:00
|
|
|
$TEMP_DIR/bin/nodeenv -p --node=12.18.2
|
2018-03-15 08:50:22 +00:00
|
|
|
cd src/pybind/mgr/dashboard/frontend
|
2019-10-01 13:55:31 +00:00
|
|
|
|
2018-03-14 11:11:55 +00:00
|
|
|
. $TEMP_DIR/bin/activate
|
2020-10-27 00:37:15 +00:00
|
|
|
NG_CLI_ANALYTICS=false timeout 1h npm ci
|
2020-04-26 14:16:58 +00:00
|
|
|
echo "Building ceph-dashboard frontend with build:localize script";
|
|
|
|
# we need to use "--" because so that "--prod" survives accross all
|
2019-10-01 13:55:31 +00:00
|
|
|
# scripts redirections inside package.json
|
2020-04-26 14:16:58 +00:00
|
|
|
npm run build:localize -- --prod
|
2018-03-14 11:11:55 +00:00
|
|
|
deactivate
|
2018-02-13 14:03:05 +00:00
|
|
|
cd $CURR_DIR
|
2018-03-14 11:11:55 +00:00
|
|
|
rm -rf $TEMP_DIR
|
2018-03-15 08:50:22 +00:00
|
|
|
tar cf dashboard_frontend.tar $outfile/src/pybind/mgr/dashboard/frontend/dist
|
2018-02-13 14:03:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 12:00:41 +00:00
|
|
|
generate_rook_ceph_client() {
|
|
|
|
$outfile/src/pybind/mgr/rook/generate_rook_ceph_client.sh
|
|
|
|
tar cf rook_ceph_client.tar $outfile/src/pybind/mgr/rook/rook_client/*.py
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2019-02-05 15:46:52 +00:00
|
|
|
(git rev-parse HEAD ; echo $version) 2> /dev/null > src/.git_version
|
2016-07-22 15:19:40 +00:00
|
|
|
|
2020-08-08 08:57:37 +00:00
|
|
|
for spec in ceph.spec.in; do
|
2016-12-21 01:21:57 +00:00
|
|
|
cat $spec |
|
2019-07-24 16:57:27 +00:00
|
|
|
sed "s/@PROJECT_VERSION@/$rpm_version/g" |
|
2016-12-21 01:21:57 +00:00
|
|
|
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
|
2020-08-08 08:57:37 +00:00
|
|
|
tar cvf $outfile.version.tar $outfile/src/.git_version $outfile/ceph.spec
|
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)
|
2020-06-26 14:41:39 +00:00
|
|
|
boost_version=1.73.0
|
|
|
|
download_boost $boost_version 4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402 \
|
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
|
2020-11-09 04:25:24 +00:00
|
|
|
download_liburing 0.7 8e2842cfe947f3a443af301bdd6d034455536c38a455c7a700d0c1ad165a7543 \
|
|
|
|
https://github.com/axboe/liburing/archive \
|
|
|
|
https://git.kernel.dk/cgit/liburing/snapshot
|
2018-02-13 14:03:05 +00:00
|
|
|
build_dashboard_frontend
|
2020-01-13 12:00:41 +00:00
|
|
|
generate_rook_ceph_client
|
2020-11-09 04:31:34 +00:00
|
|
|
for tarball in $outfile.version \
|
|
|
|
$outfile.boost \
|
|
|
|
$outfile.liburing \
|
|
|
|
dashboard_frontend \
|
|
|
|
rook_ceph_client \
|
|
|
|
$outfile; do
|
|
|
|
tar --concatenate -f $outfile.all.tar $tarball.tar
|
|
|
|
rm $tarball.tar
|
|
|
|
done
|
2017-08-31 17:00:04 +00:00
|
|
|
mv $outfile.all.tar $outfile.tar
|
2016-06-10 20:47:32 +00:00
|
|
|
rm $outfile
|
|
|
|
|
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."
|