check if installed
[build.git] / build.common
1 # -*-Shell-script-*-
2 #
3 # $Id$
4 # $URL$
5 #
6 # Common functions for build scripts used by various packages
7 # incorporated (e.g., build, myplc, myplc-devel, vserver-reference)
8 #
9 # Marc E. Fiuczynski <mef@cs.princeton.edu>
10 # Copyright (C) 2007 The Trustees of Princeton University
11 #
12 # supported distros f8, f10, f12, centos5
13 #
14 # for locating pkgs.py
15 export PATH=.:$PATH
16
17 # returns 'Fedora' or 'CentOS' for now
18 function pl_getDistro() {
19     if [ -f "/etc/redhat-release" ] ; then
20         distro=$(awk ' { print $1 } ' /etc/redhat-release)
21         case $distro in Red*) distro="Redhat" ; esac
22     else
23         echo "build.common.pl_getDistro-unknown"
24         exit 1
25     fi
26     echo "$distro"
27     return 0
28 }
29
30 # returns something like 8, 10, or 5.3
31 function pl_getRelease() {
32     if [ -f "/etc/redhat-release" ] ; then
33         release=$(awk ' { if ($1=="Fedora" && $2=="Core") print $4 ; if (($1=="Fedora" && $2!="Core")||$1=="CentOS") print $3 ; if ($1=="Red") print $6 } ' /etc/redhat-release)
34     else
35         echo "build.common.pl_getRelease-unknown"
36         exit 1
37     fi
38     # keep only the major number
39     echo "$release" | cut -d. -f1
40     return 0
41 }
42
43 # returns stuff for vserver, i.e. something like 'f8' or 'centos5'
44 function pl_getReleaseName () {
45     distro=$1; shift
46     release=$1; shift
47     case $distro in
48         [Ff]edora*)
49             releasename=f$release
50             ;;
51         [Re]edhat*)
52             releasename=rhel6
53             ;;
54         [Cc]entOS*)
55             old_IFS="$IFS"
56             IFS="."
57             set -- $release
58             IFS="$old_IFS"
59             releasename=centos$1
60             ;;
61         *)
62             releasename="unknown-name-for-${pl_DISTRO}-please-edit-build.common"
63             echo 1>&2 "build.common: WARNING - releasename not set for distro=$distro" 
64             return 1
65             ;;
66     esac
67     echo "$releasename"
68     return 0
69 }
70
71 # on fedora 8 or above, we use libnl from the stock repos
72 # on centos5 we build it locally
73 function pl_getKexcludes () {
74     distroname=$1; shift
75     case $distroname in
76         f*)
77             echo 'kernel kernel-PAE kernel-PAEdebug kernel-vserver kernel-devel kernel-headers kernel-debuginfo util-vserver* iptables iptables-ipv6 iproute drupal' ;;
78         centos5)
79             echo 'kernel kernel-vserver kernel-devel kernel-headers kernel-debuginfo util-vserver* iptables iproute drupal inotify-tools* libnl' ;;
80         *)
81             echo "pl_DISTRO_NAME=$pl_DISTRO_NAME not supported in getexcludes.sh" ; exit 1 ;;
82     esac
83 }
84
85 # figure out which redhat distro we are using (fedora, centos, redhat)
86 pl_DISTRO=$(pl_getDistro)
87
88 # select basearch of the host devel environment - protected for macos for local tests
89 pl_DISTRO_ARCH=$(uname -i 2>/dev/null|| echo unknownarch)
90
91 # the release number (plain number)
92 pl_DISTRO_RELEASE=$(pl_getRelease)
93
94 # the release name - for vserver build ...
95 pl_DISTRO_NAME=$(pl_getReleaseName $pl_DISTRO $pl_DISTRO_RELEASE)
96
97 # the packages to exclude
98 pl_KEXCLUDES=$(pl_getKexcludes $pl_DISTRO_NAME)
99
100 # get path to appropriate yumgroups.xml file
101 # Thierry: quick & dirty improvement 
102 # this file is updated by the toplevel build, from the .pkgs files
103 pl_DISTRO_YUMGROUPS="../../../RPMS/yumgroups.xml"
104
105 function pl_process_fedora_options () {
106     # Get options
107     shiftcount=0
108     while getopts "l:r:a:h" opt ; do
109         case $opt in
110             l)
111                 pl_DISTRO_URL=$OPTARG
112                 let shiftcount=$shiftcount+2
113                 ;;
114             r)
115                 pl_DISTRO_RELEASE=$OPTARG
116                 let shiftcount=$shiftcount+2
117                 ;;
118             a)
119                 pl_DISTRO_ARCH=$OPTARG
120                 let shiftcount=$shiftcount+2
121                 ;;
122             h|*)
123                 echo "Usage: $0 [OPTION]..."
124                 echo "  -l url          distro mirror location (default: $pl_DISTRO_URL)"
125                 echo "  -r release      distro release number (default: $pl_DISTRO_RELEASE)"
126                 echo "  -a arch         distro architecture (default: $pl_DISTRO_ARCH)"
127                 echo "where distro can be either fedora, centos, or redhat"
128                 echo "  -h              This message"
129                 exit 1
130                 ;;
131         esac
132     done
133     return $shiftcount
134 }
135
136 ######################################## handling a root image
137 function pl_root_rpm_macros () {
138     cat <<EOF
139 %_install_langs C:en_US:en
140 %_netsharedpath /proc:/dev/pts:/usr/share/info
141 %_excludedocs 1
142 %__file_context_path /dev/null
143 EOF
144 }
145
146 function pl_root_makedevs() {
147     vroot=$1
148     # Clean ${vroot}/dev, but only when ${vroot}!=""
149     [ -n $vroot ] && rm -rf $vroot/dev
150     
151     mkdir -p $vroot/dev
152     mknod -m 666 $vroot/dev/null c 1 3
153     mknod -m 666 $vroot/dev/zero c 1 5
154     mknod -m 666 $vroot/dev/full c 1 7
155     mknod -m 644 $vroot/dev/random c 1 8
156     mknod -m 644 $vroot/dev/urandom c 1 9
157     mknod -m 666 $vroot/dev/tty c 5 0
158     mknod -m 666 $vroot/dev/ptmx c 5 2
159     # For bash command substitution
160     ln -nsf ../proc/self/fd $vroot/dev/fd
161
162     # For df and linuxconf
163     touch $vroot/dev/hdv1
164
165     # For pseudo ttys
166     mkdir -p $vroot/dev/pts
167
168     # (Might have to remove the following for vserver-reference.)
169
170     # for tmpfs mount
171     mkdir -p $vroot/dev/shm
172
173     # For TUN/TAP
174     mkdir -p $vroot/dev/net
175     mknod -m 600 $vroot/dev/net/tun c 10 200
176
177     # For mkinitrd (in case a kernel is being installed)
178     # As well for loop back mounting within a vserver. 
179     for i in $(seq 0 255) ; do
180         mknod -m 640 $vroot/dev/loop$i b 7 $i
181     done
182 }
183
184 function mkfedora_usage() {
185     echo "Usage: pl_root_mkfedora [OPTION]... basedir pldistro pkgsfile(s)"
186     echo "      -l url          Fedora mirror location."
187     echo "                      Defaults are searched in <pldistro>.mirrors"
188     echo "      -v              Be verbose"
189     echo "      -h              This message"
190     echo " target selection (defaults based on current build vserver)"
191     echo "      -r release      Fedora release number (default: $releasever)"
192     echo "      -a arch         Fedora architecture (default: $basearch)"
193     exit 1
194 }
195
196 function pl_root_mkfedora () {
197
198     echo "* Entering pl_root_mkfedora" "$@"
199
200     if [ $UID -ne 0 ] ; then
201         echo "Error: You must run this script as root."
202         exit 1
203     fi
204
205 # Verbosity
206     verbose=0
207
208 # Release and architecture to install : defaults to current vserver's settings or previously parsed fedora_options
209     releasever=$pl_DISTRO_RELEASE
210     basearch=$pl_DISTRO_ARCH
211
212 # Get options
213     while getopts "vh" opt ; do
214         case $opt in
215             v) verbose=1; set -x ;;
216             h|*) mkfedora_usage ;;
217         esac
218     done
219
220     shift $(($OPTIND - 1))
221     [[ "$#" -lt 3 ]] && mkfedora_usage
222     vroot=$1 ; shift
223     pldistro=$1 ; shift
224     pkgsfile="$@"
225     vroot=$(cd $vroot && pwd -P)
226     [ -d $vroot ] || mkfedora_usage
227
228
229     # parse pkgsfile and add to local vars
230     fcdistro=${pl_DISTRO_NAME}
231     pkgs_packages=$(pl_parsePkgs package $fcdistro $pldistro $pkgsfile) 
232     pkgs_groups=$(pl_parsePkgs group $fcdistro $pldistro $pkgsfile)
233     # what can get trashed to save space
234     pkgs_junk=$(pl_parsePkgs junk $fcdistro $pldistro $pkgsfile)
235     # but not this
236     pkgs_precious=$(pl_parsePkgs precious $fcdistro $pldistro $pkgsfile)
237     # formerly related to mkfedora -k : packages to take from our own build 
238     # and thus need be excluded frem the stock repos
239     pkgs_kexcludes=$(pl_parsePkgs kexclude $fcdistro $pldistro $pkgsfile | sed -e s,@KEXCLUDE@,"$pl_KEXCLUDES",)
240     # get mirrors if not specified with -l
241     if [ -z "$mirrors" ] ; then
242         mirrorsfile=$(pl_locateDistroFile ../build/ $pldistro "$pldistro.mirrors")
243         mirrors=$(pl_parsePkgs mirror $fcdistro $pldistro $mirrorsfile)
244     fi
245
246     kexclude_line=""
247     [ -n "$pkgs_kexcludes" ] && kexclude_line="exclude=$pkgs_kexcludes"
248
249     echo "$0: candidate mirrors"
250     for mirror in $mirrors ; do
251         echo "* candidate mirror $mirror"
252     done
253
254     # the repo part of the final yum.conf
255     yum_conf_repos=$vroot/xxxmkfedora-repos.confxxx
256     if ! yumconf_mirrors $yum_conf_repos ../build/ $fcdistro "$kexclude_line" $mirrors ; then
257         echo xxx -- error ; return 1
258     fi
259     
260     # Do not tolerate errors
261     set -e
262
263     public_gpg_key=$(yumconf_gpgkey $yum_conf_repos)
264
265     ## make rpms ignore installing stuff to special fs entries like /proc
266     # Because of https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=52725
267     # you have to use at least one language beside 'C'
268     # Prevent all locales from being installed in reference image
269     mkdir -p $vroot/etc/rpm
270     pl_root_rpm_macros > $vroot/etc/rpm/macros 
271
272     # Trick rpm and yum, who read the real root /etc/rpm/macros file
273     # rather than the one installed in the reference image, despite what
274     # you might expect the --root and --installroot options to mean. Both
275     # programs always read $HOME/.rpmmacros.
276     export HOME=$vroot/tmp
277     mkdir -p $vroot/tmp
278     pl_root_rpm_macros > $vroot/tmp/.rpmmacros
279
280     function mkfedora_cleanup () {
281         umount -l $vroot/proc
282         umount -l $vroot/dev/shm
283         umount -l $vroot/dev/pts
284     }
285
286     # Clean up before exiting if anything goes wrong
287     trap "mkfedora_cleanup" ERR INT
288
289     # Mount in reference image
290     mount -t devpts none $vroot/dev/pts
291     mount -t tmpfs none $vroot/dev/shm
292     mkdir -p $vroot/proc
293     mount -t proc none $vroot/proc
294     
295     # Create a /var/lib dirs for yum & rpm
296     mkdir -p $vroot/var/lib/yum
297     mkdir -p $vroot/var/lib/rpm
298     mkdir -p $vroot/usr/share/info
299
300     # Create a dummy /etc/fstab in reference image
301     mkdir -p $vroot/etc
302     cat >$vroot/etc/fstab <<EOF
303 # This fake fstab exists only to please df and linuxconf.
304 /dev/hdv1       /       ext2    defaults        1 1
305 EOF
306     cp $vroot/etc/fstab $vroot/etc/mtab
307
308     # Necessary for some scripts
309     mkdir -p $vroot/etc/sysconfig
310     echo "NETWORKING=yes" > $vroot/etc/sysconfig/network
311
312     # Initialize RPM database in reference image
313     mkdir -p $vroot/var/lib/rpm
314     rpm --root $vroot --initdb
315     rpm --root $vroot --import $public_gpg_key
316
317     # Initialize yum in reference image
318     mkdir -p $vroot/var/cache/yum $vroot/var/log
319
320 # yum.conf is for building only - store in different location than /etc/yum.conf
321     yum_conf=$vroot/etc/mkfedora-yum.conf
322     cat > $yum_conf <<EOF
323 [main]
324 cachedir=/var/cache/yum
325 debuglevel=2
326 logfile=/var/log/yum.log
327 pkgpolicy=newest
328 distroverpkg=redhat-release
329 tolerant=1
330 exactarch=1
331 retries=20
332 obsoletes=1
333 gpgcheck=0
334 # Prevent yum-2.4 from loading additional repository definitions
335 # (e.g., from /etc/yum.repos.d/)
336 reposdir=/dev/null
337 EOF
338     
339     cat $yum_conf_repos >> $yum_conf
340
341     # If we are being built as part of an automated RPM build, solve the
342     # bootstrap problem by including any just built packages in the yum
343     # configuration. This cooperates with the PlanetLab build system.
344     if [ -n "$RPM_BUILD_DIR" ] ; then
345         RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P)
346         # If run under sudo, allow user to delete the headers/ and
347         # repodata/ directories.
348         if [ -n "$SUDO_USER" ] ; then
349             chown -R $SUDO_USER $RPM_RPMS_DIR
350         fi
351         cat >> $yum_conf <<EOF
352
353 [building]
354 name=Building - $basearch - $RPM_RPMS_DIR/
355 baseurl=file://$RPM_RPMS_DIR/
356 EOF
357 fi
358
359     echo "========== Dumping $yum_conf"
360     cat $yum_conf
361     echo "========== EndDump $yum_conf"
362
363     yum_options=""
364 #    yum --help | grep verbose &> /dev/null && yum_options="$yum_options --verbose"
365     yum_options="$yum_options -y"
366     yum_options="$yum_options -c $yum_conf"
367     yum_options="$yum_options --installroot=$vroot"
368
369     # glibc must be specified explicitly for the correct arch to be
370     # chosen.
371     echo "* Installing glibc"
372     # ignore yum's return code that is basically undefined
373     yum $yum_options install glibc || :
374
375     # Go, baby, go
376     if [ -n "$pkgs_packages" ] ; then
377         echo "* Installing optional packages" $pkgs_packages
378         # ignore yum's return code that is basically undefined
379         yum $yum_options install $pkgs_packages || :
380         if ! rpm --root $vroot -q $pkgs_packages >/dev/null ; then
381             echo "* Warning: Missing packages"
382             rpm --root $vroot -q $pkgs_packages | grep "not installed"
383         fi
384     fi
385
386     if [ -n "$pkgs_groups" ] ; then
387        ## call yum sequentially to get finer-grained info on dependencies
388         for group_plus in $pkgs_groups ; do
389             group=$(echo $group_plus | sed -e "s,+++, ,g")
390             echo "* Installing optional group $group" 
391             # ignore yum's return code that is basically undefined
392             yum $yum_options groupinstall "$group" || :
393         done
394     fi
395
396     # formerly in bootcd/prep.sh : to optimize footprint
397     if [ -n "$pkgs_junk" ] ; then
398         echo "* Removing unnecessary junk"
399         pushd $vroot
400         # Save precious files
401         [ -n "$pkgs_precious" ] && tar --ignore-failed-read -cpf precious.tar $pkgs_precious
402         # Remove unnecessary junk
403         [ -n "$pkgs_junk" ] && rm -rf $pkgs_junk
404         # Restore precious files
405         [ -n "$pkgs_precious" ] && tar -xpf precious.tar && rm -f precious.tar
406         popd
407     fi
408
409     # Clean yum cache
410     echo "* Cleaning up"
411     # ignore yum's return code that is basically undefined
412     yum $yum_options clean all || :
413
414     # Clean RPM state
415     rm -f $vroot/var/lib/rpm/__db*
416
417     # Set time zone to UTC
418     if [ -f $vroot/usr/share/zoneinfo/UTC -a -f $vroot/etc/localtime ] ; then
419         rm -f $vroot/etc/localtime
420         ln -s /usr/share/zoneinfo/UTC $vroot/etc/localtime
421     fi
422
423     echo "Dumping current list of rpms in /etc/mkfedora-rpms.txt"
424     chroot $vroot rpm -aq | sort > $vroot/etc/mkfedora-rpms.txt
425
426     # remove trap handler, as we are about to call it directly.
427     trap - ERR INT
428
429     # Clean up
430     mkfedora_cleanup
431
432     # link to our version of kernel/initrd
433     pushd $vroot/boot/
434     rm -rf kernel-boot kernel-bootsmp initrd-boot initrd-bootsmp
435     ln -s vmlinuz-*${pldistro}* kernel-boot
436     ln -s vmlinuz-*${pldistro}* kernel-bootsmp
437     ln -s initrd-*${pldistro}* initrd-boot
438     ln -s initrd-*${pldistro}* initrd-bootsmp
439     # we let kernel-debug to be installed to satisfy dependencies. it's time to clean up.
440     rpm --root $vroot -q kernel-debug >& /dev/null
441     if [ $? -eq 0 ]; then rpm -e --nodeps --root $vroot kernel-debug; fi
442     popd
443
444     return 0
445 }
446
447 function pl_root_tune_image () {
448     root=$1; shift
449
450     # Disable all services in reference image
451     chroot $root sh -c "/sbin/chkconfig --list | awk '{ print \$1 }' | xargs -i /sbin/chkconfig {} off"
452
453     # FC2 minilogd starts up during shutdown and makes unmounting
454     # impossible. Just get rid of it.
455     rm -f $root/sbin/minilogd
456     ln -nsf /bin/true $root/sbin/minilogd
457
458     # This tells the Boot Manager that it is okay to update
459     # /etc/resolv.conf and /etc/hosts whenever the network configuration
460     # changes. Users are free to delete this file.
461     touch $root/etc/AUTO_UPDATE_NET_FILES
462 }
463
464 # Move specified directories out of a src tree into a dst tree, and
465 # then for each moved directory create a symlink in src to dst.
466 function pl_move_dirs() {
467     root=$1
468     data=$2
469     store=$3
470     shift 3
471
472     mkdir -p $root/data
473     for datadir in "$@" ; do
474         mkdir -p ${data}${datadir}
475         if [ -d ${root}/${datadir} -a ! -h ${root}/${datadir} ] ; then
476             (cd ${root} && find ./${datadir} | cpio -p -d -u ../${data}/)
477         fi
478         rm -rf ${root}/${datadir}
479         mkdir -p $(dirname ${root}/${datadir})
480         ln -nsf ${store}/${datadir} ${root}/${datadir}
481     done
482 }
483
484 # Construct an image file from given some directory
485 # XXX in the future maybe use livecdtools?
486 function pl_make_image() {
487     root=$1
488     image=$2
489     extraspace=$3
490
491     # Leave about 100 MB free space and allow for about 20% inode overhead
492     bytes=$((($(du -sb $root | cut -f1) + $extraspace) * 120 / 100))
493     bs=4096
494     blocks=$(($bytes / $bs))
495     dd bs=$bs count=$blocks if=/dev/zero of=$image
496     mkfs.ext3 -b $bs -j -F $image
497
498     # Temporarily mount it
499     tmp=$(mktemp -d tmp.XXXXXX)
500     mount -o loop $image $tmp
501     trap "umount $tmp; rmdir $tmp" ERR INT
502
503     # Move files to it
504     (cd $root && tar cpf - .) | (cd $tmp && tar xpf -)
505
506     # Unmount it
507     umount $tmp
508     rmdir $tmp
509     trap - ERR INT
510 }
511
512 # Fix permissions on tmp directories
513 function pl_fixtmp_permissions() {
514     root=$1
515     chmod 1777 $root/tmp $root/usr/tmp $root/var/tmp
516 }
517
518 function pl_fixdirs() {
519     root=$1
520     datadirs=$2
521     for datadir in datadirs ; do
522         if [ -h ${root}/${datadir} ] ; then
523             rm -f ${root}/${datadir}
524             mkdir -p ${root}/${datadir}
525         fi
526     done
527 }
528
529 ########## .pkgs format
530 # Usage: pl_parsePkgs keyword [-a arch] fcdistro pldistro pkgs-file[..s]
531 # pkgs.py should be found in PATH, like this file build.common
532 function pl_parsePkgs () {
533     target_arch=$pl_DISTRO_ARCH
534     keyword=$1;shift
535     [ "$1" == "-a" ] && { shift; target_arch="$1"; shift; }
536     fcdistro=$1; shift
537     pldistro=$1; shift
538
539     pkgs.py -a $target_arch -f $fcdistro -d $pldistro $keyword "$@" 
540 }
541 # usage: pl_getPackages [-a arch] fcdistro pldistro pkg-file[..s]
542 function pl_getPackages() { pl_parsePkgs package "$@" ; }
543 function pl_getGroups() { pl_parsePkgs group "$@" ; }
544
545 ##############################
546 ### temporary - only for checking the new python version
547 # for a given keyword like 'package' :
548 # we support fcdistro-dependant format, for tokens (pkgname) without whitespace
549 # you can e.g. use
550 # package: pkg1 .. pkgn 
551 # package+f8: pkg1 .. pkgn
552 # package-f8: pkg1 .. pkgn
553
554 # values can contain @arch@, @fcdistro@ or @pldistro@ that are replaced with the current values
555 #
556 # the reason for the -a option is for when we build the build vserver itself; in this case
557 # pl_DISTRO_ARCH is the one we obtain from the root context, and that's wrong
558 # specify -sa arch AFTER keyword, so as to keep pl_getPackages and pl_getGroups simple
559 #
560 function pl_parsePkgs_old () {
561
562     target_arch=$pl_DISTRO_ARCH
563     keyword=$1;shift
564     [ "$1" == "-a" ] && { shift; target_arch="$1"; shift; }
565     fcdistro=$1; shift
566     pldistro=$1; shift
567     # remaining arguments are paths to the pkgs files
568
569     # grab regular descriptions
570     all=$(grep -v '^#' "$@" | grep --regexp="^${keyword}:" | sed -e "s,${keyword}:,,")
571     # grab additions
572     add=$(grep -v '^#' "$@" | grep --regexp="^${keyword}+${fcdistro}:" | sed -e "s,${keyword}+${fcdistro}:,,")
573     # grab exclusions
574     sub=$(grep -v '^#' "$@" | grep --regexp="^${keyword}-${fcdistro}:" | sed -e "s,${keyword}-${fcdistro}:,,")
575
576     for rpm in $all $add; do
577         for exclude in $sub; do
578             [ "$rpm" = "$exclude" ] && continue 2
579         done
580         echo "${rpm} " | sed -e "s,@arch@,${target_arch},g" -e "s,@fcdistro@,$fcdistro,g" -e "s,@pldistro@,$pldistro,g"
581     done
582     return 0
583 }
584 ##############################
585
586 # locates a pldistro-dependant file
587 # tries first in build/<pldistro>/, then in build/planetlab/
588 function pl_locateDistroFile () {
589     builddir=$1; shift
590     pldistro=$1; shift
591     pkgsfile=$1; shift
592
593     pkgspath=""
594     # if config dir is missing but a .svnpath or a .gitpath exists, use it to extract the config dir
595     configdir="$builddir/config.${pldistro}"
596     if [ ! -d $configdir ] ; then
597         if [ -f "${configdir}.svnpath" -o -f "${configdir}.gitpath" ] ; then
598             echo 1>&2 "Invoking make to extract remote config.${pldistro}"
599             make 1>&2 --silent --no-print-directory -C $builddir stage1=true config.${pldistro}
600         fi
601     fi
602     # locate it
603     paths="$builddir/config.$pldistro/$pkgsfile $builddir/config.planetlab/$pkgsfile"
604     for path in $paths; do
605         if [ -f $path ] ; then
606             pkgspath=$path
607             break
608         fi
609     done
610     if [ -z "$pkgspath" ] ; then
611         echo 1>&2 "pl_locateDistroFile - in $(pwd) : cannot locate $pkgsfile in $builddir"
612         echo 1>&2 "candidates were $paths"
613         echo "not-found-by-pl_locateDistroFile"
614         return 1
615     else
616         echo 1>&2 "pl_locateDistroFile: using $pkgspath"
617         echo $pkgspath
618         return 0
619     fi
620 }
621
622 function yumgroups_from_pkgs () {
623     builddir=$1; shift
624     pldistro=$1; shift
625     fcdistro=$1; shift
626     pkgsnames=$@
627
628     sedargs="-e s,@FCDISTRO@,$fcdistro,g"
629
630    cat <<__header
631 <?xml version="1.0"?>
632 <!DOCTYPE comps PUBLIC "-//Red Hat, Inc.//DTD Comps info//EN" "comps.dtd">
633 <comps>
634 __header
635
636     for pkgsname in $pkgsnames; do
637         pkgsfile=$(pl_locateDistroFile $builddir $pldistro $pkgsname)
638         packages=$(pl_getPackages $fcdistro $pldistro $pkgsfile)
639
640         groupname=$(pkgs.py groupname $pkgsfile | sed $sedargs)
641         groupdesc=$(pkgs.py groupdesc $pkgsfile | sed $sedargs)
642
643         if [ -z "$groupname" -o -z "$groupdesc" ] ; then
644             echo "Cannot find groupname: and groupdesc: in $pkgsfile -- skipped" 1>&2
645             continue
646         fi
647         
648         cat << __group_header
649   <group>
650     <id>$(echo $groupname|tr A-Z a-z)</id>
651     <name>$groupname</name>
652     <description>$groupdesc</description>
653     <uservisible>true</uservisible>
654     <packagelist>
655 __group_header
656         for package in $packages; do 
657             echo "<packagereq type=\"mandatory\">$package</packagereq>"
658         done
659         cat << __group_footer
660     </packagelist>
661   </group>
662 __group_footer
663     done
664 cat <<__footer
665 </comps>
666 __footer
667 }
668
669
670 function build_fetch () {
671     curl --fail --silent --max-time 60 --output /dev/null "$1" 
672 }
673
674 # tries to compute a valid yum.conf for that pldistro from the template in mirroring/
675 # returns 0 and writes <dest_yumconf> on success
676 # returns 1 on failure, in which case <dest_yumconf> is deleted
677 function yumconf_mirrors () {
678     dest_yumconf=$1; shift
679     builddir=$1; shift
680     fcdistro=$1; shift
681     kexclude_line="$1" ; shift
682     mirrors="$@"
683
684     template=$builddir/mirroring/$fcdistro/yum.repos.d/building.repo.in
685     
686     if [ ! -f $template ] ; then
687         echo "yumconf_mirrors: cannot locate template $template"
688         rm -f $dest_yumconf
689         return 1
690     fi
691
692     for mirror in $mirrors; do
693         if yumconf_mirror $dest_yumconf $template "$kexclude_line" $mirror; then
694             return 0
695         fi
696     done
697     echo 'yumconf_mirrors in build.common : ran out of mirrors -- BAILING OUT'
698     rm -f $dest_yumconf
699     return 1
700 }
701
702 # computes a yum.conf from the template, and checks that all baseurl defined in there are valid repos
703 # returns 0 on success and 1 on failure
704 function yumconf_mirror () {
705     dest_yumconf=$1; shift
706     template=$1; shift
707     kexclude_line="$1" ; shift
708     mirror=$1; shift
709
710     sed -e "s,@MIRRORURL@,$mirror,g" \
711         -e "/baseurl=/i\\
712 $kexclude_line" $template > $dest_yumconf
713     
714     # capture all lines defining baseurl
715     baseurl_defs=$(grep '^baseurl=' $dest_yumconf)
716     if [ -z "$baseurl_defs" ] ; then
717         return 1
718     fi
719
720     for baseurl_def in $baseurl_defs; do
721         baseurl=$(echo $baseurl_def | sed \
722             -e s,baseurl=,, \
723             -e 's,$basearch,'"$pl_DISTRO_ARCH",g)
724         repomd=$baseurl/repodata/repomd.xml
725
726         echo "* Trying to fetch $repomd"
727         if ! build_fetch $repomd ; then
728             echo "* Failed to fetch $repomd"
729             return 1
730         fi
731     done
732     echo "* Selected mirror $mirror"
733     return 0
734 }
735
736 # from a yum.conf as generated above, computes the (first) gpgkey url
737 function yumconf_gpgkey () {
738     dest_yumconf=$1; shift
739
740     first_line=$(grep '^gpgkey=' $dest_yumconf | head -1)
741     values=$(echo $first_line | sed -e s,gpgkey=,,)
742     value=$(echo $values | awk '{print $1;}' | sed -e 's,$basearch,'"$pl_DISTRO_ARCH",g)
743     [ -n "$value" ] || return 1
744     echo $value
745     return 0
746 }
747
748 # patches a yum conf to insert an exclude line in each declared repo
749 function yumconf_exclude () {
750     repo=$1; shift
751     kexclude_line="$1" ; shift
752     
753     sed -i -e "/#baseurl=.*$/i\\
754 $kexclude_line" $repo
755 }