wok annotate glibc/receipt @ rev 25695

sc-im: replaced released version by development version
author Hans-G?nter Theisgen
date Fri Apr 26 08:13:41 2024 +0100 (2 weeks ago)
parents 324b3fa82b76
children
rev   line source
pankso@9 1 # SliTaz package receipt.
pankso@9 2
pankso@9 3 PACKAGE="glibc"
pankso@12269 4 VERSION="2.14.1"
pankso@3475 5 CATEGORY="meta"
pankso@9 6 SHORT_DESC="The GNU C libraries. This package is used to compile the libc."
pankso@9 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@9 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@9 10 WEB_SITE="http://www.gnu.org/software/libc/"
pankso@9 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@9713 12
pankso@9713 13 DEPENDS="glibc-base glibc-locale glibc-dev"
pascal@19249 14 BUILD_DEPENDS="linux-api-headers autoconf bash advancecomp"
pankso@9713 15
pankso@9713 16 # Genpkg order for tazwok.
al@18922 17 COOK_OPT="genpkg=glibc-base:glib-locale:glibc-dev"
al@18922 18
pascal@25609 19 # What is the latest version available today?
pascal@24051 20 current_version()
pascal@24051 21 {
pascal@25609 22 wget -O - https://ftp.gnu.org/gnu/$PACKAGE/ 2>/dev/null | \
pascal@24051 23 sed '/href="glibc-[0-9]/!d;/tar/!d;s|.*>glibc-||;s|.tar.*||' | \
pascal@24051 24 sort -Vr | sed q
pascal@24051 25 }
pascal@24051 26
gokhlayeh@8189 27 # Rules to compile & install the temporary toolchain.
gokhlayeh@8189 28 cook_tmp_toolchain()
gokhlayeh@8189 29 {
gokhlayeh@8189 30 cd $src
pankso@10166 31
pankso@12269 32 # Glibc Bug Fixes Patch from LFS
pankso@12269 33 patch -Np1 -i $stuff/glibc-2.14.1-fixes-1.patch
pankso@12269 34 # Glibc Bug Sort Relocatable Objects Patch
pankso@12269 35 patch -Np1 -i $stuff/glibc-2.14.1-sort-1.patch
pankso@12269 36 # Fix a bug that prevents Glibc from building with GCC-4.6.2
pascal@17546 37 patch -Np1 -i $stuff/glibc-2.14.1-gcc_fix-1.patch
pascal@17546 38 # GHOST
pascal@17546 39 patch -Np1 -i $stuff/glibc-2.14.1-CVE-2015-0235.patch
gokhlayeh@8189 40
gokhlayeh@8189 41 # Build in a separate directory.
gokhlayeh@8189 42 mkdir ../glibc-build && cd ../glibc-build
gokhlayeh@8189 43
gokhlayeh@8189 44 # glibc no longer support i386, so use -march=i486 for better compatibility.
pankso@10024 45 # If i686 ???
slaxemulator@10420 46 unset CFLAGS CXXFLAGS
gokhlayeh@8189 47 case $ARCH in
slaxemulator@10420 48 i386|i486)
pankso@12008 49 echo "CFLAGS += -O2 -march=i486 -mtune=i486" > configparms ;;
slaxemulator@10420 50 *)
pankso@12006 51 echo "CFLAGS += -O2 -march=$ARCH -mtune=$ARCH" > configparms ;;
gokhlayeh@8189 52 esac
gokhlayeh@8189 53
gokhlayeh@8189 54 { $src/configure \
slaxemulator@10420 55 --host=$HOST_SYSTEM \
gokhlayeh@8189 56 --build=$($src/scripts/config.guess) \
gokhlayeh@8189 57 --disable-profile --enable-add-ons \
slaxemulator@10420 58 --enable-kernel=2.6.30 --with-headers=/tools/include \
gokhlayeh@8189 59 libc_cv_forced_unwind=yes libc_cv_c_cleanup=yes &&
al@18924 60 make -j1 &&
pascal@23887 61 make -j1 install
gokhlayeh@8189 62 } || return 1
gokhlayeh@8189 63
gokhlayeh@8189 64 # Link compiler to this new glibc.
slaxemulator@10420 65 SPECS=`dirname $($HOST_SYSTEM-gcc -print-libgcc-file-name)`/specs
slaxemulator@10420 66 $HOST_SYSTEM-gcc -dumpspecs | sed \
gokhlayeh@8189 67 -e 's@/lib\(64\)\?/ld@/tools&@g' \
gokhlayeh@8189 68 -e "/^\*cpp:$/{n;s,$, -isystem /tools/include,}" > $SPECS
gokhlayeh@8189 69 unset SPECS
gokhlayeh@8189 70 }
pankso@9 71
pankso@9 72 # Rules to configure and make the package.
pankso@9 73 compile_rules()
pankso@9 74 {
slaxemulator@10351 75 # SliTaz is a Busybox based OS, why we so small and fast. Using gawk by
slaxemulator@10351 76 # default to build package will not ensure package work with Busybox awk
slaxemulator@10351 77 # and so should NOT be use to cook.
slaxemulator@10351 78 if [ -x /usr/bin/cook ]; then
slaxemulator@10351 79 [ -d "/var/lib/tazpkg/installed/gawk" ] || tazpkg get-install gawk
slaxemulator@10351 80 fi
slaxemulator@10351 81
pascal@17724 82 # Make 4.x support...
pascal@17724 83 sed -i 's/3\.79/4.* | &/' configure*
pankso@12269 84 # Fixes and patches from LFS, Redhat
gokhlayeh@8748 85 sed -i -e 's/"db1"/& \&\& $name ne "nss_test1"/' scripts/test-installation.pl
gokhlayeh@8189 86 sed -i 's|@BASH@|/bin/bash|' elf/ldd.bash.in
gokhlayeh@8189 87
pankso@12269 88 # Glibc misc Bug Fixes
pankso@12269 89 patch -Np1 -i $stuff/glibc-2.14.1-fixes-1.patch
pankso@12269 90
pankso@12269 91 # Glibc Bug Sort Relocatable Objects Patch
pankso@12269 92 #patch -Np1 -i $stuff/glibc-2.14.1-sort-1.patch
pankso@12269 93
pankso@12269 94 # Fix a bug that prevents Glibc from building with GCC-4.6.2
pankso@12269 95 patch -Np1 -i $stuff/glibc-2.14.1-gcc_fix-1.patch
pankso@12269 96
pankso@12269 97 # Revert commit causing issues with crappy DNS servers
pankso@12269 98 patch -Np1 -i $stuff/glibc-2.14-revert-4768ae77.patch
pankso@12269 99
pankso@12269 100 # re-export RPC interface until libtirpc is ready as a replacement
pankso@12269 101 # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=acee4873 (only fedora branch...)
pankso@12269 102 patch -Np1 -i $stuff/glibc-2.14-reexport-rpc-interface.patch
pankso@12269 103 # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=bdd816a3 (only fedora branch...)
pankso@12269 104 patch -Np1 -i $stuff/glibc-2.14-reinstall-nis-rpc-headers.patch
pascal@17546 105 # GHOST
pascal@17546 106 patch -Np1 -i $stuff/glibc-2.14.1-CVE-2015-0235.patch
gokhlayeh@8748 107
pascal@23886 108 # Update for binutils 2.29, see https://sourceware.org/bugzilla/show_bug.cgi?id=21661
pascal@23886 109 sed -i 's|obstack_compat;|obstack_compat __attribute__ ((nocommon));|' malloc/obstack.c
pascal@23886 110
gokhlayeh@8748 111 # Fix a stack imbalance that occurs under some conditions:
gokhlayeh@8748 112 sed -i '195,213 s/PRIVATE_FUTEX/FUTEX_CLOCK_REALTIME/' \
gokhlayeh@8748 113 nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S \
gokhlayeh@8748 114 nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S
gokhlayeh@8189 115
pankso@10031 116 # Glibc needs ld.so.conf in the install destdir.
gokhlayeh@8189 117 mkdir -p $WOK/$PACKAGE/install/etc
gokhlayeh@8189 118 touch $WOK/$PACKAGE/install/etc/ld.so.conf
pankso@10031 119 mkdir ../glibc-build && cd ../glibc-build
pankso@10031 120
pankso@10031 121 # Read the INSTALL file in glibc. Also Glibc dont build with -Os flag.
pankso@10031 122 # --enale-kernel use latest SliTaz Kernel version. From Glibc INSTALL:
pankso@10031 123 # "The higher the VERSION number is, the less compatibility code is
pankso@10031 124 # added, and the faster the code gets."
pankso@10031 125 unset CFLAGS CXXFLAGS
pankso@10031 126 case "$ARCH" in
pankso@10024 127 i386|i486)
pankso@12008 128 echo "CFLAGS += -O2 -march=i486 -mtune=i486" > configparms ;;
pankso@10024 129 *)
pankso@12008 130 echo "CFLAGS += -O2 -march=$ARCH -mtune=$ARCH" > configparms ;;
pankso@10024 131 esac
gokhlayeh@8189 132 { $src/configure \
pankso@1153 133 --disable-profile \
pankso@1153 134 --enable-add-ons \
pankso@10034 135 --enable-kernel=2.6.30 \
pankso@10024 136 --libexecdir=/usr/lib/glibc \
pankso@10147 137 --build=$HOST_SYSTEM \
pankso@12269 138 --host=$HOST_SYSTEM \
pankso@12269 139 --target=$BUILD_SYSTEM &&
al@18924 140 make -j1 && make install_root=$DESTDIR install
gokhlayeh@8189 141 } || return 1
pascal@19251 142 for i in $DESTDIR/usr/share/i18n/charmaps/*.gz ; do
pascal@19251 143 advdef -z4 $i
pascal@19251 144 done
gokhlayeh@8189 145
pankso@10031 146 # If temporary toolchain was previously used, switch to regular toolchain.
gokhlayeh@8189 147 [ -d /tools ] || return
gokhlayeh@8189 148 mv /tools/bin/ld /tools/bin/ld-old
gokhlayeh@8189 149 mv /tools/$(gcc -dumpmachine)/bin/ld /tools/$(gcc -dumpmachine)/bin/ld-old
gokhlayeh@8189 150 mv /tools/bin/ld-new /tools/bin/ld
gokhlayeh@8189 151 ln -s /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld
gokhlayeh@8189 152 gcc -dumpspecs | sed -e 's@/tools@@g' \
gokhlayeh@8189 153 -e '/\*startfile_prefix_spec:/{n;s@.*@/usr/lib/ @}' \
gokhlayeh@8189 154 -e '/\*cpp:/{n;s@$@ -isystem /usr/include@}' > \
gokhlayeh@8189 155 `dirname $(gcc --print-libgcc-file-name)`/specs
pankso@9 156 }
pankso@9 157
pankso@9 158 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9 159 genpkg_rules()
pankso@9 160 {
pankso@2701 161 LOCALE=""
pankso@9 162 mkdir -p $fs/var
gokhlayeh@8189 163
gokhlayeh@8189 164 # Remove build directory.
pankso@9713 165 rm -rf $WOK/$PACKAGE/source/$PACKAGE-build
pankso@9713 166 rm -rf $WOK/$PACKAGE/$PACKAGE-build
pascal@17722 167
pascal@17722 168 # check install
pascal@17722 169 ls $install/lib/
pankso@9 170 }