52bd496006
Drop dependency on pystache since it nolong present in Fedora 32. To implement it, simplified debian package build process. It will be generate debian/ directory when building relocatable package, we just need to run debuild using the package. To generate debian/ directory this commit added debian_files_gen.py, it construct whole directory including control and changelog files from template files. Since we need to stop pystache, these template files swiched to string.Template class which is included python3 standard library. see: https://github.com/scylladb/scylla/pull/6313
59 lines
1.1 KiB
Bash
Executable File
59 lines
1.1 KiB
Bash
Executable File
#!/bin/bash -e
|
|
|
|
. /etc/os-release
|
|
|
|
print_usage() {
|
|
echo "build_reloc.sh --clean --nodeps"
|
|
echo " --clean clean build directory"
|
|
echo " --nodeps skip installing dependencies"
|
|
exit 1
|
|
}
|
|
|
|
CLEAN=
|
|
NODEPS=
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
"--clean")
|
|
CLEAN=yes
|
|
shift 1
|
|
;;
|
|
"--nodeps")
|
|
NODEPS=yes
|
|
shift 1
|
|
;;
|
|
*)
|
|
print_usage
|
|
;;
|
|
esac
|
|
done
|
|
|
|
is_redhat_variant() {
|
|
[ -f /etc/redhat-release ]
|
|
}
|
|
is_debian_variant() {
|
|
[ -f /etc/debian_version ]
|
|
}
|
|
|
|
|
|
if [ ! -e reloc/build_reloc.sh ]; then
|
|
echo "run build_reloc.sh in top of scylla dir"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$CLEAN" = "yes" ]; then
|
|
rm -rf build target
|
|
fi
|
|
|
|
if [ -f build/scylla-jmx-package.tar.gz ]; then
|
|
rm build/scylla-jmx-package.tar.gz
|
|
fi
|
|
|
|
if [ -z "$NODEPS" ]; then
|
|
sudo ./install-dependencies.sh
|
|
fi
|
|
|
|
mvn -B --file scylla-jmx-parent/pom.xml install
|
|
./SCYLLA-VERSION-GEN
|
|
./dist/debian/debian_files_gen.py
|
|
scripts/create-relocatable-package.py build/scylla-jmx-package.tar.gz
|