diff --git a/base/expat/expat.SMBuild b/base/expat/expat.SMBuild index f350f49..5ef1953 100755 --- a/base/expat/expat.SMBuild +++ b/base/expat/expat.SMBuild @@ -2,7 +2,7 @@ app=expat version=2.4.5 build=1sml homepage='https://libexpat.github.io/' -download='https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-2.2.9.tar.xz' +download="https://github.com/libexpat/libexpat/archive/refs/tags/R_2_4_5.tar.gz" desc="C library for parsing XML" requires="musl" diff --git a/bldpkg b/bldpkg index e09c877..3c38c6a 100755 --- a/bldpkg +++ b/bldpkg @@ -24,14 +24,12 @@ # -> Sanitise build variables, add restrictions such as length of app name variable which should # only be in lower case and less than 50 characters, validate whether a string defined in homepage # and download is indeed a valid url -# -> Discard extraneous second parenttmp directory check # -> Fix comments explaining how tmpfs is being validated # -> Add extra comments about how the build logic switches from tmpfs directory to non-tmpfs # directory if tmpfs directory validation fails # -> Uncomment entirety of the code where compilers are to be hard-validated and improve C code # in the test files and also add suitable bldpkg.conf switches for it # Add code to unset CFLAGS and CXXFLAGS when $arch is set to noarch -# Add [ERROR]s in post-install code # Remove redundant distcc and ccache checks when preparing summary # Begin subshell @@ -94,14 +92,14 @@ elif [ -n "$1" ] ; then if [ -f "$1" ] && [ "$extension" == "SMBuild" ] ; then source "$1" else - echo "Invalid file!" + echo "[ERROR] Invalid file!" exit 1 fi elif [ -z $1 ] && [ -f "$srcdirpath".SMBuild ]; then source "$srcdirpath".SMBuild else - echo "Please provide a build file as an argument" + echo "[ERROR] Please provide a build file as an argument" exit 1 fi @@ -109,7 +107,7 @@ fi # If any of the following variables are not set in the build file, abort. for buildvariables in app version build homepage desc requires ; do if [[ ! "${!buildvariables}" ]] ; then - echo "Variable \"${buildvariables}\" is not set. Please check your build file. Aborting!" + echo "[ERROR] Variable \"${buildvariables}\" is not set. Please check your build file. Aborting!" exit 1 fi done @@ -120,15 +118,15 @@ sleep 0.5 # Check if build() function exists in the build file if [[ ! "$(grep '^build()' "$srcdirpath".SMBuild)" ]] ; then - echo "build() function does not exist in your build file. Aborting!" + echo "[ERROR] build() function does not exist in your build file. Aborting!" exit 1 fi # Only verify source checksums if skipchecksum is not set in the build file if [ -z "$skipchecksum" ] ; then if [ -z "$sha512sums" ] ; then - echo "sha512 checksums don't exist in srcdirpath.SMBuild !" - echo "Please run bldpkg genchecksum" + echo "[ERROR] sha512 checksums don't exist in "$srcdirpath".SMBuild !" + echo "[ERROR] Please run 'bldpkg genchecksum' to add them" exit 1 fi @@ -149,7 +147,7 @@ fi if [ -f /etc/bldpkg.conf ] ; then source /etc/bldpkg.conf else - echo "/etc/bldpkg.conf not found! Aborting!" + echo "[ERROR] /etc/bldpkg.conf not found! Aborting!" exit 1 fi @@ -161,14 +159,14 @@ if [ "$checkdependencies" == "1" ] ; then depcount="$(find /share/doc -name $packagedep.SMBuild | wc -l)" # If count is 1, we are ok if [ "$depcount" == "1" ] ; then - echo "Found dependency $packagedep" + echo "[INFO] Found dependency $packagedep" # If count is 0, we exit, because we are in trouble elif [ "$depcount" == "0" ] ; then - echo "Did not find dependency $packagedep ! Aborting!" + echo "[ERROR] Did not find dependency $packagedep ! Aborting!" exit 1 # If count is greater than or equal to 2, we are in slightly less trouble elif [ "$depcount" -ge "2" ] ; then - echo "Warning! Found multiple versions of $packagedep !" + echo "[WARNING] Found multiple versions of $packagedep !" sleep 0.5 fi done @@ -189,29 +187,26 @@ inarray() { # Check if $parenttmp is set and is a directory if [ -z "$parenttmp" ] ; then - echo "parenttmp variable not set in /etc/bldpkg.conf. Aborting!" + echo "[ERROR] parenttmp variable not set in /etc/bldpkg.conf. Aborting!" exit 1 elif [ ! -d "$parenttmp" ] ; then - echo "parenttmp variable set to '"$tmpfsdir"' in /etc/bldpkg.conf is not a directory. Aborting!" + echo "[ERROR] parenttmp variable set to '"$tmpfsdir"' in /etc/bldpkg.conf is not a directory. Aborting!" exit 1 fi -# Create the $parenttmp directory. This directory is used for everything related to the build process outside #the source directory $srcdir -# First check if $parenttmp is a directory. If it does, check if it is writable. If not, create one. -if [ -d "$parenttmp" ] ; then - if ! touch "$parenttmp"/.smlinuxwritetest ; then - echo "$parenttmp is not writable. Aborting!" - exit 1 - fi - - # Discard the test file - rm -f "$parenttmp"/.smlinuxwritetest +# Attempt to write to the $parenttmp directory. This directory is used for everything related to the build process outside #the source directory $srcdir +if ! touch "$parenttmp"/.smlinuxwritetest ; then + echo "[ERROR] $parenttmp is not writable. Aborting!" + exit 1 fi +# Discard the test file +rm -f "$parenttmp"/.smlinuxwritetest + # Determine if $tmpfsdir is listed inside $protecteddirectories array if inarray "${parenttmp}" "${protecteddirectories[@]}" ; then echo "############ ATTENTION ############" - echo "parenttmp IS SET TO '"$tmpfsdir"' WHICH IS A PROTECTED DIRECTORY!! EXITING!!" + echo "[ERROR] parenttmp IS SET TO '"$tmpfsdir"' WHICH IS A PROTECTED DIRECTORY!! EXITING!!" exit 1 fi @@ -769,24 +764,23 @@ mkfinalpkg() { # Check if /lib64 was created inside $pkg if [ -d "$pkg/lib64" ] ; then - echo "$app has /lib64 directory. Musl does not support multilib." - echo "Please fix the build options and ensure the /lib64 is not created". - echo "Aborting." + echo "[ERROR] $app has /lib64 directory. Musl does not support multilib." + echo "[ERROR] Please fix the build options and ensure the /lib64 is not created. Aborting! " exit 1 fi # Check if /usr and /sbin were created inside $pkg for directory in usr sbin ; do if [ -d "$pkg/$directory" ] ; then - echo "$app has $directory directory which is a symlink to /bin on SMLinux." - echo "Please fix the build options and ensure $directory is not created. Aborting!" + echo "[ERROR] $app has $directory directory which is a symlink to /bin on SMLinux." + echo "[ERROR] Please fix the build options and ensure $directory is not created. Aborting!" exit 1 fi done if [ -d "$pkg/usr/var" ]; then - echo "$app has created an incorrect post-install /usr/var directory for storing logs and variable information." - echo "This stuff should go only inside /var. Kindly fix this. Aborting!" + echo "[ERROR] $app has created an incorrect post-install /usr/var directory for storing logs and variable information." + echo "[ERROR] This stuff should go only inside /var. Kindly fix this. Aborting!" exit 1 fi diff --git a/mksm b/mksm index 0266d0b..75033aa 100755 --- a/mksm +++ b/mksm @@ -1,31 +1,13 @@ #!/bin/bash # Part of SMLinux distribution -# http://git.pktsurf.in/smlinux - # Package build file generator - -# Copyright (c) 2021-22 PktSurf - -# Permission to use, copy, modify, and distribute this software for any -# purpose with or without fee is hereby granted, provided that the above -# copyright notice and this permission notice appear in all copies. - -# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -# Exit on any error set -e # Date format -FILEDATE="$(date +%Y%m%d%H%M%S)" +filedate="$(date +%Y%m%d%H%M%S)" # Archive files -ARCHIVEFILES=( *.tar.* *.zip *.t?z ) +archivefiles=( *.tar.* *.zip *.t?z ) # Function to generate usage options mkusage() { @@ -64,36 +46,36 @@ fi # Explanation same as above, but this time, if first argument is set then -# set use it as a value for $APPNAME variable +# set use it as a value for $appname variable if [ -n "$1" ] ; then if [ "$1" = "-h" ] || [ "$1" = "-help" ] || [ "$1" = "--help" ] ; then mkusage exit 0 else - APPNAME="$1" + appname="$1" fi fi # If/else to check if second argument is set. If it is, set it as a value -# for $VERSION variable. If it isn't, throw an error and exit. +# for $version variable. If it isn't, throw an error and exit. if [ -n "$2" ] ; then - VERSION="$2" + version="$2" else echo "Version not defined. Kindly define it. Exiting!" exit 1 fi # If/else to check if third argument is set. If it is, set it as a value for -# $BUILDSYS variable. If it isn't, throw an error and exit. +# $buildsys variable. If it isn't, throw an error and exit. if [ -n "$3" ] ; then if [ "$3" = "make" ] ; then - BUILDSYS="make" + buildsys="make" elif [ "$3" = "autoconf" ] ; then - BUILDSYS="autoconf" + buildsys="autoconf" elif [ "$3" = "cmake" ] ; then - BUILDSYS="cmake" + buildsys="cmake" elif [ "$3" = "meson" ] ; then - BUILDSYS="meson" + buildsys="meson" else echo "ERROR: Invalid build system. Aborting!" exit 1 @@ -103,78 +85,80 @@ else exit 1 fi -# If $APPNAME, $VERSION and $BUILDSYS variables are set, generate a build file. -if [ -n "$APPNAME" ] && [ -n "$VERSION" ] && [ -n "$BUILDSYS" ] ; then - echo "Generating build file for application '"$APPNAME"' version '"$VERSION"' which uses build system '"$BUILDSYS"'..." +# If $appname, $version and $buildsys variables are set, generate a build file. +if [ -n "$appname" ] && [ -n "$version" ] && [ -n "$buildsys" ] ; then + echo "Generating build file for application '"$appname"' version '"$version"' which uses build system '"$buildsys"'..." echo "" echo "Current directory is $PWD" echo "" # Copy the sample build file based on the build system argument passed - if [ -f "$APPNAME.SMBuild" ] ; then - echo "Found an existing $APPNAME.SMBuild in the current directory." + if [ -f "$appname.SMBuild" ] ; then + echo "Found an existing $appname.SMBuild in the current directory." echo "Backing it up inside a directory 'old' and creating a new one here." mkdir -p old - mv "$APPNAME.SMBuild" old/"$APPNAME.SMBuild.$FILEDATE" + mv "$appname.SMBuild" old/"$appname.SMBuild.$filedate" fi # This one came in handy: # https://unix.stackexchange.com/questions/505949/expanding-only-certain-variables-inside-a-heredoc # Expand variables in this heredoc - cat << EOF > $APPNAME.SMBuild -APP=$APPNAME -VERSION=$VERSION -BUILD=1sml -HOMEPAGE="" -DOWNLOAD="" -DESC="" -REQUIRES="musl" + cat << EOF > $appname.SMBuild +app=$appname +version=$version +build=1sml +homepage="" +download="" +desc="" +requires="musl" EOF # Single-quoted 'EOF' prevents variables from being expanded in this heredoc - cat << 'EOF' >> $APPNAME.SMBuild + cat << 'EOF' >> $appname.SMBuild build() { mkandenterbuilddir - rm -rf $APP-$VERSION + rm -rf $app-$version - tar xf $SRCDIR/$APP-$VERSION.tar.?z* - cd $APP-$VERSION + tar xf $srcdir/$app-$version.tar.?z* + cd $app-$version fixbuilddirpermissions EOF # Again prevent variables from being expanded in this heredoc gen_autoconf() { - cat << 'EOF' >> $APPNAME.SMBuild + cat << 'EOF' >> $appname.SMBuild ./configure \ --prefix="" \ --sysconfdir=/etc make - make install DESTDIR=$PKG + make install DESTDIR=$pkg - cp LICENSE $PKGDOCS/ + cp LICENSE $pkgdocs/ mkfinalpkg } + EOF } gen_make() { - cat << 'EOF' >> $APPNAME.SMBuild + cat << 'EOF' >> $appname.SMBuild make - make install DESTDIR=$PKG + make install DESTDIR=$pkg - cp LICENSE $PKGDOCS/ + cp LICENSE $pkgdocs/ mkfinalpkg } + EOF } # And again gen_cmake() { - cat << 'EOF' >> $APPNAME.SMBuild + cat << 'EOF' >> $appname.SMBuild mkdir smbuild && cd smbuild cmake .. \ -DCMAKE_INSTALL_PREFIX="/" \ @@ -183,40 +167,42 @@ EOF -Wno-dev make - make install DESTDIR=$PKG + make install DESTDIR=$pkg - cp ../LICENSE $PKGDOCS/ + cp ../LICENSE $pkgdocs/ mkfinalpkg } + EOF } # Again :) gen_meson() { - cat << 'EOF' >> $APPNAME.SMBuild + cat << 'EOF' >> $appname.SMBuild mkdir smbuild && cd smbuild meson .. \ --prefix="/" ninja - DESTDIR="$PKG" ninja install + DESTDIR="$pkg" ninja install - cp ../LICENSE $PKGDOCS/ + cp ../LICENSE $pkgdocs/ mkfinalpkg } + EOF } - case "$BUILDSYS" in + case "$buildsys" in autoconf) gen_autoconf ;; make) gen_make ;; cmake) gen_cmake ;; meson) gen_meson ;; esac - chmod +x $APPNAME.SMBuild + chmod +x $appname.SMBuild echo "...done" echo "" @@ -224,21 +210,21 @@ fi # Generate sha512sums in the build file - echo "Adding new SHA512SUMS in $APPNAME.SMBuild..." - printf '\n' >> "$APPNAME".SMBuild - printf 'SHA512SUMS="\n' >> "$APPNAME".SMBuild + echo "Adding new sha512sums in $appname.SMBuild..." + printf '\n' >> "$appname".SMBuild + printf 'sha512sums="\n' >> "$appname".SMBuild # File types - FILES=( *.tar.* *.zip *.t?z *.patch *.diff *.c *.h ) + files=( *.tar.* *.zip *.t?z *.patch *.diff *.c *.h ) # Checksum digest to be used along with arguments - CHECKSUMBINARY="sha512sum" + checksumbinary="sha512sum" - for FILE in ${FILES[@]} ; do - if [ -f "$FILE" ] ; then - $CHECKSUMBINARY $FILE >> "$APPNAME".SMBuild + for file in ${files[@]} ; do + if [ -f "$file" ] ; then + $checksumbinary $file >> "$appname".SMBuild fi done - printf '"' >> "$APPNAME".SMBuild + printf '"' >> "$appname".SMBuild exit 0