source: MondoRescue/trunk/tools/build2pkg@ 923

Last change on this file since 923 was 923, checked in by Bruno Cornec, 17 years ago
  • Now using mindi.conf.dist as an initial set of values
  • usr.bin useless in restore-scripts
  • fixes on build process to allow mondo compilation
  • Property svn:executable set to *
File size: 3.0 KB
RevLine 
[553]1#!/bin/bash
2#
3# Creates packages from build repository
4#
5# $Id$
6#
7# Syntax: build2pkg [version-tag [pkg list]]
8#
9
[764]10(
[553]11dname=`dirname $0`
12prem=`echo $dname |cut -c1`
13if [ ${prem} == "/" ]; then
14 export TOOLHOME=$dname
15else
16 export TOOLHOME=${PWD}/$dname
17fi
18
19. $TOOLHOME/common-env
20. $TOOLHOME/distro-env
21
22# We need to get $VER and $TAG
23if [ "$1" = "" ]; then
24 LAST=`cat ${TOPDIR}/LAST`
25else
26 LAST=$1
27 shift
28fi
29VER=`echo $LAST | cut -d- -f1`
30TAG=`echo $LAST | cut -d- -f2`
31echo "Working on ${VER}-$TAG"
32
33if [ "$1" = "" ]; then
[839]34 c="mondo-doc mindi mindi-busybox mondo"
[553]35else
36 if [ "$1" = "all" ]; then
[839]37 c="mindi-kernel mondo-doc mindi mindi-busybox mondo"
[553]38 else
39 c=$1
40 fi
41fi
42
43status=0
44
45#
46# Define on which distro we are to generate the right packages
47#
48
49export pkg=""
[588]50echo "Working under $TOPBUILDDIR"
[553]51cd $TOPBUILDDIR
52
53for p in $c; do
54 # s= stable; t = trunk; 1-9 = official version
55 src=${TOPDIR}/${VER}-$TAG/$p-[1-9st]*.tar.gz
56 pv=`basename $src .tar.gz`
[764]57 PVER=`echo $pv | sed "s|^$p-||" | cut -d- -f1`
[553]58
59 if [ _"$dtype" = _"rpm" ]; then
[556]60 if [ _"$p" = _"mondo-doc" ]; then
61 ar="noarch"
62 else
63 ar=$ARCH
64 fi
[553]65
[900]66 log=$MONDOTMP/$p-rpm.log
[553]67
[764]68 if [ "$dfam" = "mandriva" ] || [ "$dfam" = "suse" ]; then
69 echo "Using bzip2 files ($dfam)"
[782]70 ln -sf ${TOPDIR}/${VER}-$TAG/$pv.tar.bz2 SOURCES/
[553]71 else
[764]72 echo "Using gzip files ($dfam)"
[553]73 ln -sf $src SOURCES/
74 fi
[588]75 echo "Generating $p RPMS"
[553]76 cd SPECS
[764]77 tar xfz $src $p-${PVER}/distributions/${ddir}-$dver/$p.spec
78 mv $p-${PVER}/distributions/${ddir}-$dver/$p.spec .
79 rm -rf $p-${PVER}
[553]80
[923]81 export LANGUAGE=C
[764]82 rpmbuild -ba $p.spec 2>&1 | tee $log
[553]83 if [ $? != 0 ]; then
84 status=-1
[729]85 else
[900]86 export pkg1="`egrep '^Wrote:' $log | grep -v debug | cut -d: -f2`"
[764]87 if [ -f /usr/bin/rpmlint ]; then
[900]88 /usr/bin/rpmlint $pkg1
[764]89 else
90 echo "No rpmlint found, please install it"
91 fi
[900]92 export pkg="$pkg `ls $pkg1 | grep -v src.rpm`"
[553]93 fi
[600]94 rm -rf ${TOPBUILDDIR}/BUILD/*
[553]95 cd ..
[588]96 elif [ _"$dtype" = _"ebuild" ]; then
[764]97 tar xfz $src $p-${PVER}/distributions/${ddir}-$dver/$p-${PVER}.ebuild
[588]98 if [ _"`grep $TOPBUILDDIR/portage /etc/make.conf`" = _"" ]; then
99 echo "Adding $TOPBUILDDIR/portage to /etc/make.conf"
100 echo "PORTDIR_OVERLAY=\"$TOPBUILDDIR/portage\"" >> /etc/make.conf
101 fi
[556]102
[588]103 mkdir -p ${TOPBUILDDIR}/portage/sys-apps/$p
[764]104 mv $p-${PVER}/distributions/${ddir}-$dver/$p-${PVER}.ebuild ${TOPBUILDDIR}/portage/sys-apps/$p/$p-${PVER}.ebuild
105 rm -rf $p-${PVER}
[588]106
107 cd ${TOPBUILDDIR}/portage/sys-apps/$p
[782]108 ebuild $p-${PVER}.ebuild digest
[556]109 if [ $? != 0 ]; then
110 status=-1
111 fi
[782]112 ebuild $p-${PVER}.ebuild package
[588]113 if [ $? != 0 ]; then
114 status=-1
115 fi
116 elif [ _"$dtype" = _"deb" ]; then
117 cd $TOPBUILDDIR
118 tar xfz $src
[764]119 cd ${p}-${PVER}
[672]120 # point to the right debian conf
121 ln -s distributions/${ddir}-$dver debian
122 dpkg-buildpackage -us -uc -rfakeroot
[588]123 # Et voila !
[556]124 else
125 echo "Unknown"
[553]126 fi
127done
[556]128echo "Packages handled : $pkg"
[553]129
[900]130rm -rf $MONDOTMP
[672]131
[553]132if [ $status = 0 ]; then
133 if [ _"$dtype" = _"rpm" ]; then
[556]134 echo "Installing RPMS as root"
[553]135 su - -c "$opt rpm -Uvh --force $pkg"
136 fi
137fi
[764]138) 2>&1 | tee /tmp/build2pkg.log
Note: See TracBrowser for help on using the repository browser.