#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.3 # Package: epiphany #=========================== # DB commit: f64c98382982c764c3ba140bfcbbc73d93096acd # APP commit: e09dc78145b10de9481608254eb2ac99efd0068b #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: epiphany" echo "Release: 0.2.3" downloadFile() { local filename=$1 echo "Downloading $filename ..." if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl -k -O $filename else wget --no-check-certificate -nc $filename fi } echo "loading environment settings(profile)" . /etc/profile 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/epiphany/ #Saving start timestamp date +%s > /var/log/ulfs-packages/epiphany/start.time #Going to source directory... cd /sources #Checking dependances... #Checking nettle... if [ ! -f /var/cache/ulfs-packages/nettle ]; then echo "Dependance \"nettle\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/nettle/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/nettle/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/nettle ]; then echo "Dependance \"nettle\" is not installed. Exiting..." exit fi fi #Checking iso-codes... if [ ! -f /var/cache/ulfs-packages/iso-codes ]; then echo "Dependance \"iso-codes\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/iso-codes/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/iso-codes/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/iso-codes ]; then echo "Dependance \"iso-codes\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/gcr4/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gcr4/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gcr4 ]; then echo "Dependance \"gcr4\" is not installed. Exiting..." exit fi fi #Checking json-glib... if [ ! -f /var/cache/ulfs-packages/json-glib ]; then echo "Dependance \"json-glib\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/json-glib/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/json-glib/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/json-glib ]; then echo "Dependance \"json-glib\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/gnome-desktop/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gnome-desktop/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gnome-desktop ]; then echo "Dependance \"gnome-desktop\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/webkitgtk/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/webkitgtk/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/webkitgtk ]; then echo "Dependance \"webkitgtk\" is not installed. Exiting..." exit fi fi #Checking libadwaita... if [ ! -f /var/cache/ulfs-packages/libadwaita ]; then echo "Dependance \"libadwaita\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/libadwaita/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/libadwaita/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libadwaita ]; then echo "Dependance \"libadwaita\" is not installed. Exiting..." exit fi fi #Checking libportal... if [ ! -f /var/cache/ulfs-packages/libportal ]; then echo "Dependance \"libportal\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/libportal/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/libportal/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libportal ]; then echo "Dependance \"libportal\" is not installed. Exiting..." exit fi fi #Checking gnome-keyring... if [ ! -f /var/cache/ulfs-packages/gnome-keyring ]; then echo "Dependance \"gnome-keyring\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/gnome-keyring/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gnome-keyring/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/gnome-keyring ]; then echo "Dependance \"gnome-keyring\" is not installed. Exiting..." exit fi fi #Checking appstream-glib... if [ ! -f /var/cache/ulfs-packages/appstream-glib ]; then echo "Dependance \"appstream-glib\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/appstream-glib/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/appstream-glib/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/appstream-glib ]; then echo "Dependance \"appstream-glib\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/epiphany/download.time #Downloading source package archive... downloadFile https://umvirt.com/linux/downloads/0.2.3/packages/e/epiphany-47.3.1.tar.xz.md5sum downloadFile https://umvirt.com/linux/downloads/0.2.3/packages/e/epiphany-47.3.1.tar.xz #Checking source package file existance if [ ! -f epiphany-47.3.1.tar.xz ]; then echo "Error: Can't find epiphany-47.3.1.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f epiphany-47.3.1.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c epiphany-47.3.1.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of epiphany-47.3.1.tar.xz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/epiphany/cleanup.time rm -rfv /sources/epiphany-47.3.1/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/epiphany/unpack.time #Extracting tar source package archive with default parameters... tar -xf epiphany-47.3.1.tar.xz #Checking package directory size after unpack... du -s epiphany-47.3.1 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/epiphany/unpack.size #Going to source package directory... cd epiphany-47.3.1 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/epiphany/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/epiphany-47.3.1 \! -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 "loading environment settings(profile)" . /etc/profile 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 .. EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/epiphany/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/epiphany/build.time #Running build script... echo "loading environment settings(profile)" . /etc/profile 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/epiphany/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/epiphany/install.time #Running install script... cat > ulfs_install.sh << EOIS cd build ninja install EOIS echo "/sbin/ldconfig" >> ulfs_install.sh USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/epiphany/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/epiphany/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/epiphany/finish.time #Checking package directory size after unpack... cd /sources du -s epiphany-47.3.1 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/epiphany/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/epiphany/files.txt ]; then rm /var/log/ulfs-packages/epiphany/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt find /sbin -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt find /usr -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt find /etc -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/epiphany/files.txt find /opt -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt find /lib -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt find /var -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time \! -path "/var/log/ulfs-packages/epiphany/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/epiphany/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/epiphany/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time >> /var/log/ulfs-packages/epiphany/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/epiphany/configure.time \! -newer /var/log/ulfs-packages/epiphany/finish.time \! -path "/var/log/ulfs-packages/epiphany/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/epiphany/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/epiphany else sudo touch /var/cache/ulfs-packages/epiphany fi #Calculate delta size a=`cat /var/log/ulfs-packages/epiphany/unpack.size` b=`cat /var/log/ulfs-packages/epiphany/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/epiphany/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/epiphany/start.time` b=`cat /var/log/ulfs-packages/epiphany/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/epiphany/download.time` b=`cat /var/log/ulfs-packages/epiphany/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/epiphany/configure.time` b=`cat /var/log/ulfs-packages/epiphany/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/epiphany/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: epiphany" 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