Fix get_snapshot
This commit is contained in:
parent
9ac3a4937d
commit
f560e20812
79
get_snapshot
79
get_snapshot
|
@ -1,76 +1,15 @@
|
|||
#!/bin/bash
|
||||
# Copyright (c) 2017 Icinga Development Team <info@icinga.com>
|
||||
# Licensed as GPL-2.0+
|
||||
|
||||
set -e
|
||||
spectool -g redis.spec
|
||||
|
||||
while getopts ":p:U:b:" opt
|
||||
do
|
||||
case "$opt" in
|
||||
p)
|
||||
PROJECT="$OPTARG"
|
||||
;;
|
||||
U)
|
||||
UPSTREAM_GIT_URL="$OPTARG"
|
||||
;;
|
||||
b)
|
||||
UPSTREAM_GIT_BRANCH="$OPTARG"
|
||||
;;
|
||||
\?)
|
||||
echo "Unknown argument: $OPTARG" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
package_version="7.0.2"
|
||||
commit="bogus"
|
||||
tarball="redis-7.0.2.tar.gz"
|
||||
branch="bogus"
|
||||
|
||||
: ${PROJECT:=icingadb-redis}
|
||||
: ${UPSTREAM_GIT_URL:=https://github.com/redis/redis.git}
|
||||
: ${UPSTREAM_GIT_BRANCH:=unstable}
|
||||
|
||||
set -x
|
||||
|
||||
if [ -z "$UPSTREAM_GIT_NOREPO" ]; then
|
||||
if [ -d "${PROJECT}.git/" ]; then
|
||||
cd "${PROJECT}.git"
|
||||
if [ ! -d .git ]; then
|
||||
echo "This is not a GIT repository: $(pwd)" >&2
|
||||
exit 1
|
||||
fi
|
||||
if [ -z "$UPSTREAM_GIT_NOUPDATE" ]; then
|
||||
if [ "$(git config remote.origin.url)" != "${UPSTREAM_GIT_URL}" ]; then
|
||||
git remote set-url origin "${UPSTREAM_GIT_URL}"
|
||||
fi
|
||||
git fetch origin -p
|
||||
git checkout -f "${UPSTREAM_GIT_BRANCH}"
|
||||
git reset --hard "origin/${UPSTREAM_GIT_BRANCH}"
|
||||
fi
|
||||
git clean -fdx
|
||||
elif [ -z "$UPSTREAM_GIT_NOUPDATE" ]; then
|
||||
git clone -b "${UPSTREAM_GIT_BRANCH}" "${UPSTREAM_GIT_URL}" "${PROJECT}.git/"
|
||||
cd "${PROJECT}.git"
|
||||
else
|
||||
echo "Missing '${PROJECT}.git' directory!" >&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
git_version=$(git describe --tags "${UPSTREAM_GIT_BRANCH}")
|
||||
package_version=$(echo "$git_version" | sed -e 's/^v//' -e 's/-/+/' -e 's/-/./g')
|
||||
prefix="${PROJECT}_${package_version}"
|
||||
tarball="${prefix}.orig.tar"
|
||||
|
||||
git archive --format=tar --prefix="${prefix}/" -o "../${tarball}" "${UPSTREAM_GIT_BRANCH}"
|
||||
|
||||
cd ../
|
||||
|
||||
# pack tarball
|
||||
gzip -vf9 "${tarball}"
|
||||
sha256sum "${tarball}.gz"
|
||||
|
||||
# store package version for build scripts
|
||||
printf '%s\t%s\t%s\t%s' \
|
||||
"${package_version}" \
|
||||
"$(git rev-parse "${UPSTREAM_GIT_BRANCH}")" \
|
||||
"$(basename "${tarball}.gz")" \
|
||||
"${UPSTREAM_GIT_BRANCH}" \
|
||||
> "${PROJECT}.version"
|
||||
"${commit}" \
|
||||
"${tarball}" \
|
||||
"${branch}" \
|
||||
> "redis.version"
|
||||
|
|
Loading…
Reference in New Issue