Merge commit 'local_master/master'
[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 Scientific*) distro="SL" ; 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=="Scientific") print $4 } ' /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         [Cc]entOS*)
52             old_IFS="$IFS"
53             IFS="."
54             set -- $release
55             IFS="$old_IFS"
56             releasename=centos$1
57             ;;
58         [Ss]cientific*)
59             releasename=sl$release
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 multilib_policy=best
334 distroverpkg=redhat-release
335 tolerant=1
336 exactarch=1
337 retries=20
338 obsoletes=1
339 gpgcheck=0
340 # Prevent yum-2.4 from loading additional repository definitions
341 # (e.g., from /etc/yum.repos.d/)
342 reposdir=/dev/null
343 EOF
344     
345     cat $yum_conf_repos >> $yum_conf
346
347     # If we are being built as part of an automated RPM build, solve the
348     # bootstrap problem by including any just built packages in the yum
349     # configuration. This cooperates with the PlanetLab build system.
350     if [ -n "$RPM_BUILD_DIR" ] ; then
351         RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P)
352         # If run under sudo, allow user to delete the headers/ and
353         # repodata/ directories.
354         if [ -n "$SUDO_USER" ] ; then
355             chown -R $SUDO_USER $RPM_RPMS_DIR
356         fi
357         cat >> $yum_conf <<EOF
358
359 [building]
360 name=Building - $basearch - $RPM_RPMS_DIR/
361 baseurl=file://$RPM_RPMS_DIR/
362 EOF
363 fi
364
365     echo "========== Dumping $yum_conf"
366     cat $yum_conf
367     echo "========== EndDump $yum_conf"
368
369     yum_options=""
370 #    yum --help | grep verbose &> /dev/null && yum_options="$yum_options --verbose"
371     yum_options="$yum_options -y"
372     yum_options="$yum_options -c $yum_conf"
373     yum_options="$yum_options --installroot=$vroot"
374
375     # glibc must be specified explicitly for the correct arch to be
376     # chosen.
377     echo "* Installing glibc"
378     # ignore yum's return code that is basically undefined
379     yum $yum_options install glibc || :
380
381     # Go, baby, go
382     if [ -n "$pkgs_packages" ] ; then
383         echo "* Installing optional packages" $pkgs_packages
384         # ignore yum's return code that is basically undefined
385         yum $yum_options install $pkgs_packages || :
386         if ! rpm --root $vroot -q $pkgs_packages >/dev/null ; then
387             echo "* Warning: Missing packages"
388             rpm --root $vroot -q $pkgs_packages | grep "not installed"
389         fi
390     fi
391
392     if [ -n "$pkgs_groups" ] ; then
393        ## call yum sequentially to get finer-grained info on dependencies
394         for group_plus in $pkgs_groups ; do
395             group=$(echo $group_plus | sed -e "s,+++, ,g")
396             echo "* Installing optional group $group" 
397             # ignore yum's return code that is basically undefined
398             yum $yum_options groupinstall "$group" || :
399         done
400     fi
401
402     # formerly in bootcd/prep.sh : to optimize footprint
403     if [ -n "$pkgs_junk" ] ; then
404         echo "* Removing unnecessary junk"
405         pushd $vroot
406         # Save precious files
407         [ -n "$pkgs_precious" ] && tar --ignore-failed-read -cpf precious.tar $pkgs_precious
408         # Remove unnecessary junk
409         [ -n "$pkgs_junk" ] && rm -rf $pkgs_junk
410         # Restore precious files
411         [ -n "$pkgs_precious" ] && tar -xpf precious.tar && rm -f precious.tar
412         popd
413     fi
414
415     # Clean yum cache
416     echo "* Cleaning up"
417
418     # NOTE: this hack is for Fedora >= 12.
419     # if kernel-debug is installed, clean it up
420     # we link to our version of kernel/initrd and clean up
421     # kernel-debug manually
422     if rpm --root $vroot --quiet -q kernel-debug ; then
423         echo "* Cleaning up kernel-debug - (workaround for f12)"
424         pushd $vroot/boot/
425         rm -rf kernel-boot kernel-bootsmp initrd-boot initrd-bootsmp
426         ln -s vmlinuz-*${pldistro}* kernel-boot
427         ln -s vmlinuz-*${pldistro}* kernel-bootsmp
428         ln -s initrd-*${pldistro}* initrd-boot
429         ln -s initrd-*${pldistro}* initrd-bootsmp
430         rpm --root $vroot --nodeps -e kernel-debug || :
431         popd
432     fi
433
434     # ignore yum's return code that is basically undefined
435     yum $yum_options clean all || :
436
437     # Clean RPM state
438     rm -f $vroot/var/lib/rpm/__db*
439
440     # Set time zone to UTC
441     if [ -f $vroot/usr/share/zoneinfo/UTC -a -f $vroot/etc/localtime ] ; then
442         rm -f $vroot/etc/localtime
443         ln -s /usr/share/zoneinfo/UTC $vroot/etc/localtime
444     fi
445
446     echo "Dumping current list of rpms in /etc/mkfedora-rpms.txt"
447     chroot $vroot rpm -aq | sort > $vroot/etc/mkfedora-rpms.txt
448
449     # remove trap handler, as we are about to call it directly.
450     trap - ERR INT
451
452     # Clean up
453     mkfedora_cleanup
454
455     return 0
456 }
457
458 function pl_root_tune_image () {
459     root=$1; shift
460
461     # Disable all services in reference image
462     chroot $root sh -c "/sbin/chkconfig --list | awk '{ print \$1 }' | xargs -i /sbin/chkconfig {} off"
463
464     # FC2 minilogd starts up during shutdown and makes unmounting
465     # impossible. Just get rid of it.
466     rm -f $root/sbin/minilogd
467     ln -nsf /bin/true $root/sbin/minilogd
468
469     # This tells the Boot Manager that it is okay to update
470     # /etc/resolv.conf and /etc/hosts whenever the network configuration
471     # changes. Users are free to delete this file.
472     touch $root/etc/AUTO_UPDATE_NET_FILES
473 }
474
475 # Move specified directories out of a src tree into a dst tree, and
476 # then for each moved directory create a symlink in src to dst.
477 function pl_move_dirs() {
478     root=$1
479     data=$2
480     store=$3
481     shift 3
482
483     mkdir -p $root/data
484     for datadir in "$@" ; do
485         mkdir -p ${data}${datadir}
486         if [ -d ${root}/${datadir} -a ! -h ${root}/${datadir} ] ; then
487             (cd ${root} && find ./${datadir} | cpio -p -d -u ../${data}/)
488         fi
489         rm -rf ${root}/${datadir}
490         mkdir -p $(dirname ${root}/${datadir})
491         ln -nsf ${store}/${datadir} ${root}/${datadir}
492     done
493 }
494
495 # Construct an image file from given some directory
496 # XXX in the future maybe use livecdtools?
497 function pl_make_image() {
498     root=$1
499     image=$2
500     extraspace=$3
501
502     # Leave about 100 MB free space and allow for about 20% inode overhead
503     bytes=$((($(du -sb $root | cut -f1) + $extraspace) * 120 / 100))
504     bs=4096
505     blocks=$(($bytes / $bs))
506     dd bs=$bs count=$blocks if=/dev/zero of=$image
507     mkfs.ext3 -b $bs -j -F $image
508
509     # Temporarily mount it
510     tmp=$(mktemp -d tmp.XXXXXX)
511     mount -o loop $image $tmp
512     trap "umount $tmp; rmdir $tmp" ERR INT
513
514     # Move files to it
515     (cd $root && tar cpf - .) | (cd $tmp && tar xpf -)
516
517     # Unmount it
518     umount $tmp
519     rmdir $tmp
520     trap - ERR INT
521 }
522
523 # Fix permissions on tmp directories
524 function pl_fixtmp_permissions() {
525     root=$1
526     chmod 1777 $root/tmp $root/usr/tmp $root/var/tmp
527 }
528
529 function pl_fixdirs() {
530     root=$1
531     datadirs=$2
532     for datadir in datadirs ; do
533         if [ -h ${root}/${datadir} ] ; then
534             rm -f ${root}/${datadir}
535             mkdir -p ${root}/${datadir}
536         fi
537     done
538 }
539
540 ########## .pkgs format
541 # Usage: pl_parsePkgs keyword [-a arch] fcdistro pldistro pkgs-file[..s]
542 # pkgs.py should be found in PATH, like this file build.common
543 function pl_parsePkgs () {
544     target_arch=$pl_DISTRO_ARCH
545     keyword=$1;shift
546     [ "$1" == "-a" ] && { shift; target_arch="$1"; shift; }
547     fcdistro=$1; shift
548     pldistro=$1; shift
549
550     pkgs.py -a $target_arch -f $fcdistro -d $pldistro $keyword "$@" 
551 }
552 # usage: pl_getPackages [-a arch] fcdistro pldistro pkg-file[..s]
553 function pl_getPackages() { pl_parsePkgs package "$@" ; }
554 function pl_getGroups() { pl_parsePkgs group "$@" ; }
555
556 ##############################
557 ### temporary - only for checking the new python version
558 # for a given keyword like 'package' :
559 # we support fcdistro-dependant format, for tokens (pkgname) without whitespace
560 # you can e.g. use
561 # package: pkg1 .. pkgn 
562 # package+f8: pkg1 .. pkgn
563 # package-f8: pkg1 .. pkgn
564
565 # values can contain @arch@, @fcdistro@ or @pldistro@ that are replaced with the current values
566 #
567 # the reason for the -a option is for when we build the build vserver itself; in this case
568 # pl_DISTRO_ARCH is the one we obtain from the root context, and that's wrong
569 # specify -sa arch AFTER keyword, so as to keep pl_getPackages and pl_getGroups simple
570 #
571 function pl_parsePkgs_old () {
572
573     target_arch=$pl_DISTRO_ARCH
574     keyword=$1;shift
575     [ "$1" == "-a" ] && { shift; target_arch="$1"; shift; }
576     fcdistro=$1; shift
577     pldistro=$1; shift
578     # remaining arguments are paths to the pkgs files
579
580     # grab regular descriptions
581     all=$(grep -v '^#' "$@" | grep --regexp="^${keyword}:" | sed -e "s,${keyword}:,,")
582     # grab additions
583     add=$(grep -v '^#' "$@" | grep --regexp="^${keyword}+${fcdistro}:" | sed -e "s,${keyword}+${fcdistro}:,,")
584     # grab exclusions
585     sub=$(grep -v '^#' "$@" | grep --regexp="^${keyword}-${fcdistro}:" | sed -e "s,${keyword}-${fcdistro}:,,")
586
587     for rpm in $all $add; do
588         for exclude in $sub; do
589             [ "$rpm" = "$exclude" ] && continue 2
590         done
591         echo "${rpm} " | sed -e "s,@arch@,${target_arch},g" -e "s,@fcdistro@,$fcdistro,g" -e "s,@pldistro@,$pldistro,g"
592     done
593     return 0
594 }
595 ##############################
596
597 # locates a pldistro-dependant file
598 # tries first in build/<pldistro>/, then in build/planetlab/
599 function pl_locateDistroFile () {
600     builddir=$1; shift
601     pldistro=$1; shift
602     pkgsfile=$1; shift
603
604     pkgspath=""
605     # if config dir is missing but a .svnpath or a .gitpath exists, use it to extract the config dir
606     configdir="$builddir/config.${pldistro}"
607     if [ ! -d $configdir ] ; then
608         if [ -f "${configdir}.svnpath" -o -f "${configdir}.gitpath" ] ; then
609             echo 1>&2 "Invoking make to extract remote config.${pldistro}"
610             make 1>&2 --silent --no-print-directory -C $builddir stage1=true config.${pldistro}
611         fi
612     fi
613     # locate it
614     paths="$builddir/config.$pldistro/$pkgsfile $builddir/config.planetlab/$pkgsfile"
615     for path in $paths; do
616         if [ -f $path ] ; then
617             pkgspath=$path
618             break
619         fi
620     done
621     if [ -z "$pkgspath" ] ; then
622         echo 1>&2 "pl_locateDistroFile - in $(pwd) : cannot locate $pkgsfile in $builddir"
623         echo 1>&2 "candidates were $paths"
624         echo "not-found-by-pl_locateDistroFile"
625         return 1
626     else
627         echo 1>&2 "pl_locateDistroFile: using $pkgspath"
628         echo $pkgspath
629         return 0
630     fi
631 }
632
633 function yumgroups_from_pkgs () {
634     builddir=$1; shift
635     pldistro=$1; shift
636     fcdistro=$1; shift
637     pkgsnames=$@
638
639     sedargs="-e s,@FCDISTRO@,$fcdistro,g"
640
641    cat <<__header
642 <?xml version="1.0"?>
643 <!DOCTYPE comps PUBLIC "-//Red Hat, Inc.//DTD Comps info//EN" "comps.dtd">
644 <comps>
645 __header
646
647     for pkgsname in $pkgsnames; do
648         pkgsfile=$(pl_locateDistroFile $builddir $pldistro $pkgsname)
649         packages=$(pl_getPackages $fcdistro $pldistro $pkgsfile)
650
651         groupname=$(pkgs.py groupname $pkgsfile | sed $sedargs)
652         groupdesc=$(pkgs.py groupdesc $pkgsfile | sed $sedargs)
653
654         if [ -z "$groupname" -o -z "$groupdesc" ] ; then
655             echo "Cannot find groupname: and groupdesc: in $pkgsfile -- skipped" 1>&2
656             continue
657         fi
658         
659         cat << __group_header
660   <group>
661     <id>$(echo $groupname|tr A-Z a-z)</id>
662     <name>$groupname</name>
663     <description>$groupdesc</description>
664     <uservisible>true</uservisible>
665     <packagelist>
666 __group_header
667         for package in $packages; do 
668             echo "<packagereq type=\"mandatory\">$package</packagereq>"
669         done
670         cat << __group_footer
671     </packagelist>
672   </group>
673 __group_footer
674     done
675 cat <<__footer
676 </comps>
677 __footer
678 }
679
680
681 function build_fetch () {
682     curl --fail --silent --max-time 60 --output /dev/null "$1" 
683 }
684
685 # tries to compute a valid yum.conf for that pldistro from the template in mirroring/
686 # returns 0 and writes <dest_yumconf> on success
687 # returns 1 on failure, in which case <dest_yumconf> is deleted
688 function yumconf_mirrors () {
689     dest_yumconf=$1; shift
690     builddir=$1; shift
691     fcdistro=$1; shift
692     kexclude_line="$1" ; shift
693     mirrors="$@"
694
695     template=$builddir/mirroring/$fcdistro/yum.repos.d/building.repo.in
696     
697     if [ ! -f $template ] ; then
698         echo "yumconf_mirrors: cannot locate template $template"
699         rm -f $dest_yumconf
700         return 1
701     fi
702
703     for mirror in $mirrors; do
704         if yumconf_mirror $dest_yumconf $template "$kexclude_line" $mirror; then
705             return 0
706         fi
707     done
708     echo 'yumconf_mirrors in build.common : ran out of mirrors -- BAILING OUT'
709     rm -f $dest_yumconf
710     return 1
711 }
712
713 # computes a yum.conf from the template, and checks that all baseurl defined in there are valid repos
714 # returns 0 on success and 1 on failure
715 function yumconf_mirror () {
716     dest_yumconf=$1; shift
717     template=$1; shift
718     kexclude_line="$1" ; shift
719     mirror=$1; shift
720
721     sed -e "s,@MIRRORURL@,$mirror,g" \
722         -e "/baseurl=/i\\
723 $kexclude_line" $template > $dest_yumconf
724     
725     # capture all lines defining baseurl
726     baseurl_defs=$(grep '^baseurl=' $dest_yumconf)
727     if [ -z "$baseurl_defs" ] ; then
728         return 1
729     fi
730
731     for baseurl_def in $baseurl_defs; do
732         baseurl=$(echo $baseurl_def | sed \
733             -e s,baseurl=,, \
734             -e 's,$basearch,'"$pl_DISTRO_ARCH",g)
735         repomd=$baseurl/repodata/repomd.xml
736
737         echo "* Trying to fetch $repomd"
738         if ! build_fetch $repomd ; then
739             echo "* Failed to fetch $repomd"
740             return 1
741         fi
742     done
743     echo "* Selected mirror $mirror"
744     return 0
745 }
746
747 # from a yum.conf as generated above, computes the (first) gpgkey url
748 function yumconf_gpgkey () {
749     dest_yumconf=$1; shift
750
751     first_line=$(grep '^gpgkey=' $dest_yumconf | head -1)
752     values=$(echo $first_line | sed -e s,gpgkey=,,)
753     value=$(echo $values | awk '{print $1;}' | sed -e 's,$basearch,'"$pl_DISTRO_ARCH",g)
754     [ -n "$value" ] || return 1
755     echo $value
756     return 0
757 }
758
759 # patches a yum conf to insert an exclude line in each declared repo
760 function yumconf_exclude () {
761     repo=$1; shift
762     kexclude_line="$1" ; shift
763     
764     sed -i -e "/#baseurl=.*$/i\\
765 $kexclude_line" $repo
766 }