#!/bin/bash
#===========================
# UMVIRT LINUX FROM SCRATCH 
#===========================
# Compilation script.
# Network mode. 
#===========================
# Release: 0.2.3
# Package: gnome-shell
#===========================
# DB commit: be1eaeb9e1d7ba0146566f8c9226f3f3cf6c6aa8
# APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f
#===========================

echo "ULFS Package installation start"
echo "==============================="
echo "Package: gnome-shell" 
echo "Release: 0.2.3" 

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/gnome-shell/
#Saving start timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/start.time
#Going to source directory...
cd /sources
#Checking dependances...
      #Checking startup-notification...
      if [ ! -f /var/cache/ulfs-packages/startup-notification ]; then
           echo "Dependance \"startup-notification\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/startup-notification/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/startup-notification ]; then
	             echo "Dependance \"startup-notification\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking polkit...
      if [ ! -f /var/cache/ulfs-packages/polkit ]; then
           echo "Dependance \"polkit\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/polkit/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/polkit ]; then
	             echo "Dependance \"polkit\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking desktop-file-utils...
      if [ ! -f /var/cache/ulfs-packages/desktop-file-utils ]; then
           echo "Dependance \"desktop-file-utils\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/desktop-file-utils/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/desktop-file-utils ]; then
	             echo "Dependance \"desktop-file-utils\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gcr4...
      if [ ! -f /var/cache/ulfs-packages/gcr4 ]; then
           echo "Dependance \"gcr4\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gcr4/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gcr4 ]; then
	             echo "Dependance \"gcr4\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking !gjs...
      if [ ! -f /var/cache/ulfs-packages/!gjs ]; then
           echo "Dependance \"!gjs\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/!gjs/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/!gjs ]; then
	             echo "Dependance \"!gjs\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gnome-autoar...
      if [ ! -f /var/cache/ulfs-packages/gnome-autoar ]; then
           echo "Dependance \"gnome-autoar\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gnome-autoar/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gnome-autoar ]; then
	             echo "Dependance \"gnome-autoar\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gnome-desktop...
      if [ ! -f /var/cache/ulfs-packages/gnome-desktop ]; then
           echo "Dependance \"gnome-desktop\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gnome-desktop/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gnome-desktop ]; then
	             echo "Dependance \"gnome-desktop\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gst-plugins-base...
      if [ ! -f /var/cache/ulfs-packages/gst-plugins-base ]; then
           echo "Dependance \"gst-plugins-base\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gst-plugins-base/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gst-plugins-base ]; then
	             echo "Dependance \"gst-plugins-base\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking evolution-data-server...
      if [ ! -f /var/cache/ulfs-packages/evolution-data-server ]; then
           echo "Dependance \"evolution-data-server\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/evolution-data-server/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/evolution-data-server ]; then
	             echo "Dependance \"evolution-data-server\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gnome-bluetooth...
      if [ ! -f /var/cache/ulfs-packages/gnome-bluetooth ]; then
           echo "Dependance \"gnome-bluetooth\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gnome-bluetooth/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gnome-bluetooth ]; then
	             echo "Dependance \"gnome-bluetooth\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking NetworkManager...
      if [ ! -f /var/cache/ulfs-packages/NetworkManager ]; then
           echo "Dependance \"NetworkManager\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/NetworkManager/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/NetworkManager ]; then
	             echo "Dependance \"NetworkManager\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking ibus...
      if [ ! -f /var/cache/ulfs-packages/ibus ]; then
           echo "Dependance \"ibus\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/ibus/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/ibus ]; then
	             echo "Dependance \"ibus\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking mutter...
      if [ ! -f /var/cache/ulfs-packages/mutter ]; then
           echo "Dependance \"mutter\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/mutter/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/mutter ]; then
	             echo "Dependance \"mutter\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking sassc...
      if [ ! -f /var/cache/ulfs-packages/sassc ]; then
           echo "Dependance \"sassc\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/sassc/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/sassc ]; then
	             echo "Dependance \"sassc\" is not installed. Exiting..."
               exit
           fi
      fi
