Magellan Linux

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

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

revision 239 by niro, Sun Sep 11 19:46:05 2005 UTC revision 2210 by niro, Mon Oct 14 13:13:46 2013 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/bash
2  # Magellan Linux Installer (mage.sh)  # Magellan Linux Installer (mage.sh)
3  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/mage4.sh,v 1.6 2005-09-11 19:46:05 niro Exp $  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/mage4.sh,v 1.17 2008-06-16 09:29:57 niro Exp $
4    
5  # default die function  # default die function
6  die()  die()
7  {  {
8     echo -e ${COLRED}"Exited ${BASH_SOURCE} at line no ${BASH_LINENO}."${COLDEFAULT}
9   echo -e ${COLRED}"$@"${COLDEFAULT}   echo -e ${COLRED}"$@"${COLDEFAULT}
10   exit 1   exit 1
11  }  }
# Line 14  die() Line 15  die()
15   source /etc/mage.rc.global || \   source /etc/mage.rc.global || \
16   die "/etc/mage.rc.global missing"   die "/etc/mage.rc.global missing"
17    
18  [ -f /etc/mage.rc ] && source /etc/mage.rc || \  [ -f ${MAGERC} ] && source ${MAGERC} || \
19   die "Your /etc/mage.rc is missing. Aborting."   die "Your ${MAGERC} is missing. Aborting."
20    
21  [ -f ${MLIBDIR}/mage4.functions.sh ] && \  [ -f ${MLIBDIR}/mage4.functions.sh ] && \
22   source ${MLIBDIR}/mage4.functions.sh || \   source ${MLIBDIR}/mage4.functions.sh || \
23   die "mage functions missing"   die "mage functions missing"
24    
 # for tests only  
 #source /home/tjoke/alx-cvs/magellan-src/mage/usr/lib/mage/mage.rc.global  
 #source /etc/mage.rc  
 #source /home/tjoke/alx-cvs/magellan-src/mage/usr/lib/mage/mage4.functions.sh  
 #MLIBDIR=/home/tjoke/alx-cvs/magellan-src/mage/usr/lib/mage  
   
 ## only for tests -> normally in /etc/rc.d/init.d/functions  
 COLRED="\033[1;6m\033[31m"  
 COLGREEN="\033[1;6m\033[32m"  
 COLYELLOW="\033[1;6m\033[33m"  
 COLBLUE="\033[1;6m\033[34m"  
 COLMAGENTA="\033[1;6m\033[35m"  
 COLWHITE="\033[1;6m\033[37m"  
 COLGRAY="\033[0;6m\033[37m"  
 COLBOLD="\033[1m"  
 COLDEFAULT="\033[0m"  
   
 if [[ ${NOCOLORS} = true ]]  
 then  
  COLRED=""  
  COLGREEN=""  
  COLYELLOW=""  
  COLBLUE=""  
  COLMAGENTA=""  
  COLWHITE=""  
  COLGRAY=""  
  COLBOLD=""  
  COLDEFAULT=""  
 fi  
   
