let the kernel installed to satisfy dependencies and try cleaning up after creating...
[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-PAE kernel-debug kernel-PAEdebug kernel-vserver kernel-devel kernel-headers kernel-debuginfo util-vserver* iptables iptables-ipv6 iproute drupal' ;;
78         centos5)
79             echo '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     popd
440
441     return 0
442 }
443
444 function pl_root_tune_image () {
445     root=$1; shift
446
447     # Disable all services in reference image
448     chroot $root sh -c "/sbin/chkconfig --list | awk '{ print \$1 }' | xargs -i /sbin/chkconfig {} off"
449
450     # FC2 minilogd starts up during shutdown and makes unmounting
451     # impossible. Just get rid of it.
452     rm -f $root/sbin/minilogd
453     ln -nsf /bin/true $root/sbin/minilogd
454
455     # This tells the Boot Manager that it is okay to update
456     # /etc/resolv.conf and /etc/hosts whenever the network configuration
457     # changes. Users are free to delete this file.
458     touch $root/etc/AUTO_UPDATE_NET_FILES
459 }
460
461 # Move specified directories out of a src tree into a dst tree, and
462 # then for each moved directory create a symlink in src to dst.
463 function pl_move_dirs() {
464     root=$1
465     data=$2
466     store=$3
467     shift 3
468
469     mkdir -p $root/data
470     for datadir in "$@" ; do
471         mkdir -p ${data}${datadir}
472         if [ -d ${root}/${datadir} -a ! -h ${root}/${datadir} ] ; then
473             (cd ${root} && find ./${datadir} | cpio -p -d -u ../${data}/)
474         fi
475         rm -rf ${root}/${datadir}
476         mkdir -p $(dirname ${root}/${datadir})
477         ln -nsf ${store}/${datadir} ${root}/${datadir}
478     done
479 }
480
481 # Construct an image file from given some directory
482 # XXX in the future maybe use livecdtools?
483 function pl_make_image() {
484     root=$1
485     image=$2
486     extraspace=$3
487
488     # Leave about 100 MB free space and allow for about 20% inode overhead
489     bytes=$((($(du -sb $root | cut -f1) + $extraspace) * 120 / 100))
490     bs=4096
491     blocks=$(($bytes / $bs))
492     dd bs=$bs count=$blocks if=/dev/zero of=$image
493     mkfs.ext3 -b $bs -j -F $image
494
495     # Temporarily mount it
496     tmp=$(mktemp -d tmp.XXXXXX)
497     mount -o loop $image $tmp
498     trap "umount $tmp; rmdir $tmp" ERR INT
499
500     # Move files to it
501     (cd $root && tar cpf - .) | (cd $tmp && tar xpf -)
502
503     # Unmount it
504     umount $tmp
505     rmdir $tmp
506     trap - ERR INT
507 }
508
509 # Fix permissions on tmp directories
510 function pl_fixtmp_permissions() {
511     root=$1
512     chmod 1777 $root/tmp $root/usr/tmp $root/var/tmp
513 }
514
515 function pl_fixdirs() {
516     root=$1
517     datadirs=$2
518     for datadir in datadirs ; do
519         if [ -h ${root}/${datadir} ] ; then
520             rm -f ${root}/${datadir}
521             mkdir -p ${root}/${datadir}
522         fi
523     done
524 }
525
526 ########## .pkgs format
527 # Usage: pl_parsePkgs keyword [-a arch] fcdistro pldistro pkgs-file[..s]
528 # pkgs.py should be found in PATH, like this file build.common
529 function pl_parsePkgs () {
530     target_arch=$pl_DISTRO_ARCH
531     keyword=$1;shift
532     [ "$1" == "-a" ] && { shift; target_arch="$1"; shift; }
533     fcdistro=$1; shift
534     pldistro=$1; shift
535
536     pkgs.py -a $target_arch -f $fcdistro -d $pldistro $keyword "$@" 
537 }
538 # usage: pl_getPackages [-a arch] fcdistro pldistro pkg-file[..s]
539 function pl_getPackages() { pl_parsePkgs package "$@" ; }
540 function pl_getGroups() { pl_parsePkgs group "$@" ; }
541
542 ##############################
543 ### temporary - only for checking the new python version
544 # for a given keyword like 'package' :
545 # we support fcdistro-dependant format, for tokens (pkgname) without whitespace
546 # you can e.g. use
547 # package: pkg1 .. pkgn 
548 # package+f8: pkg1 .. pkgn
549 # package-f8: pkg1 .. pkgn
550
551 # values can contain @arch@, @fcdistro@ or @pldistro@ that are replaced with the current values
552 #
553 # the reason for the -a option is for when we build the build vserver itself; in this case
554 # pl_DISTRO_ARCH is the one we obtain from the root context, and that's wrong
555 # specify -sa arch AFTER keyword, so as to keep pl_getPackages and pl_getGroups simple
556 #
557 function pl_parsePkgs_old () {
558
559     target_arch=$pl_DISTRO_ARCH
560     keyword=$1;shift
561     [ "$1" == "-a" ] && { shift; target_arch="$1"; shift; }
562     fcdistro=$1; shift
563     pldistro=$1; shift
564     # remaining arguments are paths to the pkgs files
565
566     # grab regular descriptions
567     all=$(grep -v '^#' "$@" | grep --regexp="^${keyword}:" | sed -e "s,${keyword}:,,")
568     # grab additions
569     add=$(grep -v '^#' "$@" | grep --regexp="^${keyword}+${fcdistro}:" | sed -e "s,${keyword}+${fcdistro}:,,")
570     # grab exclusions
571     sub=$(grep -v '^#' "$@" | grep --regexp="^${keyword}-${fcdistro}:" | sed -e "s,${keyword}-${fcdistro}:,,")
572
573     for rpm in $all $add; do
574         for exclude in $sub; do
575             [ "$rpm" = "$exclude" ] && continue 2
576         done
577         echo "${rpm} " | sed -e "s,@arch@,${target_arch},g" -e "s,@fcdistro@,$fcdistro,g" -e "s,@pldistro@,$pldistro,g"
578     done
579     return 0
580 }
581 ##############################
582
583 # locates a pldistro-dependant file
584 # tries first in build/<pldistro>/, then in build/planetlab/
585 function pl_locateDistroFile () {
586     builddir=$1; shift
587     pldistro=$1; shift
588     pkgsfile=$1; shift
589
590     pkgspath=""
591     # if config dir is missing but a .svnpath or a .gitpath exists, use it to extract the config dir
592     configdir="$builddir/config.${pldistro}"
593     if [ ! -d $configdir ] ; then
594         if [ -f "${configdir}.svnpath" -o -f "${configdir}.gitpath" ] ; then
595             echo 1>&2 "Invoking make to extract remote config.${pldistro}"
596             make 1>&2 --silent --no-print-directory -C $builddir stage1=true config.${pldistro}
597         fi
598     fi
599     # locate it
600     paths="$builddir/config.$pldistro/$pkgsfile $builddir/config.planetlab/$pkgsfile"
601     for path in $paths; do
602         if [ -f $path ] ; then
603             pkgspath=$path
604             break
605         fi
606     done
607     if [ -z "$pkgspath" ] ; then
608         echo 1>&2 "pl_locateDistroFile - in $(pwd) : cannot locate $pkgsfile in $builddir"
609         echo 1>&2 "candidates were $paths"
610         echo "not-found-by-pl_locateDistroFile"
611         return 1
612     else
613         echo 1>&2 "pl_locateDistroFile: using $pkgspath"
614         echo $pkgspath
615         return 0
616     fi
617 }
618
619 function yumgroups_from_pkgs () {
620     builddir=$1; shift
621     pldistro=$1; shift
622     fcdistro=$1; shift
623     pkgsnames=$@
624
625     sedargs="-e s,@FCDISTRO@,$fcdistro,g"
626
627    cat <<__header
628 <?xml version="1.0"?>
629 <!DOCTYPE comps PUBLIC "-//Red Hat, Inc.//DTD Comps info//EN" "comps.dtd">
630 <comps>
631 __header
632
633     for pkgsname in $pkgsnames; do
634         pkgsfile=$(pl_locateDistroFile $builddir $pldistro $pkgsname)
635         packages=$(pl_getPackages $fcdistro $pldistro $pkgsfile)
636
637         groupname=$(pkgs.py groupname $pkgsfile | sed $sedargs)
638         groupdesc=$(pkgs.py groupdesc $pkgsfile | sed $sedargs)
639
640         if [ -z "$groupname" -o -z "$groupdesc" ] ; then
641             echo "Cannot find groupname: and groupdesc: in $pkgsfile -- skipped" 1>&2
642             continue
643         fi
644         
645         cat << __group_header
646   <group>
647     <id>$(echo $groupname|tr A-Z a-z)</id>
648     <name>$groupname</name>
649     <description>$groupdesc</description>
650     <uservisible>true</uservisible>
651     <packagelist>
652 __group_header
653         for package in $packages; do 
654             echo "<packagereq type=\"mandatory\">$package</packagereq>"
655         done
656         cat << __group_footer
657     </packagelist>
658   </group>
659 __group_footer
660     done
661 cat <<__footer
662 </comps>
663 __footer
664 }
665
666
667 function build_fetch () {
668     curl --fail --silent --max-time 60 --output /dev/null "$1" 
669 }
670
671 # tries to compute a valid yum.conf for that pldistro from the template in mirroring/
672 # returns 0 and writes <dest_yumconf> on success
673 # returns 1 on failure, in which case <dest_yumconf> is deleted
674 function yumconf_mirrors () {
675     dest_yumconf=$1; shift
676     builddir=$1; shift
677     fcdistro=$1; shift
678     kexclude_line="$1" ; shift
679     mirrors="$@"
680
681     template=$builddir/mirroring/$fcdistro/yum.repos.d/building.repo.in
682     
683     if [ ! -f $template ] ; then
684         echo "yumconf_mirrors: cannot locate template $template"
685         rm -f $dest_yumconf
686         return 1
687     fi
688
689     for mirror in $mirrors; do
690         if yumconf_mirror $dest_yumconf $template "$kexclude_line" $mirror; then
691             return 0
692         fi
693     done
694     echo 'yumconf_mirrors in build.common : ran out of mirrors -- BAILING OUT'
695     rm -f $dest_yumconf
696     return 1
697 }
698
699 # computes a yum.conf from the template, and checks that all baseurl defined in there are valid repos
700 # returns 0 on success and 1 on failure
701 function yumconf_mirror () {
702     dest_yumconf=$1; shift
703     template=$1; shift
704     kexclude_line="$1" ; shift
705     mirror=$1; shift
706
707     sed -e "s,@MIRRORURL@,$mirror,g" \
708         -e "/baseurl=/i\\
709 $kexclude_line" $template > $dest_yumconf
710     
711     # capture all lines defining baseurl
712     baseurl_defs=$(grep '^baseurl=' $dest_yumconf)
713     if [ -z "$baseurl_defs" ] ; then
714         return 1
715     fi
716
717     for baseurl_def in $baseurl_defs; do
718         baseurl=$(echo $baseurl_def | sed \
719             -e s,baseurl=,, \
720             -e 's,$basearch,'"$pl_DISTRO_ARCH",g)
721         repomd=$baseurl/repodata/repomd.xml
722
723         echo "* Trying to fetch $repomd"
724         if ! build_fetch $repomd ; then
725             echo "* Failed to fetch $repomd"
726             return 1
727         fi
728     done
729     echo "* Selected mirror $mirror"
730     return 0
731 }
732
733 # from a yum.conf as generated above, computes the (first) gpgkey url
734 function yumconf_gpgkey () {
735     dest_yumconf=$1; shift
736
737     first_line=$(grep '^gpgkey=' $dest_yumconf | head -1)
738     values=$(echo $first_line | sed -e s,gpgkey=,,)
739     value=$(echo $values | awk '{print $1;}' | sed -e 's,$basearch,'"$pl_DISTRO_ARCH",g)
740     [ -n "$value" ] || return 1
741     echo $value
742     return 0
743 }
744
745 # patches a yum conf to insert an exclude line in each declared repo
746 function yumconf_exclude () {
747     repo=$1; shift
748     kexclude_line="$1" ; shift
749     
750     sed -i -e "/#baseurl=.*$/i\\
751 $kexclude_line" $repo
752 }