diff --git a/base/ssb.base.SMBuild b/base/ssb.base.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/base/ssb.base.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/extra/ssb.extra.SMBuild b/extra/ssb.extra.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/extra/ssb.extra.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/gtk/ssb.gtk.SMBuild b/gtk/ssb.gtk.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/gtk/ssb.gtk.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/heavybuilds/ssb.heavybuilds.SMBuild b/heavybuilds/ssb.heavybuilds.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/heavybuilds/ssb.heavybuilds.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/net/ssb.net.SMBuild b/net/ssb.net.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/net/ssb.net.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/ssb.SMBuild b/ssb.SMBuild deleted file mode 100755 index 38f1e0c..0000000 --- a/ssb.SMBuild +++ /dev/null @@ -1,140 +0,0 @@ -#!/bin/bash -# Version: 1.3 GSB SMBuild. -# Copyright (c) 2007 Darren 'Tadgy' Austin -# Copyright (c) 2019-2022 PktSurf -# -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution - -# The default list of GSB sections, in the order they should be processed. -sections="${sections:- base xorg gtk extra net xfce }" - -# Generate HTML and TXT reports. Use 1 to enable and 0 to disable. -generatereports=0 - -# Usage. -usage() { - cat << EOF -Usage: ${0##*/} [options] - -Options: - -help Show this help screen. - - -list For each of the GSB sections, list the packages which - will be built. When the SECTIONS environment variable - is set (see README) only those sections are displayed. -EOF -} - -export -f usage - -list_packages() { - echo "The sections and packages below (listed in processing order) will be built." - for section in $sections - do - echo - echo " $section:" - echo "$( $section/ssb.$section.SMBuild --list | cut -d$'\n' -f2- )" - done -} - -runtime() { - # $1 = Number of seconds to convert to readable text - - local D=$(( $1 / 86400 )) - local H=$(( ($1 - ($D * 86400)) / 3600 )) - local M=$(( ($1 - ($D * 86400) - ($H * 3600)) / 60 )) - local S=$(( $1 - ($D * 86400) - ($H * 3600) - ($M * 60) )) - - if [ $D -gt 0 ]; then - echo -n "${D}d, ${H}h ${M}m ${S}s" - else - echo -n "${H}h, ${M}m ${S}s" - fi - return 0 -} - -export -f runtime - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Setup the environment -# Use custom build variables file -parenttmp="/tmp" -pkgdest=${pkgdest:-$parenttmp/sml/packages} -logsdir=${logsdir:-$parenttmp/sml/sml-buildlogs} -autobuild=1 -arch="$HOSTTYPE" -export pkgdest logsdir autobuild arch parenttmp - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir - -autobuildtemp="$(mktemp $parenttmp/SMBUILD.XXXXXX)" -export autobuildtemp - -autointerruptsummary() { - cat "$autobuildtemp" - rm "$autobuildtemp" -} - -trap "autointerruptsummary" INT -################################################### - - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 -help" - exit 1 - fi -done - -# Do the build. -( echo - echo "*********************************************************************" - echo "* Building SMLinux - this may take a while..." - echo "*********************************************************************" - - for section in $sections - do - ( cd $section && ./ssb.$section.SMBuild 2>&1 ) || { - echo - echo "*********************************************************************" - echo "* Build aborted: error building in section '$section'." - echo "* Check the build logs in '$logsdir' and try again." - echo "*********************************************************************" - echo "* Build failed after $( runtime $SECONDS )." - echo "*********************************************************************" - rm -f "$autobuildtemp" - exit 1 - } - # Generate HTML tables - if [ "$generatereports" = "1" ] && [ -x /bin/genreports ] ; then - /bin/genreports $SECTION 1.0 aarch64 - fi - done - - echo - echo "*********************************************************************" - echo "* Successfully finished building SMLinux!" - echo "* SMLinux packages are in '$pkgdest/$arch'." - echo "* Build logs are in '$logsdir'." - echo "*********************************************************************" - echo "* Complete build time was $( runtime $SECONDS )." - echo "*********************************************************************" - rm -f "$autobuildtemp" -) 2>&1 | tee $logsdir/$( basename $0 .SMBuild )-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/xfce/ssb.xfce.SMBuild b/xfce/ssb.xfce.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/xfce/ssb.xfce.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]} diff --git a/xorg/ssb.xorg.SMBuild b/xorg/ssb.xorg.SMBuild deleted file mode 100755 index 62e99c2..0000000 --- a/xorg/ssb.xorg.SMBuild +++ /dev/null @@ -1,265 +0,0 @@ -#!/bin/bash -# Version: 1.7 GSB Section SMBuild - Do not remove this line! -# Copyright (c) 2007, 2008: -# Darren 'Tadgy' Austin , Coventry, UK. -# Copyright (c) 2019-2022 PktSurf -# Licenced under the terms of the GNU General Public Licence version 3. -# -# Modified and trimmed extensively for use with SMLinux distribution -# http://git.pktsurf.in/smlinux - -# Prevent users from directly executing this section autobuild file. The whole build -# process has to be initiated from the main autobuild file. -if [ -z "$autobuild" ] ; then - echo "Please invoke the main ssb.SMBuild file rather than this section build file because" - echo "it has the required functions that are exported to this section build file during" - echo "the build process" - exit 1 -fi - -. /etc/bldpkg.conf - -if [ -n "$autobuildtemp" ] ; then - autobuildtemp="$autobuildtemp" - export autobuildtemp -fi - -colours=0 -export colours - -# Make sure we are in the right directory (you can never trust users..) -cd $( cd ${BASH_SOURCE%/*} ; pwd ) - -# Section name. -# This should not need to be changed unless the auto detection fails. -section="$( basename $( pwd ) )" -export section - -if [ ! -f .buildlist."$section" ]; then - echo "" - echo "**********************************************************************" - echo "The buildlist either doesn't exist, or is of a different architecture." - echo "** .buildlist.$section is needed **" - echo "Exiting!" - echo "**********************************************************************" - exit 1 -fi - -# Packages to build. -# The package list is read in from .buildlist in the current directory, with -# any comments and blank lines removed. -packages="$( egrep -v "^#|^$" .buildlist."$section" | cut -d'#' -f1 )" - -list_packages() { - local package - echo "The following packages are built in this section, listed in processing order:" - - ( for package in $packages - do - echo -n "$package, " - done ) | sed -e 's/, $//' | fmt -w 74 | sed -e 's/^/ /g' -} - -find_package_files() { - # $1 = Directory to look for files in [required] - # $2 = Package name or regex to match. An empty string matches all. - # $3 = Package version or regex to match. An empty string matches all. - # $4 = Package architecture or regex to match. An empty string matches all. - # $5 = Package build tag or regex to match. An empty string matches all. - # $6 = File extension or regex to match. An empty string means no extension. - # Note: Remember to escape any regex characters used in fixed strings. - - [ -z "$1" ] || [ ! -d "$1" ] && return 1 - find $1 -maxdepth 1 -mindepth 1 2>/dev/null | \ - egrep "^.*/(${2:-.*})(-${3:-[^-]*})(-${4:-[^-]*})(-${5:-[^-.]*})($6)$" 2>/dev/null - return $? -} - -# Environment. -packagesdir=${packagesdir:-/$arch} -export packagesdir - -# Option defaults. -nopatchesdir=0 -noinstall=0 - -# This check compares a list of source directories with the list of the -# packages in the build list and warns of any missing package names -# in either of the two. - -dirtempfile=$(mktemp $parenttmp/DIRECTORYNAMES."$section".XXXXXX) -dirfiletemppath="$dirtempfile" -dirlist=$(find . -type d -maxdepth 1 -mindepth 1 | sed 's@./@@' | sort > $dirfiletemppath) - -packtempfile=$(mktemp $parenttmp/BUILDFILENAMES."$section".XXXXXX) -packfiletemppath="$packtempfile" -sort .buildlist.$section > $packfiletemppath - -directorycount="$( wc -l < $dirtempfile )" -buildlistcount="$( wc -l < $packtempfile )" - -# Get number of total packages -totalpkgnumber="$(wc -l < .buildlist.$section)" -export totalpkgnumber - -if diff -u "$dirfiletemppath" "$packfiletemppath" > /dev/null 2>&1 ; then - diffstatus="0" -else - diffstatus="1" -fi - -if [ "$diffstatus" != "0" ]; then - echo "*********************************************************************" - echo "** Warning: In section '"$section"', the number of packages in the" - echo "** hidden file '.buildlist."$section"' is different to the number of" - echo "** package directories. Some packages may not have been added to" - echo "** this file/section directory. They are listed below:" - echo "" - - diff -u "$dirfiletemppath" "$packfiletemppath" || true - echo "" - diff -u "$packfiletemppath" "$dirfiletemppath" || true - - echo "" - echo "** Building anyways :-) " - echo "*********************************************************************" - sleep 2 - -fi -rm -f $packfiletemppath $dirfiletemppath - -# Parse command line arguments. -while [ $# -gt 0 ]; do - if [ "$1" = "-help" ] || [ "$1" = "--help" ]; then - usage - exit 0 - elif [ "$1" = "-list" ] || [ "$1" = "--list" ]; then - list_packages - exit 0 - shift - else - echo "${0##*/}: Unknown option: $1" - echo "Try: $0 --help" - exit 1 - fi -done - -# Temporary space, package and log file storage. -mkdir -p $pkgdest $logsdir/$section - - echo "*********************************************************************" - echo "** Building section '$section'..." - echo "*********************************************************************" - -# Process packages. -( for package in $packages - do - # Build defaults. - skip_build=0 - subdir=$packagesdir/$section - - echo "*********************************************************************" - echo "*** Processing package '$package'..." - echo "*********************************************************************" - - # Sanity checks. - [ ! -e "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' not found." - echo "*********************************************************************" - exit 1 - } - [ ! -x "$package/$package.SMBuild" ] && { - echo "*********************************************************************" - echo "*** Error: '$package.SMBuild' is not executable." - echo "*********************************************************************" - exit 1 - } - - # Get package version and build numbers from the package SMBuild. - source "$package/$package.SMBuild" - - # Check that we got a version and build. - [ -z "$version" ] || [ -z "$build" ] && { - echo "*********************************************************************" - echo "*** Error: failed to get version or build from '$package.SMBuild'" - echo "*********************************************************************" - exit 1 - } - - # Check if the package should be rebuilt, and where it should be put. - # The assumption is to always rebuild and put packages in the main - # directory, unless modified by the checks below. - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "" "" "" "\.$pkgext" >/dev/null - then - if find_package_files "$pkgdest/$subdir" "${package//+/\+}" \ - "${version//-/_}" "" "$build" "\.$pkgext" >/dev/null - then - # Package with same version/build was found in the main directory. - skip_build=1 - fi - fi - - # Build package if required. - if [ "$skip_build" = "0" ]; then - echo "*********************************************************************" - echo "*** Building package '$package'..." - echo "*********************************************************************" - # Get the current package number from the build list - currentpkgnumber="$(grep -Ewn "^$package" .buildlist.$section | cut -d: -f 1)" - export currentpkgnumber - mkdir -p $pkgdest/$subdir - ( cd $package && export pkgdest=$pkgdest/$subdir && - bldpkg 2>&1 ) | \ - tee $logsdir/$section/$package-$section-$HOSTTYPE.log.txt - # Unset $CURRENTPKGNUMBER. We don't want issues when a new one comes in - err=${PIPESTATUS[0]} - if [ "$err" != "0" ] ; then - unset currentpkgnumber - echo "*** Error: '$package' build failed." - exit $err - else - unset currentpkgnumber - mv $logsdir/$section/$package-$section-$HOSTTYPE.log.txt \ - $logsdir/$section/$package-$version-$build-$section-$HOSTTYPE.log.txt - fi - else - echo "*********************************************************************" - echo "*** Skipping build of '$package' - package up to date." - echo "*********************************************************************" - - fi - - if [ "$noinstall" = "0" ]; then - echo - echo "*********************************************************************" - echo "*** Installing '$package'..." - echo "*********************************************************************" - upgradepkg --install-new $( find_package_files "$pkgdest/$subdir" \ - "${package//+/\+}" "${version//-/_}" "" "$build" "\.$pkgext" ) || { - echo - echo "*********************************************************************" - echo "*** Error: failed to install '$package'." - echo "*********************************************************************" - exit 1 - } - else - echo - echo "*********************************************************************" - echo "*** Warning: not installing '$package'." - echo "*********************************************************************" - fi - done - - echo "*********************************************************************" - echo "** Finished building section '$section'." - echo "** SMLinux packages are in '$pkgdest/$arch/$section'." - echo "** Section build logs are in '$logsdir/$section'." - echo "*********************************************************************" - echo "** Section build time was $( runtime $SECONDS )" - echo "*********************************************************************" -) 2>&1 | tee $logsdir/$section-$arch.log.txt - -# Return the exit status from the sub-shell, not the tee command. -exit ${PIPESTATUS[0]}