25  # export default path  # export default path
26  export PATH="${PATH}:${MLIBDIR}"  export PATH="${PATH}:${MLIBDIR}"
27    
# Line 60  export LC_ALL=C Line 31  export LC_ALL=C
31  # sanity checks  # sanity checks
32  [ ! -e ${VIRTUALDB_FILE} ] && touch ${VIRTUALDB_FILE}  [ ! -e ${VIRTUALDB_FILE} ] && touch ${VIRTUALDB_FILE}
33    
34  if [ ! -e ${VIRTUALDB_DEFAULTS} ] && [[ $1 != update ]]  if [ ! -e ${VIRTUALDB_DEFAULTS} ] && [[ $1 != update ]] && [[ $1 != update-tarball ]]
35  then  then
36   echo   echo
37   echo "Please choose an profile from the mage tree."   echo "Please choose an profile from the mage tree."
# Line 69  then Line 40  then
40  fi  fi
41    
42  # default messages  # default messages
43  showversion() {  showversion()
44    {
45   local MAGEVERSION="$(< ${MLIBDIR}/version)"   local MAGEVERSION="$(< ${MLIBDIR}/version)"
46    
47   echo -en "Magellan Package Manager v${MAGEVERSION} "   echo -en "Magellan Package Manager v${MAGEVERSION} "
48   echo -e  "-- Niels Rogalla (niro@magellan-linux.de)"   echo -e  "-- Niels Rogalla (niro@magellan-linux.de)"
49  }  }
50    
51  print_usage(){  print_usage()
52   showversion  {
53   echo   #showversion
54     #echo
55   echo "Usage: $(basename $0) [option] pkgname ..."   echo "Usage: $(basename $0) [option] pkgname ..."
56   echo "Options:"   echo "Options:"
57   echo "     pretend        - pretends dependencies of a package"   echo "    pretend         - pretends dependencies of a package"
58   echo "     srcpretend     - pretends dependencies of a package (build from source)"   echo "    srcpretend      - pretends dependencies of a package (build from source)"
59   echo "     install        - installs a package"   echo "    install         - installs a package"
60   echo "     srcinstall     - installs a package from source"   echo "    srcinstall      - installs a package from source"
61   echo "     uninstall      - removes a package"   echo "    uninstall       - removes a package"
62   echo "     update         - updates mage-tree"   echo "    update          - updates the mage-tree via rsync"
63   echo "     uppretend      - pretend dependencies for a system upgrade"   echo "    update-tarball  - updates the mage-tree via a tarball"
64   echo "     upgrade        - runs a complete system upgrade"   echo "    uppretend       - pretend dependencies for a system upgrade"
65   echo "     srcuppretend   - pretend dependencies for a system upgrade from source"   echo "    upgrade         - runs a complete system upgrade"
66   echo "     srcupgrade     - runs a complete system upgrade from source"   echo "    srcuppretend    - pretend dependencies for a system upgrade from source"
67   echo "     search         - searches mage-tree for a package"   echo "    srcupgrade      - runs a complete system upgrade from source"
68   echo "     clean          - removes *all* downloaded packages"   echo "    pretend-build-prerequisites"
69   echo "     unpack         - unpacks *all* needed package for 'foo'"   echo "    install-build-prerequisites"
70   echo "     download       - downloads *all* needed packages for 'foo'"   echo "    search          - searches mage-tree for a package"
71   echo "     version        - prints version info"   echo "    clean           - removes *all* downloaded packages"
72     echo "    unpack          - unpacks *all* needed package for 'foo'"
73     echo "    download        - downloads *all* needed packages for 'foo'"
74     echo "    print-features  - prints all enabled mage-features"
75     echo "    version         - prints version info"
76     echo "    regen-mage-tree - regenerates the whole mage database (for devs only)"
77   echo   echo
78   echo "Other options:"   echo "Other options:"
79  # echo "NOINSTALL=yes $(basename $0) srcinstall PACKAGE"  # echo "NOINSTALL=yes $(basename $0) srcinstall PACKAGE"
80  # echo "Builds a Package with its dependencies, but won't install anything."  # echo "Builds a Package with its dependencies, but won't install anything."
81  # echo  # echo
82   echo "USE_UNSTABLE=true $(basename $0) [src]install PACKAGE"   echo "MAGE_DISTRIBUTION=unstable $(basename $0) [src]install PACKAGE"
83   echo "Overrides stable packages; you can install packages that are marked unstable."   echo "Overrides stable packages; you can install packages that are marked unstable."
84   echo   echo
85   echo "USE_TESTING=true $(basename $0) [src]install PACKAGE"   echo "MAGE_DISTRIBUTION=testing $(basename $0) [src]install PACKAGE"
86   echo "Overrides stable packages; you can install packages that are marked testing."   echo "Overrides stable packages; you can install packages that are marked testing."
87   echo   echo
88   echo "NOCOLORS=true $(basename $0) [src]install PACKAGE"   echo "NOCOLORS=true $(basename $0) [src]install PACKAGE"
# Line 116  print_usage(){ Line 94  print_usage(){
94  showversion  showversion
95  echo  echo
96    
 # before anything run mage_setup  
 mage_setup || die "error in mage_setup()"  
   
97  # install method  # install method
98  METHOD="$1"  METHOD="$1"
99    
100  # initial unversionized packagename, gets overridden later  # initial unversionized packagename, gets overridden later on
101  MAGENAME="$2"  MAGENAME="$2"
102    
103  if [[ ${METHOD} != upgrade ]] && \  if [[ ${METHOD} != upgrade ]] &&
104   [[ ${METHOD} != srcupgrade ]] && \   [[ ${METHOD} != srcupgrade ]] &&
105   [[ ${METHOD} != uppretend ]] && \   [[ ${METHOD} != uppretend ]] &&
106   [[ ${METHOD} != srcuppretend ]] && \   [[ ${METHOD} != srcuppretend ]] &&
107   [[ ${METHOD} != update ]] && \   [[ ${METHOD} != update ]] &&
108   [[ ${METHOD} != clean ]] && \   [[ ${METHOD} != update-tarball ]] &&
109   [[ ${METHOD} != version ]] && \   [[ ${METHOD} != clean ]] &&
110   [[ ${METHOD} != search ]] && \   [[ ${METHOD} != version ]] &&
111   [[ ${METHOD} != regen-mage-tree ]]   [[ ${METHOD} != search ]] &&
112     [[ ${METHOD} != regen-mage-tree ]] &&
113     [[ ${METHOD} != print-features ]]
114  then  then
115   [[ -z ${METHOD} ]] || [[ -z ${MAGENAME} ]] && print_usage && exit 1   [[ -z ${METHOD} ]] || [[ -z ${MAGENAME} ]] && print_usage && exit 1
116  fi  fi
117    
118    # set PKGDIR and BUILDDIR to MROOT
119    if [[ -n ${MROOT} ]]
120    then
121     PKGDIR=${MROOT}/${PKGDIR}
122     BUILDDIR=${MROOT}/${BUILDDIR}
123    fi
124    
125    # before anything run mage_setup
126    mage_setup || die "error in mage_setup()"
127    
128    # load supported mage features
129    load_mage_features
130    
131  case ${METHOD} in  case ${METHOD} in
132   download)   download)
# Line 148  case ${METHOD} in Line 137  case ${METHOD} in
137   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."
138    
139   # source the highest magefile of this pkg   # source the highest magefile of this pkg
140   source $(get_highest_magefile ${PCAT} ${MAGENAME})   PKGNAME=$(get_value_from_magefile PKGNAME $(get_highest_magefile ${PCAT} ${MAGENAME}))
141    
142     # package is masked
143     [ -z "${PKGNAME}" ] && die "Package '${MAGENAME}' is masked and not available for installation."
144    
145   # convert PKGNAME to PNAME/PVER/PBUILD   # convert PKGNAME to PNAME/PVER/PBUILD
146   # we're working *only* with these three vars from here on   # we're working *only* with these three vars from here on
# Line 175  case ${METHOD} in Line 167  case ${METHOD} in
167   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."
168    
169   # source the highest magefile of this pkg   # source the highest magefile of this pkg
170   source $(get_highest_magefile ${PCAT} ${MAGENAME})   PKGNAME=$(get_value_from_magefile PKGNAME $(get_highest_magefile ${PCAT} ${MAGENAME}))
171    
172     # package is masked
173     [ -z "${PKGNAME}" ] && die "Package '${MAGENAME}' is masked and not available for installation."
174    
175   # convert PKGNAME to PNAME/PVER/PBUILD   # convert PKGNAME to PNAME/PVER/PBUILD
176   # we're working *only* with these three vars from here on   # we're working *only* with these three vars from here on
# Line 193  case ${METHOD} in Line 188  case ${METHOD} in
188   fetch_packages ${ALLDEPS} || die "fetching packages"   fetch_packages ${ALLDEPS} || die "fetching packages"
189   ;;   ;;
190    
191   pretend|srcpretend)   pretend|srcpretend|pretend-build-prerequisites)
192   # first of all get the right pkg which going to be installed   # first of all get the right pkg which going to be installed
193   PCAT="$(pname2pcat ${MAGENAME})"   PCAT="$(pname2pcat ${MAGENAME})"
194    
# Line 201  case ${METHOD} in Line 196  case ${METHOD} in
196   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."
197    
198   # source the highest magefile of this pkg   # source the highest magefile of this pkg
199   source $(get_highest_magefile ${PCAT} ${MAGENAME})   PKGNAME=$(get_value_from_magefile PKGNAME $(get_highest_magefile ${PCAT} ${MAGENAME}))
200    
201     # package is masked
202     [ -z "${PKGNAME}" ] && die "Package '${MAGENAME}' is masked and not available for installation."
203    
204   # convert PKGNAME to PNAME/PVER/PBUILD   # convert PKGNAME to PNAME/PVER/PBUILD
205   # we're working *only* with these three vars from here on   # we're working *only* with these three vars from here on
# Line 226  case ${METHOD} in Line 224  case ${METHOD} in
224   --pbuild ${PBUILD}   --pbuild ${PBUILD}
225   ;;   ;;
226    
227   install)   install|install-build-prerequisites)
228     have_root_privileges || die "You must be root to run this operation."
229    
230   # first of all get the right pkg which going to be installed   # first of all get the right pkg which going to be installed
231   PCAT="$(pname2pcat ${MAGENAME})"   PCAT="$(pname2pcat ${MAGENAME})"
232    
# Line 234  case ${METHOD} in Line 234  case ${METHOD} in
234   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."
235    
236   # source the highest magefile of this pkg   # source the highest magefile of this pkg
237   source $(get_highest_magefile ${PCAT} ${MAGENAME})   PKGNAME=$(get_value_from_magefile PKGNAME $(get_highest_magefile ${PCAT} ${MAGENAME}))
238    
239     # package is masked
240     [ -z "${PKGNAME}" ] && die "Package '${MAGENAME}' is masked and not available for installation."
241    
242   # convert PKGNAME to PNAME/PVER/PBUILD   # convert PKGNAME to PNAME/PVER/PBUILD
243   # we're working *only* with these three vars from here on   # we're working *only* with these three vars from here on
# Line 245  case ${METHOD} in Line 248  case ${METHOD} in
248   if is_installed ${PCAT}/${PNAME}-${PVER}-${PBUILD}   if is_installed ${PCAT}/${PNAME}-${PVER}-${PBUILD}
249   then   then
250   echo -en "Package "   echo -en "Package "
251   echo -en "${COLRED}${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"   echo -en "${COLRED}${PCAT}/${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"
252   echo -e  " already installed."   echo -e  " already installed."
253   exit 3   exit 3
254   fi   fi
# Line 261  case ${METHOD} in Line 264  case ${METHOD} in
264   # first fetch all packages   # first fetch all packages
265   fetch_packages ${ALLDEPS} || die "fetching packages"   fetch_packages ${ALLDEPS} || die "fetching packages"
266   md5sum_packages ${ALLDEPS} || die "md5 sum packages"   md5sum_packages ${ALLDEPS} || die "md5 sum packages"
  unpack_packages ${ALLDEPS} || die "unpacking packages"  