#Saving downloading timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/download.time
#Downloading source package archive...
wget --no-check-certificate -nc .md5sum
wget --no-check-certificate -nc 
#Checking source package file existance
if [ ! -f gnome-shell-46.4.tar.xz ]; then
echo "Error: Can't find gnome-shell-46.4.tar.xz. Exiting!"
exit
fi
#Checking source package file checksum
if [ -f gnome-shell-46.4.tar.xz.md5sum ]; then
    MD5=`LANG=C md5sum -c gnome-shell-46.4.tar.xz.md5sum | grep OK`
    if [ "$MD5" == "" ] ; then
    echo "Error: Checksum of gnome-shell-46.4.tar.xz is wrong. Exiting!"
    exit
    fi
fi
    #Saving cleanup timestamp
    date +%s > /var/log/ulfs-packages/gnome-shell/cleanup.time
rm -rfv /sources/gnome-shell-46.4/
#Saving extracting timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/unpack.time
#Extracting tar source package archive with default parameters...
tar -xf gnome-shell-46.4.tar.xz
#Checking package directory size after unpack...
du -s gnome-shell-46.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gnome-shell/unpack.size 
#Going to source package directory...
cd gnome-shell-46.4
#Saving configuration timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/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/gnome-shell-46.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 &&

meson setup --prefix=/usr       \\
            --buildtype=release \\
            -Dtests=false       \\
            ..     
EOIS
cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/gnome-shell/configure.log 
#Saving build timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/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

EOIS
cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/gnome-shell/build.log 
#Saving install timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/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/gnome-shell/install.log 
else
cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/gnome-shell/install.log 
fi
#Saving finish timestamp
date +%s > /var/log/ulfs-packages/gnome-shell/finish.time
#Checking package directory size after unpack...
cd /sources 
du -s gnome-shell-46.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gnome-shell/install.size 
echo "ULFS package installation completed."
#Producing files list
echo "Looking for installed files..."
if [  -f /var/log/ulfs-packages/gnome-shell/files.txt ]; then
rm /var/log/ulfs-packages/gnome-shell/files.txt
fi
USER=`whoami`
if [ "$USER" == "root" ] ; then 
find /bin -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /sbin -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /usr -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /etc -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /opt -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /lib -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /lib64 -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
find /var -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time \! -path "/var/log/ulfs-packages/gnome-shell/*" >> /var/log/ulfs-packages/gnome-shell/files.txt
else
sudo find /bin -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /sbin -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /usr -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /etc -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /opt -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /lib -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /lib64 -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time >> /var/log/ulfs-packages/gnome-shell/files.txt
sudo find /var -type f -newer /var/log/ulfs-packages/gnome-shell/configure.time \! -newer /var/log/ulfs-packages/gnome-shell/finish.time \!  -path "/var/log/ulfs-packages/gnome-shell/*" >> /var/log/ulfs-packages/gnome-shell/files.txt
fi
#Marking package as installed...
mkdir -p /var/cache/ulfs-packages
USER=`whoami`
if [ "$USER" == "root" ] ; then 
touch /var/cache/ulfs-packages/gnome-shell
else
sudo touch /var/cache/ulfs-packages/gnome-shell
fi
#Calculate delta size
a=`cat /var/log/ulfs-packages/gnome-shell/unpack.size`
b=`cat /var/log/ulfs-packages/gnome-shell/install.size`
c=$(($b-$a))
echo $c > /var/log/ulfs-packages/gnome-shell/delta.size 
#Calculate prepare time
a=`cat /var/log/ulfs-packages/gnome-shell/start.time`
b=`cat /var/log/ulfs-packages/gnome-shell/configure.time`
dp=$(($b-$a))
#Calculate download time
a=`cat /var/log/ulfs-packages/gnome-shell/download.time`
b=`cat /var/log/ulfs-packages/gnome-shell/unpack.time`
dd=$(($b-$a))
#Calculate delta time
a=`cat /var/log/ulfs-packages/gnome-shell/configure.time`
b=`cat /var/log/ulfs-packages/gnome-shell/finish.time`
db=$(($b-$a))
echo $db > /var/log/ulfs-packages/gnome-shell/delta.time 
#Report
echo ""
echo "ULFS Package installation report"
echo "================================"
echo "Package: gnome-shell" 
echo "Release: 0.2.3" 
echo "Build size: $c" 
echo "Prepare time: $dp sec." 
echo "Download time: $dd sec." 
echo "Build time: $db sec." 

#End of script