egroupware_official/doc/rpm-build/build-egw-rpms.sh

160 lines
7.1 KiB
Bash
Raw Normal View History

2004-01-25 01:18:54 +01:00
#! /bin/bash
# This script work for generating rpms without Root rights
# When you create rmp's with Root rights and you have as example
# the follow command rm -rf / in your script you are in trouble :-)
#
# Change the path names for ANONCVSDIR and RHBASE to you needs.
#
# When you would create daily rpm's with update from CVS include
# delete the # sign at the start from the follow lines
#
# cd $ANONCVSDIR
# cvs update -Pd
# This scipt create auotmaticly signed rpm's
# When you don't want signed rpm's change the follow line from
#
# rpmbuild -bb --sign egroupware-rh.spec >> $LOGFILE 2>&1
#
# to
# rpmbuild -bb egroupware-rh.spec >> $LOGFILE 2>&1
#
# in the script
2004-01-25 01:18:54 +01:00
# How to create GPG keys to sign your rpm's you will found in a seperate
# Document
#
2004-05-21 23:39:09 +02:00
# Script changed 2004 May 21 Reiner Jung
# Script changed 2005 Apr 15 by Ralf Becker and Wim Bonis
# 2005 Sep 20 Ralf Becker: disabled fedora 2 build
2004-01-25 01:18:54 +01:00
2006-03-28 01:37:50 +02:00
BRANCH="-r Version-1_2_0-branch"
#BRANCH=-A
2006-03-28 01:37:50 +02:00
SPECFILE=`(if test -f /etc/SuSE-release; then echo egroupware-suse-php5.spec; else echo egroupware-fedora.spec; fi)`
2006-05-18 04:43:50 +02:00
SPECFILE=egroupware-suse-php5.spec
SOURCEFILES="egroupware_fedora.tar.bz2 egroupware_suse.tar.bz2 manageheader.php.patch class.uiasyncservice.inc.php.patch"
2004-05-21 23:39:09 +02:00
2006-05-18 04:43:50 +02:00
CONTRIB="backup browser comic chatty email egwical filescenter forum ftp fudforum headlines icalsrv jinn messenger phpldapadmin projects stocks switchuser tts skel soap xmlrpc"
for p in $CONTRIB
do
EXCLUDE_CONTRIB="$EXCLUDE_CONTRIB --exclude=egroupware/$p"
ONLY_CONTRIB="$ONLY_CONTRIB egroupware/$p"
done
2004-05-21 23:39:09 +02:00
####
#
# Some changes for bitrock missing and delete from fedora package is not needed
#
###
2004-01-25 01:18:54 +01:00
PACKAGENAME=`grep "%define packagename" $SPECFILE | cut -f3 -d' '`
2006-03-28 01:37:50 +02:00
VERSION=`grep "%define egwversion" $SPECFILE | cut -f3 -d' '`
2004-01-25 01:18:54 +01:00
PACKAGING=`grep "%define packaging" $SPECFILE | cut -f3 -d' '`
HOMEBUILDDIR=`whoami`
#which account to use for checkouts and updates, after that the tree is made anonymous anyway, to allow users to update
2006-06-11 10:44:23 +02:00
#CVSACCOUNT=ext:lkneschke
#CVSACCOUNT=pserver:anonymous
ANONCVSDIR=/tmp/build_root/egroupware
RHBASE=$HOME/rpm
2004-01-25 01:18:54 +01:00
SRCDIR=$RHBASE/SOURCES
SPECDIR=$RHBASE/SPECS
2006-05-18 04:43:50 +02:00
LOGFILE=$RHBASE/LOG/build-$PACKAGENAME-$VERSION-$PACKAGING.log
VIRUSSCAN=$SPECDIR/clamav_scan-$PACKAGENAME-$VERSION-$PACKAGING.log
2004-01-25 01:18:54 +01:00
MD5SUM=$SRCDIR/md5sum-$PACKAGENAME-$VERSION-$PACKAGING.txt
2006-05-18 04:43:50 +02:00
mkdir -p $RHBASE/SOURCES $RHBASE/SPECS $RHBASE/BUILD $RHBASE/SRPMS $RHBASE/RPMS $RHBASE/LOG $ANONCVSDIR
2006-03-28 01:37:50 +02:00
cp *.spec $RHBASE/SPECS/
cp $SOURCEFILES $RHBASE/SOURCES/
2006-05-18 04:43:50 +02:00
echo "Starting build process of - $PACKAGENAME $VERSION" > $LOGFILE
echo "" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
date >> $LOGFILE 2>&1
cd $ANONCVSDIR
2006-06-11 10:44:23 +02:00
#[ "$CVSACCOUNT" = 'pserver:anonymous' ] && CVS_RSH="ssh" cvs -d:$CVSACCOUNT@cvs.sourceforge.net:/cvsroot/egroupware login
if [ ! -d egroupware/phpgwapi ] # new checkout
then
2006-06-11 10:44:23 +02:00
echo -n "Creating a new checkout ... " >> $LOGFILE 2>&1
2006-05-18 04:43:50 +02:00
svn checkout http://svn.egroupware.org/egroupware/branches/1.2/aliases/all ./
else # updating an existing checkout in the build-root
2006-06-11 10:44:23 +02:00
echo -n "Updating existing checkout ... " >> $LOGFILE 2>&1
2006-05-18 04:43:50 +02:00
svn update
fi
cd $ANONCVSDIR
2006-05-18 04:43:50 +02:00
echo "done" >> $LOGFILE 2>&1
2006-05-18 04:43:50 +02:00
echo -n "Change the direcory rights back ... " >> $LOGFILE 2>&1
2004-05-21 23:39:09 +02:00
find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 644 {} \;
2006-05-18 04:43:50 +02:00
echo "done" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
2006-05-18 04:43:50 +02:00
echo -n "Starting anti virus scan ... " >> $LOGFILE 2>&1
2006-03-28 01:37:50 +02:00
test -x /usr/bin/clamscan && /usr/bin/clamscan --quiet -r $ANONCVSDIR --log=$VIRUSSCAN
2006-05-18 04:43:50 +02:00
echo "done" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
cd $ANONCVSDIR
2006-05-18 04:43:50 +02:00
echo -n "building tar.gz ... " >> $LOGFILE 2>&1
2006-03-28 01:37:50 +02:00
tar czf $SRCDIR/$PACKAGENAME-$VERSION-$PACKAGING.tar.gz $EXCLUDE_CONTRIB egroupware 2>&1 | tee -a $LOGFILE
tar czf $SRCDIR/$PACKAGENAME-contrib-$VERSION-$PACKAGING.tar.gz $ONLY_CONTRIB >> $LOGFILE 2>&1
2006-05-18 04:43:50 +02:00
echo "done" >> $LOGFILE 2>&1
echo -n "building tar.bz2 ... " >> $LOGFILE 2>&1
2006-03-28 01:37:50 +02:00
tar cjf $SRCDIR/$PACKAGENAME-$VERSION-$PACKAGING.tar.bz2 $EXCLUDE_CONTRIB egroupware >> $LOGFILE 2>&1
tar cjf $SRCDIR/$PACKAGENAME-contrib-$VERSION-$PACKAGING.tar.bz2 $ONLY_CONTRIB >> $LOGFILE 2>&1
2006-05-18 04:43:50 +02:00
echo "done" >> $LOGFILE 2>&1
echo -n "building zip ... " >> $LOGFILE 2>&1
2005-11-28 18:03:32 +01:00
find $ONLY_CONTRIB > /tmp/exclude.list
2006-03-28 01:37:50 +02:00
zip -q -r -9 $SRCDIR/$PACKAGENAME-$VERSION-$PACKAGING.zip egroupware -x@/tmp/exclude.list >> $LOGFILE 2>&1
zip -q -r -9 $SRCDIR/$PACKAGENAME-contrib-$VERSION-$PACKAGING.zip $ONLY_CONTRIB >> $LOGFILE 2>&1
2006-05-18 04:43:50 +02:00
echo "done" >> $LOGFILE 2>&1
echo "Building tar.gz, tar.bz and zip archives finnished" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
2006-03-28 01:37:50 +02:00
echo "Create the md5sum file for tar.gz, tar.bz, zip ($MD5SUM)" >> $LOGFILE 2>&1
echo "Build signed source files" >> $LOGFILE 2>&1
echo "---------------------------------------" >> $LOGFILE 2>&1
for f in $VERSION-$PACKAGING.tar.gz contrib-$VERSION-$PACKAGING.tar.gz $VERSION-$PACKAGING.tar.bz2 contrib-$VERSION-$PACKAGING.tar.bz2 $VERSION-$PACKAGING.zip contrib-$VERSION-$PACKAGING.zip
do
2006-03-28 01:37:50 +02:00
echo "md5sum from file $PACKAGENAME-$f is:" >> $MD5SUM
md5sum $SRCDIR/$PACKAGENAME-$f | cut -f1 -d' ' >> $MD5SUM 2>&1
echo "---------------------------------------" >> $MD5SUM 2>&1
2006-03-28 01:37:50 +02:00
echo " " >> $MD5SUM 2>&1
2006-03-28 01:37:50 +02:00
echo "Build signed source files" >> $LOGFILE 2>&1
rm -f $SRCDIR/$PACKAGENAME-$f.gpg >> $LOGFILE 2>&1
gpg --local-user packager@egroupware.org -s $SRCDIR/$PACKAGENAME-$f >> $LOGFILE 2>&1
done
echo "------------------------------------------" >> $LOGFILE 2>&1
echo "End Build md5sum of tar.gz, tar.bz, zip" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
echo "End build of signed of tar.gz, tar.bz, zip" >> $LOGFILE 2>&1
echo "------------------------------------------" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
2006-03-28 01:37:50 +02:00
echo "sign the md5sum file" >> $LOGFILE 2>&1
rm -f $MD5SUM.asc >> $LOGFILE 2>&1
gpg --local-user packager@egroupware.org --clearsign $MD5SUM >> $LOGFILE 2>&1
echo "---------------------------------------" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
2006-03-28 01:37:50 +02:00
echo "delete the original md5sum file" >> $LOGFILE 2>&1
rm -rf $MD5SUM >> $LOGFILE 2>&1
echo "---------------------------------------" >> $LOGFILE 2>&1
2004-01-25 01:18:54 +01:00
cd $SPECDIR
2006-03-28 01:37:50 +02:00
if test -f /etc/SuSE-release; then
2006-05-18 04:43:50 +02:00
echo -n "Building SUSE10.0 PHP4 RPM's ... " >> $LOGFILE 2>&1
rpmbuild -ba --sign egroupware-suse-php4.spec 2>&1 | tee $RHBASE/LOG/egroupware-suse-php4.log
echo "done" >> $LOGFILE 2>&1
echo -n "Building SUSE10.0 PHP5 RPM's ... " >> $LOGFILE 2>&1
rpmbuild -ba --sign egroupware-suse-php5.spec 2>&1 | tee $RHBASE/LOG/egroupware-suse-php5.log
echo "done" >> $LOGFILE 2>&1
else
echo -n "Building Fedora Core4 RPM's ... " >> $LOGFILE 2>&1
rpmbuild -ba --sign egroupware-fedora4.spec 2>&1 | tee $RHBASE/LOG/egroupware-fedora4.log
echo "done" >> $LOGFILE 2>&1
2006-03-28 01:37:50 +02:00
fi
2006-05-18 04:43:50 +02:00
echo "Building of $PACKAGENAME $VERSION finnished" >> $LOGFILE 2>&1