Magellan Linux

Diff of /branches/mage-next/src/depwalker.in

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

revision 2627 by niro, Wed Mar 5 08:18:22 2014 UTC revision 2829 by niro, Wed Sep 17 11:20:37 2014 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2  # $Id$  # $Id$
3  # dependeny walker  # dependency walker
   
 decho()  
 {  
  if [[ ${DEBUG} = 1 ]]  
  then  
  echo "DEBUG: $@" >&2  
  fi  
 }  
4    
5  # set default variables  # set default variables
6  : ${MAGERC="@@SYSCONFDIR@@/mage.rc"}  : ${MAGERC="@@SYSCONFDIR@@/mage.rc"}
# Line 21  source ${MAGERC} || die "Your ${MAGERC} Line 13  source ${MAGERC} || die "Your ${MAGERC}
13  source ${MLIBDIR}/mage4.functions.sh || die "mage functions missing"  source ${MLIBDIR}/mage4.functions.sh || die "mage functions missing"
14  source ${MLIBDIR}/smage2.functions.sh || die "smage functions missing"  source ${MLIBDIR}/smage2.functions.sh || die "smage functions missing"
15    
16    decho()
17    {
18     if [[ ${DEBUG} = 1 ]]
19     then
20     echo "DEBUG: $@" >&2
21     fi
22    }
23    
24  usage()  usage()
25  {  {
26   echo   echo
# Line 203  depwalking() Line 203  depwalking()
203    
204   # mark depfile as processed to prevent double runs -without version   # mark depfile as processed to prevent double runs -without version
205   # but do not add any virtuals to PROCESSEDDEPS or their resolved   # but do not add any virtuals to PROCESSEDDEPS or their resolved
206   # pkgnames will be ignored and they are missing on the dependecy-list   # pkgnames will be ignored and they are missing on the dependency-list
207   if [[ ${DEPNAME/virtual\//} = ${DEPNAME} ]]   if [[ ${DEPNAME/virtual\//} = ${DEPNAME} ]]
208   then   then
209   PROCESSEDDEPS="${PROCESSEDDEPS} ${DEPNAME%-*}"   PROCESSEDDEPS="${PROCESSEDDEPS} ${DEPNAME%-*}"
# Line 230  depwalking() Line 230  depwalking()
230   ### check if the dependency is already installed ###   ### check if the dependency is already installed ###
231   if [ ! -d ${MROOT}${INSTALLDB}/${PCAT}/${PNAME}-${PVER}-${PBUILD} ]   if [ ! -d ${MROOT}${INSTALLDB}/${PCAT}/${PNAME}-${PVER}-${PBUILD} ]
232   then   then
233     # but first get all deps of highest_depfile to catch all dependencies of it
234   depwalking ${HIGHEST_DEPFILE}   depwalking ${HIGHEST_DEPFILE}
235   ALLDEPS="${ALLDEPS} ${HIGHEST_DEPFILE}"   ALLDEPS="${ALLDEPS} ${HIGHEST_DEPFILE}"
236   decho "added '${HIGHEST_DEPFILE}' to ALLDEPS"   decho "added '${HIGHEST_DEPFILE}' to ALLDEPS"

Legend:
Removed from v.2627  
changed lines
  Added in v.2829