mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 18:58:12 +02:00
125 lines
3.4 KiB
Bash
Executable File
125 lines
3.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#set -x
|
|
set -e
|
|
|
|
#------------------------------------------------------------------------------
|
|
# parse parameters
|
|
#------------------------------------------------------------------------------
|
|
Usage="Usage: $0 [nodocs] [notemp] <FPCSrcDir> [release]"
|
|
|
|
WithDOCS=yes
|
|
if [ "x$1" = "xnodocs" ]; then
|
|
WithDOCS=no
|
|
shift
|
|
fi
|
|
|
|
WithTempDir=yes
|
|
if [ "x$1" = "xnotemp" ]; then
|
|
WithTempDir=no
|
|
shift
|
|
fi
|
|
|
|
PkgType=rpm
|
|
|
|
FPCSrcDir=$1
|
|
if [ "x$FPCSrcDir" = "x" ]; then
|
|
echo $Usage
|
|
exit -1
|
|
fi
|
|
FPCSrcDir=$(echo $FPCSrcDir)
|
|
shift
|
|
|
|
FPCRelease=$1
|
|
if [ "x$FPCRelease" = "x" ]; then
|
|
FPCRelease=$(date +%y%m%d)
|
|
else
|
|
shift
|
|
fi
|
|
|
|
if [ ! -d $FPCSrcDir/compiler ]; then
|
|
echo "The directory $FPCSrcDir does not look like a fpc source directory (missing subdirectory compiler)"
|
|
exit -1
|
|
fi
|
|
|
|
# checking for needed tools
|
|
rpmbuild --version
|
|
|
|
#------------------------------------------------------------------------------
|
|
# patching
|
|
#------------------------------------------------------------------------------
|
|
|
|
# create a temporary copy of the fpc sources to patch it
|
|
TmpDir=~/tmp/fpc_patchdir
|
|
if [ "$WithTempDir" = "yes" ]; then
|
|
if [ -d $TmpDir ]; then
|
|
rm -rf $TmpDir
|
|
fi
|
|
mkdir -p $TmpDir
|
|
|
|
echo "extracting FPC from local svn ..."
|
|
# cp -a $FPCSrcDir $TmpDir/fpc #copies all to tmp folder for patching.
|
|
git -C $FPCSrcDir --work-tree=$TmpDir/fpc restore .
|
|
else
|
|
TmpDir=$FPCSrcDir
|
|
fi
|
|
|
|
# retrieve the version information
|
|
echo -n "getting FPC version from local svn ..."
|
|
VersionFile="$TmpDir/fpc/compiler/version.pas"
|
|
CompilerVersion=$(cat $VersionFile | grep ' *version_nr *=.*;' | sed -e 's/[^0-9]//g')
|
|
CompilerRelease=$(cat $VersionFile | grep ' *release_nr *=.*;' | sed -e 's/[^0-9]//g')
|
|
CompilerPatch=$(cat $VersionFile | grep ' *patch_nr *=.*;' | sed -e 's/[^0-9]//g')
|
|
CompilerVersionStr="$CompilerVersion.$CompilerRelease.$CompilerPatch"
|
|
FPCVersion="$CompilerVersion.$CompilerRelease.$CompilerPatch"
|
|
echo " $CompilerVersionStr-$FPCRelease"
|
|
|
|
Arch=$(rpm --eval "%{_arch}")
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
# patch sources
|
|
|
|
SmartStripScript=smart_strip.sh
|
|
ReplaceScript=replace_in_files.pl
|
|
|
|
|
|
# set version numbers in all Makefiles
|
|
echo "set version numbers in all Makefiles ..."
|
|
perl replace_in_files.pl -sR -f 'version=\d.\d.\d' -r version=$CompilerVersionStr -m 'Makefile(.fpc)?' $TmpDir/fpc/*
|
|
|
|
# update smart_strip.sh
|
|
#ATM: not needed: cp $SmartStripScript $TmpDir/fpc/install/
|
|
|
|
# build fpc rpm
|
|
|
|
echo "creating spec file ..."
|
|
SpecFileTemplate=rpm/fpc.spec.template
|
|
SpecFile=rpm/fpc.spec
|
|
|
|
# change spec file
|
|
cat $SpecFileTemplate | \
|
|
sed -e 's/^Version: .*/Version: '"$FPCVersion/" \
|
|
-e 's/^Release: .*/Release: '"$FPCRelease/" \
|
|
-e 's/^%define fpcversion .*/%define fpcversion '"$FPCVersion/" \
|
|
> $SpecFile
|
|
# -e 's/\(%define builddocdir.*\)/%define __strip smart_strip.sh\n\n\1/' \
|
|
# -e 's/^\%{fpcdir}\/samplecfg .*/%{fpcdir}\/samplecfg %{_libdir}\/fpc\/\\\$version/' \
|
|
|
|
SrcTGZ=$(rpm/get_rpm_source_dir.sh)/SOURCES/fpc-$CompilerVersionStr-$FPCRelease.source.tar.gz
|
|
echo "creating $SrcTGZ ..."
|
|
tar czf $SrcTGZ -C $TmpDir fpc
|
|
|
|
#----------------------------------------------------------------------------
|
|
# compile
|
|
#----------------------------------------------------------------------------
|
|
if [ "$WithDOCS" = "no" ]; then
|
|
export NODOCS=1
|
|
fi
|
|
rpmbuild --nodeps -ba $SpecFile
|
|
|
|
echo "The new rpm can be found in $(./rpm/get_rpm_source_dir.sh)/RPMS/$Arch/fpc-$FPCVersion-$FPCRelease.$Arch.rpm"
|
|
|
|
# end.
|
|
|