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