267   install_packages ${ALLDEPS} || die "installing packages"   install_packages ${ALLDEPS} || die "installing packages"
268   ;;   ;;
269    
270   srcinstall)   srcinstall)
271     have_root_privileges || die "You must be root to run this operation."
272    
273   # first of all get the right pkg which going to be installed   # first of all get the right pkg which going to be installed
274   PCAT="$(pname2pcat ${MAGENAME})"   PCAT="$(pname2pcat ${MAGENAME})"
275    
# Line 273  case ${METHOD} in Line 277  case ${METHOD} in
277   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."
278    
279   # source the highest magefile of this pkg   # source the highest magefile of this pkg
280   source $(get_highest_magefile ${PCAT} ${MAGENAME})   PKGNAME=$(get_value_from_magefile PKGNAME $(get_highest_magefile ${PCAT} ${MAGENAME}))
281    
282     # package is masked
283     [ -z "${PKGNAME}" ] && die "Package '${MAGENAME}' is masked and not available for installation."
284    
285   # convert PKGNAME to PNAME/PVER/PBUILD   # convert PKGNAME to PNAME/PVER/PBUILD
286   # we're working *only* with these three vars from here on   # we're working *only* with these three vars from here on
# Line 284  case ${METHOD} in Line 291  case ${METHOD} in
291   if is_installed ${PCAT}/${PNAME}-${PVER}-${PBUILD}   if is_installed ${PCAT}/${PNAME}-${PVER}-${PBUILD}
292   then   then
293   echo -en "Package "   echo -en "Package "
294   echo -en "${COLRED}${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"   echo -en "${COLRED}${PCAT}/${PNAME}-${PVER}-${PBUILD}${COLDEFAULT}"
295   echo -e  " already installed."   echo -e  " already installed."
296   exit 3   exit 3
297   fi   fi
# Line 301  case ${METHOD} in Line 308  case ${METHOD} in
308   ;;   ;;
309    
310   uninstall)   uninstall)
311   ALLDEPS="$(get_uninstall_candidates --pname ${MAGENAME})"   have_root_privileges || die "You must be root to run this operation."
312   if [ -z "${ALLDEPS}" ]  
313   then   ALLDEPS="$(get_uninstall_candidates --pname ${MAGENAME})"
314   die "No package installed named '${MAGENAME}'."   if [ -z "${ALLDEPS}" ]
315   fi   then
316   uninstall_packages ${ALLDEPS}   die "No package installed named '${MAGENAME}'."
317     fi
318     uninstall_packages ${ALLDEPS}
319   ;;   ;;
320    
321   uppretend|srcuppretend)   uppretend|srcuppretend)
# Line 318  case ${METHOD} in Line 327  case ${METHOD} in
327   --pbuild ${METHOD}   --pbuild ${METHOD}
328   ;;   ;;
329    
330   upgrade|srcupgrade)   upgrade)
331     have_root_privileges || die "You must be root to run this operation."
332    
333     # get all dependencies of *all* installed packages
334     # fake pcat,pname,pver,pbuild ...
335     ALLDEPS="$(${MLIBDIR}/depwalker.sh \
336     --method ${METHOD} \
337     --pcat ${METHOD} \
338     --pname ${METHOD} \
339     --pver ${METHOD} \
340     --pbuild ${METHOD})"
341    
342     # first fetch all packages
343     fetch_packages ${ALLDEPS} || die "fetching packages"
344     md5sum_packages ${ALLDEPS} || die "md5 sum packages"
345     install_packages ${ALLDEPS} || die "installing packages"
346     ;;
347    
348     srcupgrade)
349     have_root_privileges || die "You must be root to run this operation."
350    
351   # get all dependencies of *all* installed packages   # get all dependencies of *all* installed packages
352   # fake pcat,pname,pver,pbuild ...   # fake pcat,pname,pver,pbuild ...
353   ALLDEPS="$(${MLIBDIR}/depwalker.sh \   ALLDEPS="$(${MLIBDIR}/depwalker.sh \
# Line 328  case ${METHOD} in Line 357  case ${METHOD} in
357   --pver ${METHOD} \   --pver ${METHOD} \
358   --pbuild ${METHOD})"   --pbuild ${METHOD})"
359    
360   echo "DEBUG: ${ALLDEPS}"   install_packages --src-install ${ALLDEPS} || die "src-installing packages"
361   ;;   ;;
362    
363   search)   search)
# Line 336  case ${METHOD} in Line 365  case ${METHOD} in
365   ;;   ;;
366    
367   unpack)   unpack)
368     have_root_privileges || die "You must be root to run this operation."
369    
370   # first of all get the right pkg which going to be installed   # first of all get the right pkg which going to be installed
371   PCAT="$(pname2pcat ${MAGENAME})"   PCAT="$(pname2pcat ${MAGENAME})"
372    
# Line 343  case ${METHOD} in Line 374  case ${METHOD} in
374   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."   [ -z "${PCAT}" ] && die "Package '${MAGENAME}' does not exist."
375    
376   # source the highest magefile of this pkg   # source the highest magefile of this pkg
377   source $(get_highest_magefile ${PCAT} ${MAGENAME})   PKGNAME=$(get_value_from_magefile PKGNAME $(get_highest_magefile ${PCAT} ${MAGENAME}))
378    
379     # package is masked
380     [ -z "${PKGNAME}" ] && die "Package '${MAGENAME}' is masked and not available for installation."
381    
382   # convert PKGNAME to PNAME/PVER/PBUILD   # convert PKGNAME to PNAME/PVER/PBUILD
383   # we're working *only* with these three vars from here on   # we're working *only* with these three vars from here on
# Line 364  case ${METHOD} in Line 398  case ${METHOD} in
398   ;;   ;;
399    
400   update)   update)
401     have_root_privileges || die "You must be root to run this operation."
402   syncmage   syncmage
403   ;;   ;;
404    
405     update-tarball)
406     have_root_privileges || die "You must be root to run this operation."
407     syncmage_tarball
408     ;;
409    
410   clean)   clean)
411     have_root_privileges || die "You must be root to run this operation."
412   cleanpkg   cleanpkg
413   ;;   ;;
414    
415   version)   version)
416   showversion   # showversion
417     exit 0
418   ;;   ;;
419    
420   regen-mage-tree)   regen-mage-tree)
421     have_root_privileges || die "You must be root to run this operation."
422    
423   if [ -z "${SMAGESCRIPTSDIR}" ] || [ ! -d "${SMAGESCRIPTSDIR}" ]   if [ -z "${SMAGESCRIPTSDIR}" ] || [ ! -d "${SMAGESCRIPTSDIR}" ]
424   then   then
425   echo "SMAGESCRIPTSDIR not found. Check your mage.rc or check out smage repos."   echo "SMAGESCRIPTSDIR not found. Check your mage.rc or check out smage repos."
# Line 387  case ${METHOD} in Line 431  case ${METHOD} in
431   done   done
432   ;;   ;;
433    
434     print-features)
435     mprintfeatures
436     ;;
437    
438   *)   *)
439   print_usage   print_usage
440   ;;   ;;

Legend:
Removed from v.239  
changed lines
  Added in v.2210