#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: evolution-data-server #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: evolution-data-server" echo "Release: 0.2.2" echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi #Creating log directory mkdir -p /var/log/ulfs-packages/evolution-data-server/ #Saving start timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/start.time #Going to source directory... cd /sources #Checking dependances... #Checking icu... if [ ! -f /var/cache/ulfs-packages/icu ]; then echo "Dependance \"icu\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/icu/install -O - | bash if [ ! -f /var/cache/ulfs-packages/icu ]; then echo "Dependance \"icu\" is not installed. Exiting..." exit fi fi #Checking gobject-introspection... if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gobject-introspection/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then echo "Dependance \"gobject-introspection\" is not installed. Exiting..." exit fi fi #Checking vala... if [ ! -f /var/cache/ulfs-packages/vala ]; then echo "Dependance \"vala\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/vala/install -O - | bash if [ ! -f /var/cache/ulfs-packages/vala ]; then echo "Dependance \"vala\" is not installed. Exiting..." exit fi fi #Checking sqlite... if [ ! -f /var/cache/ulfs-packages/sqlite ]; then echo "Dependance \"sqlite\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/sqlite/install -O - | bash if [ ! -f /var/cache/ulfs-packages/sqlite ]; then echo "Dependance \"sqlite\" is not installed. Exiting..." exit fi fi #Checking gtk3... if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then echo "Dependance \"gtk3\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gtk3/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then echo "Dependance \"gtk3\" is not installed. Exiting..." exit fi fi #Checking libsecret... if [ ! -f /var/cache/ulfs-packages/libsecret ]; then echo "Dependance \"libsecret\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libsecret/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libsecret ]; then echo "Dependance \"libsecret\" is not installed. Exiting..." exit fi fi #Checking webkitgtk... if [ ! -f /var/cache/ulfs-packages/webkitgtk ]; then echo "Dependance \"webkitgtk\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/webkitgtk/install -O - | bash if [ ! -f /var/cache/ulfs-packages/webkitgtk ]; then echo "Dependance \"webkitgtk\" is not installed. Exiting..." exit fi fi #Checking gnome-online-accounts... if [ ! -f /var/cache/ulfs-packages/gnome-online-accounts ]; then echo "Dependance \"gnome-online-accounts\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gnome-online-accounts/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gnome-online-accounts ]; then echo "Dependance \"gnome-online-accounts\" is not installed. Exiting..." exit fi fi #Checking libgweather... if [ ! -f /var/cache/ulfs-packages/libgweather ]; then echo "Dependance \"libgweather\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libgweather/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libgweather ]; then echo "Dependance \"libgweather\" is not installed. Exiting..." exit fi fi #Checking libical... if [ ! -f /var/cache/ulfs-packages/libical ]; then echo "Dependance \"libical\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libical/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libical ]; then echo "Dependance \"libical\" is not installed. Exiting..." exit fi fi #Checking nss... if [ ! -f /var/cache/ulfs-packages/nss ]; then echo "Dependance \"nss\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/nss/install -O - | bash if [ ! -f /var/cache/ulfs-packages/nss ]; then echo "Dependance \"nss\" is not installed. Exiting..." exit fi fi #Checking libcanberra... if [ ! -f /var/cache/ulfs-packages/libcanberra ]; then echo "Dependance \"libcanberra\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libcanberra/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libcanberra ]; then echo "Dependance \"libcanberra\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/e/evolution-data-server-3.52.4.tar.xz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/e/evolution-data-server-3.52.4.tar.xz #Checking source package file existance if [ ! -f evolution-data-server-3.52.4.tar.xz ]; then echo "Error: Can't find evolution-data-server-3.52.4.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f evolution-data-server-3.52.4.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c evolution-data-server-3.52.4.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of evolution-data-server-3.52.4.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/cleanup.time rm -rfv /sources/evolution-data-server-3.52.4/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/unpack.time #Extracting tar source package archive with default parameters... tar -xf evolution-data-server-3.52.4.tar.xz #Checking package directory size after unpack... du -s evolution-data-server-3.52.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/evolution-data-server/unpack.size #Going to source package directory... cd evolution-data-server-3.52.4 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/configure.time #Sleep 1 second sleep 1 if [[ "$ULFS_PKG_DATERESET" == "YES" ]] then #Changing all files creation time (except build configuration files) in source directory to find them after installation find /sources/evolution-data-server-3.52.4 \! -path "*/configure*" \! -path "*/Makefile*" \! -path "*.make" \! -path "*.m4" \! -path "*.am" \! -path "*.mk" \! -path "*.stamp" \! -path "*gentpl.py" -exec touch -m {} + fi #Running configuration script... echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_configure.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS mkdir build && cd build && cmake -D CMAKE_INSTALL_PREFIX=/usr \\ -D SYSCONF_INSTALL_DIR=/etc \\ -D ENABLE_VALA_BINDINGS=ON \\ -D ENABLE_INSTALLED_TESTS=ON \\ -D WITH_OPENLDAP=OFF \\ -D WITH_KRB5=OFF \\ -D ENABLE_INTROSPECTION=ON \\ -D ENABLE_GTK_DOC=OFF \\ -D WITH_LIBDB=OFF \\ -W no-dev -G Ninja .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/evolution-data-server/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/build.time #Running build script... echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_build.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS cd build && ninja if [[ "\$ULFS_PKG_TEST" == "YES" ]] then ninja test fi EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/evolution-data-server/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/install.time #Running install script... cat > ulfs_install.sh << EOIS cd build && ninja install EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/evolution-data-server/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/evolution-data-server/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/evolution-data-server/finish.time #Checking package directory size after unpack... cd /sources du -s evolution-data-server-3.52.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/evolution-data-server/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/evolution-data-server/files.txt ]; then rm /var/log/ulfs-packages/evolution-data-server/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /sbin -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /usr -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /etc -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /opt -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /lib -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt find /var -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time \! -path "/var/log/ulfs-packages/evolution-data-server/*" >> /var/log/ulfs-packages/evolution-data-server/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time >> /var/log/ulfs-packages/evolution-data-server/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/evolution-data-server/configure.time \! -newer /var/log/ulfs-packages/evolution-data-server/finish.time \! -path "/var/log/ulfs-packages/evolution-data-server/*" >> /var/log/ulfs-packages/evolution-data-server/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/evolution-data-server else sudo touch /var/cache/ulfs-packages/evolution-data-server fi #Calculate delta size a=`cat /var/log/ulfs-packages/evolution-data-server/unpack.size` b=`cat /var/log/ulfs-packages/evolution-data-server/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/evolution-data-server/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/evolution-data-server/start.time` b=`cat /var/log/ulfs-packages/evolution-data-server/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/evolution-data-server/download.time` b=`cat /var/log/ulfs-packages/evolution-data-server/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/evolution-data-server/configure.time` b=`cat /var/log/ulfs-packages/evolution-data-server/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/evolution-data-server/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: evolution-data-server" echo "Release: 0.2.2" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script