rpm: fixed build on old fedora

This commit is contained in:
mattias 2024-10-23 19:13:19 +02:00
parent 9265aa7ab7
commit 37fdc3df8e
2 changed files with 17 additions and 4 deletions

View File

@ -6,7 +6,7 @@ set -e
#------------------------------------------------------------------------------
# parse parameters
#------------------------------------------------------------------------------
Usage="Usage: $0 [nodocs] [notemp] <FPCSrcDir> [release]"
Usage="Usage: $0 [nodocs] [notemp] [hasbuildid] <FPCSrcDir> [release]"
PkgName=fpc-laz
@ -22,6 +22,13 @@ if [ "x$1" = "xnotemp" ]; then
shift
fi
HasBuildID=no
if [ "x$1" = "xhasbuildid" ]; then
HasBuildID=yes
shift
fi
PkgType=rpm
FPCSrcDir=$1
@ -77,7 +84,9 @@ FPCVersion="$CompilerVersion.$CompilerRelease.$CompilerPatch"
echo " $CompilerVersionStr-$FPCRelease"
Arch=$(rpm --eval "%{_arch}")
if [ "$Arch" = "i386" ]; then
Arch=i686
fi
#------------------------------------------------------------------------------
# patch sources
@ -107,7 +116,11 @@ cat $SpecFileTemplate | \
-e 's/^\%{fpcdir}\/samplecfg .*/%{fpcdir}\/samplecfg %{_libdir}\/fpc\/\\\$version/' \
> $SpecFile
# -e 's/\(%define builddocdir.*\)/%define __strip smart_strip.sh\n\n\1/' \
if [ "$HasBuildID" = "yes" ]; then
sed -e 's/%undefine _missing_build-ids_terminate_build//' -i $SpecFile
fi
SrcTGZ=$(rpm/get_rpm_source_dir.sh)/SOURCES/fpc-$CompilerVersionStr-$FPCRelease.source.tar.gz
echo "creating $SrcTGZ ..."
tar czf $SrcTGZ -C $TmpDir $PkgName

View File

@ -6,7 +6,7 @@ Group: Development/Languages
Source: %{name}-%{version}-%{release}.source.tar.gz
Summary: FreePascal sources
Packager: Mattias Gaertner (mattias@freepascal.org)
URL: http://www.freepascal.org/
URL: https://www.freepascal.org/
BuildRoot: %{_tmppath}/%{name}-build%{version}
Conflicts: fpc-src