Magellan Linux

Diff of /trunk/mage/usr/lib/mage/mage4.functions.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 385 by niro, Mon Jul 17 20:48:22 2006 UTC revision 739 by niro, Mon Jun 16 09:29:57 2008 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2  # Magellan Linux Installer Functions (mage.functions.sh)  # Magellan Linux Installer Functions (mage.functions.sh)
3  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/mage4.functions.sh,v 1.20 2006-07-17 20:48:22 niro Exp $  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/mage4.functions.sh,v 1.37 2008-06-16 09:29:27 niro Exp $
4    
5  mage_setup()  mage_setup()
6  {  {
# Line 1106  fetch_packages() Line 1106  fetch_packages()
1106   local count_current   local count_current
1107   local count_total   local count_total
1108    
1109   [ -z "${MIRRORS}" ] && die "You have no mirrors defined. Please edit your /etc/mage.rc."   [ -z "${MIRRORS}" ] && die "You have no mirrors defined. Please edit your ${MAGERC}."
1110    
1111   # get count of total packages   # get count of total packages
1112   declare -i count_current=0   declare -i count_current=0
# Line 1181  syncmage() Line 1181  syncmage()
1181  {  {
1182   if [ -z "${RSYNC}" ]   if [ -z "${RSYNC}" ]
1183   then   then
1184   die "You have no rsync-mirrors defined. Please edit your /etc/mage.rc."   die "You have no rsync-mirrors defined. Please edit your ${MAGERC}."
1185   fi   fi
1186    
1187   local i   local i
1188   for i in ${RSYNC}   for i in ${RSYNC}
1189   do   do
1190   rsync \   rsync ${RSYNC_FETCH_OPTIONS} ${i} ${MAGEDIR}
  --recursive \  
  --links \  
  --perms \  
  --times \  
  --devices \  
  --timeout=600 \  
  --verbose \  
  --compress \  
  --progress \  
  --stats \  
  --delete \  
  --delete-after \  
  ${i} ${MAGEDIR}  
1191   if [[ $? = 0 ]]   if [[ $? = 0 ]]
1192   then   then
1193   break   break
# Line 1216  syncmage() Line 1203  syncmage()
1203   is_newer_mage_version_available   is_newer_mage_version_available
1204  }  }
1205    
1206    syncmage_tarball()
1207    {
1208     local latest_tarball
1209     local temp="$(mktemp -d)"
1210     local mirr mymirr
1211    
1212     # try to get the tarball marked as latest on the server
1213     latest_tarball="mage-latest.tar.bz2"
1214    
1215     for mirr in ${MIRRORS}
1216     do
1217     # path without distribution
1218     mymirr="${mirr%/*}"
1219    
1220     echo -ne "${COLBLUE} --- ${COLDEFAULT}"
1221     echo "fetching latest tarball from ${mymirr} ..."
1222    
1223     wget \
1224     --passive-ftp \
1225     --tries 3 \
1226     --continue \
1227     --progress bar \
1228     --directory-prefix=${temp} \
1229     ${mymirr}/rsync/tarballs/${latest_tarball}
1230     if [[ $? = 0 ]]
1231     then
1232     break
1233     else
1234     continue
1235     fi
1236     done
1237    
1238     if [[ -f ${temp}/${latest_tarball} ]]
1239     then
1240     if [[ -d ${MAGEDIR} ]]
1241     then
1242     echo -ne "${COLBLUE} --- ${COLDEFAULT}"
1243     echo "cleaning old mage-tree ${MAGEDIR}..."
1244     rm -rf ${MAGEDIR}
1245     fi
1246    
1247     echo -ne "${COLBLUE} --- ${COLDEFAULT}"
1248     echo "updating mage-tree from tarball ..."
1249     # unpack in dirname of MAGEDIR, as the tarball has already the mage
1250     tar xjmf ${temp}/${latest_tarball} -C ${MAGEDIR%/*} || die "Unpacking tarball"
1251    
1252     if [[ -d ${temp} ]]
1253     then
1254     echo -ne "${COLBLUE} --- ${COLDEFAULT}"
1255     echo "clenaing temp-files ..."
1256     rm -rf ${temp}
1257     fi
1258     else
1259     die "Could not fetch the latest tarball ... aborting"
1260     fi
1261    }
1262    
1263  cleanpkg()  cleanpkg()
1264  {  {
1265   if [ -d "${PKGDIR}" ]   if [ -d "${PKGDIR}" ]
# Line 1253  choppkgname() Line 1297  choppkgname()
1297   if [ -n "$(echo ${MAGENAME}|fgrep .mage)" ]   if [ -n "$(echo ${MAGENAME}|fgrep .mage)" ]
1298   then   then
1299   #cuts ARCH and PBUILD   #cuts ARCH and PBUILD
1300   #ARCH comes from /etc/mage.rc   #ARCH comes from ${MAGERC}
1301   MAGENAME=$(echo ${MAGENAME} |sed -e "s:-${ARCH}-r*.::g")   MAGENAME=$(echo ${MAGENAME} |sed -e "s:-${ARCH}-r*.::g")
1302    
1303   #cuts version number   #cuts version number
# Line 1328  get_highest_magefile() Line 1372  get_highest_magefile()
1372   local PNAME="$2"   local PNAME="$2"
1373   local magefile   local magefile
1374    
1375   for magefile in $(ls --format=single-column -v ${MAGEDIR}/${PCAT}/${PNAME}/*)   # do not list the content of a directory, only the name (-d)
1376     for magefile in $(ls --format=single-column -v -d ${MAGEDIR}/${PCAT}/${PNAME}/*)
1377   do   do
1378     [[ -z ${magefile} ]] && continue
1379   # we exclude subdirs (for stuff like a md5sum dir)   # we exclude subdirs (for stuff like a md5sum dir)
1380   [ -d ${magefile} ] && continue   [[ -d ${magefile} ]] && continue
1381   if check_stable_package ${magefile}   if check_stable_package ${magefile}
1382   then   then
1383   HIGHEST_MAGEFILE=${magefile}   HIGHEST_MAGEFILE=${magefile}
# Line 1388  is_config_protected() Line 1434  is_config_protected()
1434   EXPFILE="${MROOT}$1"   EXPFILE="${MROOT}$1"
1435    
1436   # file does not exist; it can be written   # file does not exist; it can be written
1437   [ ! -e ${EXPFILE} ] && return 0   [[ ! -e ${EXPFILE} ]] && return 0
1438    
1439   # to be safe; it may be '§'   # to be safe; it may be '§'
1440   IFS=' '   IFS=' '
# Line 1398  is_config_protected() Line 1444  is_config_protected()
1444   do   do
1445   # ersetzen von $i nur wenn am anfang der variable   # ersetzen von $i nur wenn am anfang der variable
1446   TEST="${EXPFILE/#${MROOT}${i}/Protected}"   TEST="${EXPFILE/#${MROOT}${i}/Protected}"
1447   if [ "${TEST}" != "${EXPFILE}" ]   if [[ ${TEST} != ${EXPFILE} ]]
1448   then   then
1449   # setzen das es protected ist   # setzen das es protected ist
1450   PROTECTED=TRUE   PROTECTED=TRUE
# Line 1407  is_config_protected() Line 1453  is_config_protected()
1453   for x in ${CONFIG_PROTECT_MASK}   for x in ${CONFIG_PROTECT_MASK}
1454   do   do
1455   TEST="${EXPFILE/#${MROOT}${x}/Protect_Masked}"   TEST="${EXPFILE/#${MROOT}${x}/Protect_Masked}"
1456   if [ "${TEST}" != "${EXPFILE}" ]   if [[ ${TEST} != ${EXPFILE} ]]
1457   then   then
1458   PROTECTED=MASKED   PROTECTED=MASKED
1459   fi   fi
# Line 1443  is_config_protected() Line 1489  is_config_protected()
1489  ###################################################  ###################################################
1490  count_protected_files()  count_protected_files()
1491  {  {
1492   ${MLIBDIR}/writeprotected "$1"   local file="$1"
1493     local dirname="${file%/*}"
1494     local filename="${file##*/}"
1495     local count
1496     local output
1497     local i
1498    
1499     declare -i count=0
1500    
1501     # check if there are already protected files
1502     for oldpretected in $(find ${dirname} -iname "._cfg????_${filename}" |
1503     sed -e "s:\(^.*/\)\(._cfg*_\)\(/.*$\):\1\2\3\%\2\%\3:" |
1504     sort -t'%' -k3 -k2 | cut -f1 -d'%')
1505     do
1506     count=$(echo ${oldpretected} | cut -d_ -f2 | sed -e "s:cfg::")
1507     done
1508     (( count ++ ))
1509    
1510     # fill output up with zeros
1511     for (( i=${#count}; i < 4; i++ )); do output="${output}0"; done
1512     output="${output}${count}"
1513    
1514     echo "${output}"
1515  }  }
1516    
1517  # call with  # call with
# Line 1460  get_uninstall_candidates() Line 1528  get_uninstall_candidates()
1528   local list   local list
1529   local pcatdir   local pcatdir
1530   local protected   local protected
1531     local i
1532    
1533   # very basic getops   # very basic getops
1534   for i in $*   for i in $*
# Line 1721  minclude() Line 1790  minclude()
1790  {  {
1791   local i   local i
1792    
1793   if [ -n "$@" ]   if [[ -n $* ]]
1794   then   then
1795   for i in $@   for i in $*
1796   do   do
1797   [[ ${MAGEDEBUG} = on ]] && \   [[ ${MAGEDEBUG} = on ]] && \
1798   echo "--- Including ${MAGEDIR}/include/${i}.minc"   echo "--- Including ${MAGEDIR}/include/${i}.minc"
# Line 1737  sminclude() Line 1806  sminclude()
1806  {  {
1807   local i   local i
1808    
1809   if [ -n "$@" ]   if [[ -n $* ]]
1810   then   then
1811   for i in $@   for i in $*
1812   do   do
1813   echo "--- Including ${SMAGESCRIPTSDIR}/include/${i}.sminc"   echo "--- Including ${SMAGESCRIPTSDIR}/include/${i}.sminc"
1814   source ${SMAGESCRIPTSDIR}/include/${i}.sminc   source ${SMAGESCRIPTSDIR}/include/${i}.sminc
# Line 2167  mage_install() Line 2236  mage_install()
2236   echo B:${pbuild}   echo B:${pbuild}
2237   fi   fi
2238    
2239   smage2file=${SMAGESCRIPTSDIR}/${pname}/${pname}-${pver}-${pbuild}.smage2   if [[ -z ${MAGE_TARGETS} ]]
2240     then
2241     smage2file=${SMAGESCRIPTSDIR}/${pname}/${pname}-${pver}-${pbuild}.smage2
2242     else
2243     smage2file=${SMAGESCRIPTSDIR}/${pname/${MAGE_TARGETS}/}/${pname/${MAGE_TARGETS}/}-${pver}-${pbuild}.smage2
2244     fi
2245   if [ -f "${smage2file}" ]   if [ -f "${smage2file}" ]
2246   then   then
2247   echo -e " ${COLBLUE}***${COLDEFAULT} building package from source ... "   echo -e " ${COLBLUE}***${COLDEFAULT} building package from source ... "
# Line 2441  mage_uninstall() Line 2515  mage_uninstall()
2515   echo -ne "${COLBLUE} <<< ${COLDEFAULT}"   echo -ne "${COLBLUE} <<< ${COLDEFAULT}"
2516   echo -n "removing: "   echo -n "removing: "
2517   echo -ne "${COLBLUE}${pcat}/${COLDEFAULT}"   echo -ne "${COLBLUE}${pcat}/${COLDEFAULT}"
2518   echo -e "${COLGREEN}${pname}-${pver}-${pbuild}${COLDEFAULT}"   echo -e "${COLRED}${pname}-${pver}-${pbuild}${COLDEFAULT}"
2519    
2520   magefile="${INSTALLDB}/${pcat}/${pname}-${pver}-${pbuild}/${pname}-${pver}-${pbuild}.mage"   magefile="${MROOT}${INSTALLDB}/${pcat}/${pname}-${pver}-${pbuild}/${pname}-${pver}-${pbuild}.mage"
2521   source ${magefile}   source ${magefile}
2522    
2523   ## preremove scripts   ## preremove scripts
# Line 2541  pkgsearch() Line 2615  pkgsearch()
2615   local all_installed   local all_installed
2616   local ipver   local ipver
2617   local ipbuild   local ipbuild
2618     local latest_available
2619     local depsfull
2620     local sdepsfull
2621     local deps
2622     local sdeps
2623     local dep
2624     local sign
2625    
2626   # only names no versions   # only names no versions
2627   result="$(find ${MAGEDIR} -mindepth 2 -maxdepth 2 -type d -name '*'${string}'*')"   result="$(find ${MAGEDIR} -mindepth 2 -maxdepth 2 -type d -name '*'${string}'*'| sed '/profiles/d' | sed '/includes/d')"
2628   #result="$(find ${MAGEDIR} -type f -name '*'${string}'*'.mage | sort)"   #result="$(find ${MAGEDIR} -type f -name '*'${string}'*'.mage | sort)"
2629    
2630   # nothing found   # nothing found
# Line 2558  pkgsearch() Line 2639  pkgsearch()
2639   # get highest version available   # get highest version available
2640   magefile=$(get_highest_magefile ${pcat} ${pname})   magefile=$(get_highest_magefile ${pcat} ${pname})
2641    
2642   # now get all needed infos to print a nice output   if [[ ! -z ${magefile} ]]
2643   pver="$(magename2pver ${magefile})"   then
2644   pbuild="$(magename2pbuild ${magefile})"   # now get all needed infos to print a nice output
2645   state="$(get_value_from_magefile STATE ${magefile})"   pver="$(magename2pver ${magefile})"
2646   description="$(get_value_from_magefile DESCRIPTION ${magefile})"   pbuild="$(magename2pbuild ${magefile})"
2647   homepage="$(get_value_from_magefile HOMEPAGE ${magefile})"   state="$(get_value_from_magefile STATE ${magefile})"
2648     description="$(get_value_from_magefile DESCRIPTION ${magefile})"
2649     homepage="$(get_value_from_magefile HOMEPAGE ${magefile})"
2650    
2651     # all installed
2652     for i in $(get_uninstall_candidates --pname ${pname} --pcat ${pcat})
2653     do
2654     ipver="$(magename2pver ${i})"
2655     ipbuild="$(magename2pbuild ${i})"
2656    
2657     if [[ -z ${all_installed} ]]
2658     then
2659     all_installed="${ipver}-${ipbuild}"
2660     else
2661     all_installed="${all_installed} ${ipver}-${ipbuild}"
2662     fi
2663     done
2664     [[ -z ${all_installed} ]] && all_installed="none"
2665    
2666     case ${state} in
2667     stable) state=${COLGREEN}"[s] ";;
2668     testing) state=${COLYELLOW}"[t] ";;
2669     unstable) state=${COLRED}"[u] ";;
2670     old) state=${COLGRAY}"[o] ";;
2671     esac
2672    
2673     latest_available="${pver}-${pbuild}"
2674     else
2675     # package is masked
2676     state="${COLRED}[m] "
2677     latest_available="${COLRED}masked for this distribution.${COLDEFAULT}"
2678     fi
2679    
2680   # all installed   depsfull="$(get_value_from_magefile DEPEND ${magefile})"
2681   for i in $(get_uninstall_candidates --pname ${pname} --pcat ${pcat})   sdepsfull="$(get_value_from_magefile SDEPEND ${magefile})"
  do  
  ipver="$(magename2pver ${i})"  
  ipbuild="$(magename2pbuild ${i})"  
2682    
2683   if [[ -z ${all_installed} ]]   while read sign dep
2684   then   do
2685   all_installed="${ipver}-${ipbuild}"   case ${dep} in
2686   else   "") continue;;
2687   all_installed="${all_installed} ${ipver}-${ipbuild}"   esac
2688   fi  
2689   done   deps="${deps} $(basename ${dep%-*})"
2690   [[ -z ${all_installed} ]] && all_installed="none"   done << EOF
2691    ${depsfull}
2692    EOF
2693    
2694   case ${state} in   while read sign dep
2695   stable) state=${COLGREEN}"[s] ";;   do
2696   testing) state=${COLYELLOW}"[t] ";;   case ${dep} in
2697   unstable) state=${COLRED}"[u] ";;   "") continue;;
2698   old) state=${COLGRAY}"[o] ";;   esac
2699   esac  
2700     sdeps="${sdeps} $(basename ${dep%-*})"
2701     done << EOF
2702    ${sdepsfull}
2703    EOF
2704    
2705   echo -e "${state}${pcat}/${pname}"${COLDEFAULT}   echo -e "${state}${pcat}/${pname}"${COLDEFAULT}
2706   echo "      Latest available:   ${pver}-${pbuild}"   echo -e "      Latest available:   ${latest_available}"
2707   echo "      Installed versions: ${all_installed}"   echo "      Installed versions: ${all_installed}"
2708   echo "      Description: ${description}"   echo "      Description: ${description}"
2709   echo "      Homepage: ${homepage}"   echo "      Homepage: ${homepage}"
2710     echo "      Depends: ${deps}"
2711     echo "      SDepends: ${sdeps}"
2712   echo   echo
2713    
2714   unset pcat   unset pcat
# Line 2605  pkgsearch() Line 2722  pkgsearch()
2722   unset all_installed   unset all_installed
2723   unset ipver   unset ipver
2724   unset ipbuild   unset ipbuild
2725     unset depsfull
2726     unset sdepsfull
2727     unset deps
2728     unset sdeps
2729     unset dep
2730     unset sign
2731   done   done
2732  }  }
2733    

Legend:
Removed from v.385  
changed lines
  Added in v.739