Magellan Linux

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

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

revision 24 by niro, Wed Jan 5 05:08:01 2005 UTC revision 31 by niro, Thu Jan 6 02:53:55 2005 UTC
# Line 991  get_highest_magefile(){ Line 991  get_highest_magefile(){
991   fi   fi
992   done   done
993    
994     # stop here if HIGHEST_MAGEFILE is zero
995     # this package must be unstable or old
996     if [ -z "${HIGHEST_MAGEFILE}" ]
997     then
998     echo
999     echo -n "All packages named "
1000     echo -en ${COLRED}\""${PKGNAME%-*-*-*}\""${COLDEFAULT}
1001     echo -n " are marked "
1002     echo -en ${COLRED}"*UNSTABLE*"${COLDEFAULT}
1003     echo "."
1004     echo "You need to declare USE_UNSTABLE=true to install this."
1005     echo
1006     echo "Example:"
1007     echo "         USE_UNSTABLE=true mage install ${PKGNAME%-*-*-*}"
1008     echo
1009     echo "Be warned that these packages are not stable and may cause serious problems."
1010     echo "You should know what you are doing, so don't complain about any damage."
1011     echo
1012     exit 1
1013     fi
1014    
1015   MAGEFILE=${HIGHEST_MAGEFILE}   MAGEFILE=${HIGHEST_MAGEFILE}
1016   return 0   return 0
1017  }  }

Legend:
Removed from v.24  
changed lines
  Added in v.31