a27d9601f5
To automatically rename packages on enterprise release, added package name prefix as a variable on build_rpm.sh. Signed-off-by: Takuya ASADA <syuu@scylladb.com> Message-Id: <20180822072105.9420-2-syuu@scylladb.com>
90 lines
2.4 KiB
Bash
Executable File
90 lines
2.4 KiB
Bash
Executable File
#!/bin/bash -e
|
|
|
|
PRODUCT=scylla
|
|
|
|
. /etc/os-release
|
|
print_usage() {
|
|
echo "build_rpm.sh -target epel-7-x86_64 --configure-user"
|
|
echo " --target target distribution in mock cfg name"
|
|
exit 1
|
|
}
|
|
TARGET=
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
"--target")
|
|
TARGET=$2
|
|
shift 2
|
|
;;
|
|
*)
|
|
print_usage
|
|
;;
|
|
esac
|
|
done
|
|
|
|
is_redhat_variant() {
|
|
[ -f /etc/redhat-release ]
|
|
}
|
|
pkg_install() {
|
|
if is_redhat_variant; then
|
|
sudo yum install -y $1
|
|
else
|
|
echo "Requires to install following command: $1"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
|
|
if [ ! -e dist/redhat/build_rpm.sh ]; then
|
|
echo "run build_rpm.sh in top of scylla-jmx dir"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$(arch)" != "x86_64" ]; then
|
|
echo "Unsupported architecture: $(arch)"
|
|
exit 1
|
|
fi
|
|
if [ -z "$TARGET" ]; then
|
|
if [ "$ID" = "centos" -o "$ID" = "rhel" ] && [ "$VERSION_ID" = "7" ]; then
|
|
TARGET=./dist/redhat/mock/scylla-jmx-epel-7-x86_64.cfg
|
|
elif [ "$ID" = "fedora" ]; then
|
|
TARGET=$ID-$VERSION_ID-x86_64
|
|
else
|
|
echo "Please specify target"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if [[ "$TARGET" = epel-7-x86_64 ]]; then
|
|
TARGET=./dist/redhat/mock/scylla-jmx-epel-7-x86_64.cfg
|
|
fi
|
|
|
|
if [ ! -f /usr/bin/mock ]; then
|
|
pkg_install mock
|
|
fi
|
|
if [ ! -f /usr/bin/git ]; then
|
|
pkg_install git
|
|
fi
|
|
if [ ! -f /usr/bin/pystache ]; then
|
|
if is_redhat_variant; then
|
|
sudo yum install -y python2-pystache || sudo yum install -y pystache
|
|
elif is_debian_variant; then
|
|
sudo apt-get install -y python-pystache
|
|
fi
|
|
fi
|
|
|
|
VERSION=$(./SCYLLA-VERSION-GEN)
|
|
SCYLLA_VERSION=$(cat build/SCYLLA-VERSION-FILE)
|
|
SCYLLA_RELEASE=$(cat build/SCYLLA-RELEASE-FILE)
|
|
git archive --format=tar --prefix=$PRODUCT-jmx-$SCYLLA_VERSION/ HEAD -o build/$PRODUCT-jmx-$VERSION.tar
|
|
pystache dist/redhat/scylla-jmx.spec.mustache "{ \"version\": \"$SCYLLA_VERSION\", \"release\": \"$SCYLLA_RELEASE\", \"product\": \"$PRODUCT\", \"$PRODUCT\": true }" > build/scylla-jmx.spec
|
|
|
|
# mock generates files owned by root, fix this up
|
|
fix_ownership() {
|
|
sudo chown "$(id -u):$(id -g)" -R "$@"
|
|
}
|
|
|
|
sudo mock --buildsrpm --root=$TARGET --resultdir=`pwd`/build/srpms --spec=build/scylla-jmx.spec --sources=build/$PRODUCT-jmx-$VERSION.tar
|
|
fix_ownership build/srpms
|
|
sudo mock --rebuild --root=$TARGET --resultdir=`pwd`/build/rpms build/srpms/$PRODUCT-jmx-$VERSION*.src.rpm
|
|
fix_ownership build/rpms
|