#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: python3-matplotlib #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: python3-matplotlib" echo "Release: 0.1" 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/python3-matplotlib/ #Saving start timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/start.time #Going to source directory... cd /sources #Checking dependances... #Checking freetype... if [ ! -f /var/cache/ulfs-packages/freetype ]; then echo "Dependance \"freetype\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/freetype/install -O - | bash if [ ! -f /var/cache/ulfs-packages/freetype ]; then echo "Dependance \"freetype\" is not installed. Exiting..." exit fi fi #Checking setuptools... if [ ! -f /var/cache/ulfs-packages/setuptools ]; then echo "Dependance \"setuptools\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/setuptools/install -O - | bash if [ ! -f /var/cache/ulfs-packages/setuptools ]; then echo "Dependance \"setuptools\" is not installed. Exiting..." exit fi fi #Checking libpng... if [ ! -f /var/cache/ulfs-packages/libpng ]; then echo "Dependance \"libpng\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/libpng/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libpng ]; then echo "Dependance \"libpng\" is not installed. Exiting..." exit fi fi #Checking python3-numpy... if [ ! -f /var/cache/ulfs-packages/python3-numpy ]; then echo "Dependance \"python3-numpy\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-numpy/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-numpy ]; then echo "Dependance \"python3-numpy\" is not installed. Exiting..." exit fi fi #Checking python3-cycler... if [ ! -f /var/cache/ulfs-packages/python3-cycler ]; then echo "Dependance \"python3-cycler\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-cycler/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-cycler ]; then echo "Dependance \"python3-cycler\" is not installed. Exiting..." exit fi fi #Checking python3-dateutil... if [ ! -f /var/cache/ulfs-packages/python3-dateutil ]; then echo "Dependance \"python3-dateutil\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-dateutil/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-dateutil ]; then echo "Dependance \"python3-dateutil\" is not installed. Exiting..." exit fi fi #Checking python3-kiwi... if [ ! -f /var/cache/ulfs-packages/python3-kiwi ]; then echo "Dependance \"python3-kiwi\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-kiwi/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-kiwi ]; then echo "Dependance \"python3-kiwi\" is not installed. Exiting..." exit fi fi #Checking python3-pyparsing... if [ ! -f /var/cache/ulfs-packages/python3-pyparsing ]; then echo "Dependance \"python3-pyparsing\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-pyparsing/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-pyparsing ]; then echo "Dependance \"python3-pyparsing\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/download.time #Downloading source package archive... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/python-modules/matplotlib-3.1.1.tar.gz.md5sum wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/python-modules/matplotlib-3.1.1.tar.gz #Checking source package file existance if [ ! -f matplotlib-3.1.1.tar.gz ]; then echo "Error: Can't find matplotlib-3.1.1.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f matplotlib-3.1.1.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c matplotlib-3.1.1.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of matplotlib-3.1.1.tar.gz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/cleanup.time rm -rfv /sources/matplotlib-3.1.1/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/unpack.time #Extracting tar source package archive with default parameters... tar -xf matplotlib-3.1.1.tar.gz #Checking package directory size after unpack... du -s matplotlib-3.1.1 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/python3-matplotlib/unpack.size #Going to source package directory... cd matplotlib-3.1.1 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/configure.time #Sleep 1 second sleep 1 #Running configuration script... # #Saving build timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/build.time #Running build script... python3 setup.py clean && python3 setup.py build #Saving install timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/install.time #Running install script... cat > ulfs_install.sh << EOIS python3 setup.py install --optimize=1 EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/python3-matplotlib/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/python3-matplotlib/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/python3-matplotlib/finish.time #Checking package directory size after unpack... cd /sources du -s matplotlib-3.1.1 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/python3-matplotlib/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/python3-matplotlib/files.txt ]; then rm /var/log/ulfs-packages/python3-matplotlib/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /sbin -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /usr -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /etc -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /opt -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /lib -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt find /var -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time \! -path "/var/log/ulfs-packages/python3-matplotlib/*" >> /var/log/ulfs-packages/python3-matplotlib/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time >> /var/log/ulfs-packages/python3-matplotlib/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/python3-matplotlib/configure.time \! -newer /var/log/ulfs-packages/python3-matplotlib/finish.time \! -path "/var/log/ulfs-packages/python3-matplotlib/*" >> /var/log/ulfs-packages/python3-matplotlib/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/python3-matplotlib else sudo touch /var/cache/ulfs-packages/python3-matplotlib fi #Calculate delta size a=`cat /var/log/ulfs-packages/python3-matplotlib/unpack.size` b=`cat /var/log/ulfs-packages/python3-matplotlib/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/python3-matplotlib/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/python3-matplotlib/start.time` b=`cat /var/log/ulfs-packages/python3-matplotlib/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/python3-matplotlib/download.time` b=`cat /var/log/ulfs-packages/python3-matplotlib/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/python3-matplotlib/configure.time` b=`cat /var/log/ulfs-packages/python3-matplotlib/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/python3-matplotlib/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: python3-matplotlib" echo "Release: 0.1" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script