2022-03-20 13:19:37 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
|
|
# Website : https://pozol.eu
|
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
2022-08-07 13:17:14 +02:00
|
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->libtool->glibc->binutils->gcc
|
2022-03-20 13:19:37 +01:00
|
|
|
# NOTE: valgrind requires rebuilt with each major glibc version
|
|
|
|
|
|
|
|
pkgbase=glibc
|
|
|
|
pkgname=(glibc lib32-glibc)
|
2022-08-07 13:17:14 +02:00
|
|
|
pkgver=2.36
|
|
|
|
_commit=c804cd1c00adde061ca51711f63068c103e94eef
|
|
|
|
pkgrel=01
|
2022-03-20 13:19:37 +01:00
|
|
|
arch=(x86_64)
|
|
|
|
url='https://www.gnu.org/software/libc'
|
|
|
|
makedepends=(git gd lib32-gcc-libs python)
|
2022-03-22 02:43:33 +01:00
|
|
|
#optdepends=('perl: for mtrace')
|
2022-05-24 13:03:11 +02:00
|
|
|
#options=(debug staticlibs !lto)
|
|
|
|
options=(staticlibs !lto)
|
|
|
|
source=(git+https://sourceware.org/git/glibc.git#commit=${_commit}
|
|
|
|
locale.gen.txt
|
|
|
|
locale-gen
|
|
|
|
lib32-glibc.conf
|
|
|
|
sdt.h sdt-config.h
|
|
|
|
disable-clone3.diff
|
2022-03-22 02:43:33 +01:00
|
|
|
)
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p glibc-build lib32-glibc-build
|
|
|
|
|
2022-05-24 13:03:11 +02:00
|
|
|
[[ -d glibc-$pkgver ]] && ln -s glibc-$pkgver glibc
|
2022-03-20 13:19:37 +01:00
|
|
|
cd glibc
|
|
|
|
|
|
|
|
# Disable clone3 syscall for now
|
|
|
|
# Can be removed when eletron{9,11,12} and discord are removed or patched:
|
|
|
|
# https://github.com/electron/electron/commit/993ecb5bdd5c57024c8718ca6203a8f924d6d574
|
|
|
|
# Patch src: https://patchwork.ozlabs.org/project/glibc/patch/87eebkf8ph.fsf@oldenburg.str.redhat.com/
|
|
|
|
patch -Np1 -i "${srcdir}"/disable-clone3.diff
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
local _configure_flags=(
|
|
|
|
--prefix=/usr
|
|
|
|
--with-headers=/usr/include
|
|
|
|
--with-bugurl=https://bugs.archlinux.org/
|
|
|
|
--enable-bind-now
|
|
|
|
--enable-cet
|
|
|
|
--enable-kernel=4.4
|
|
|
|
--enable-multi-arch
|
|
|
|
--enable-stack-protector=strong
|
|
|
|
--enable-systemtap
|
|
|
|
--disable-profile
|
|
|
|
--disable-crypt
|
|
|
|
--disable-werror
|
|
|
|
)
|
|
|
|
|
|
|
|
cd "$srcdir/glibc-build"
|
|
|
|
|
|
|
|
echo "slibdir=/usr/lib" >> configparms
|
|
|
|
echo "rtlddir=/usr/lib" >> configparms
|
|
|
|
echo "sbindir=/usr/bin" >> configparms
|
|
|
|
echo "rootsbindir=/usr/bin" >> configparms
|
|
|
|
|
|
|
|
# Credits @allanmcrae
|
|
|
|
# https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/glibc/PKGBUILD
|
|
|
|
# remove fortify for building libraries
|
|
|
|
CFLAGS=${CFLAGS/-Wp,-D_FORTIFY_SOURCE=2/}
|
|
|
|
|
|
|
|
"$srcdir/glibc/configure" \
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
"${_configure_flags[@]}"
|
|
|
|
|
|
|
|
# build libraries with fortify disabled
|
|
|
|
echo "build-programs=no" >> configparms
|
|
|
|
make -O
|
|
|
|
|
|
|
|
# re-enable fortify for programs
|
|
|
|
sed -i "/build-programs=/s#no#yes#" configparms
|
|
|
|
echo "CFLAGS += -Wp,-D_FORTIFY_SOURCE=2" >> configparms
|
|
|
|
make -O
|
|
|
|
|
2022-05-09 21:50:35 +02:00
|
|
|
# build info pages manually for reproducibility
|
2022-03-20 13:19:37 +01:00
|
|
|
make info
|
|
|
|
|
|
|
|
cd "$srcdir/lib32-glibc-build"
|
|
|
|
export CC="gcc -m32 -mstackrealign"
|
|
|
|
export CXX="g++ -m32 -mstackrealign"
|
|
|
|
|
|
|
|
echo "slibdir=/usr/lib32" >> configparms
|
|
|
|
echo "rtlddir=/usr/lib32" >> configparms
|
|
|
|
echo "sbindir=/usr/bin" >> configparms
|
|
|
|
echo "rootsbindir=/usr/bin" >> configparms
|
|
|
|
|
|
|
|
"$srcdir/glibc/configure" \
|
|
|
|
--host=i686-pc-linux-gnu \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--libexecdir=/usr/lib32 \
|
|
|
|
"${_configure_flags[@]}"
|
|
|
|
|
|
|
|
# build libraries with fortify disabled
|
|
|
|
echo "build-programs=no" >> configparms
|
|
|
|
make -O
|
|
|
|
|
|
|
|
# re-enable fortify for programs
|
|
|
|
sed -i "/build-programs=/s#no#yes#" configparms
|
|
|
|
echo "CFLAGS += -Wp,-D_FORTIFY_SOURCE=2" >> configparms
|
|
|
|
make -O
|
|
|
|
|
2022-06-08 02:54:58 +02:00
|
|
|
# pregenerate C.UTF-8 locale until it is built into glibc
|
|
|
|
# (https://sourceware.org/glibc/wiki/Proposals/C.UTF-8, FS#74864)
|
2022-08-07 13:17:14 +02:00
|
|
|
# locale/localedef -c -f ../glibc/localedata/charmaps/UTF-8 -i ../glibc/localedata/locales/C ../C.UTF-8/
|
|
|
|
localedef -c -f ../glibc/localedata/charmaps/UTF-8 -i ../glibc/localedata/locales/C ../C.UTF-8/
|
2022-03-20 13:19:37 +01:00
|
|
|
}
|
|
|
|
|
2022-08-07 13:17:14 +02:00
|
|
|
### Note by Joborun:
|
|
|
|
#
|
|
|
|
#Summary of test results:
|
|
|
|
# 4 FAIL
|
|
|
|
# 4971 PASS
|
|
|
|
# 191 UNSUPPORTED
|
|
|
|
# 14 XFAIL
|
|
|
|
# 8 XPASS
|
|
|
|
#make[1]: *** [Makefile:647: tests] Error 1
|
|
|
|
#make[1]: Leaving directory '/src/pkg/jobcore/glibc/src/glibc'
|
|
|
|
#make: *** [Makefile:9: check] Error 2
|
|
|
|
#
|
2022-05-09 21:50:35 +02:00
|
|
|
## Credits for skip_test() and check() @allanmcrae
|
|
|
|
## https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/glibc/PKGBUILD
|
|
|
|
#skip_test() {
|
|
|
|
# test=$1
|
|
|
|
# file=$2
|
|
|
|
# sed -i "s/\b$test\b//" $srcdir/glibc/$file
|
|
|
|
#}
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
#check() {
|
|
|
|
# cd glibc-build
|
|
|
|
#
|
|
|
|
# # adjust/remove buildflags that cause false-positive testsuite failures
|
|
|
|
# sed -i '/FORTIFY/d' configparms # failure to build testsuite
|
|
|
|
# sed -i 's/-Werror=format-security/-Wformat-security/' config.make # failure to build testsuite
|
|
|
|
# sed -i '/CFLAGS/s/-fno-plt//' config.make # 16 failures
|
|
|
|
# sed -i '/CFLAGS/s/-fexceptions//' config.make # 1 failure
|
|
|
|
# LDFLAGS=${LDFLAGS/,-z,now/} # 10 failures
|
|
|
|
#
|
|
|
|
# # The following tests fail due to restrictions in the Arch build system
|
|
|
|
# # The correct fix is to add the following to the systemd-nspawn call:
|
2022-05-09 21:50:35 +02:00
|
|
|
# # --system-call-filter="@clock @memlock @pkey"
|
2022-08-07 13:17:14 +02:00
|
|
|
# skip_test test-errno-linux sysdeps/unix/sysv/linux/Makefile
|
|
|
|
# skip_test tst-mlock2 sysdeps/unix/sysv/linux/Makefile
|
|
|
|
# skip_test tst-ntp_gettime sysdeps/unix/sysv/linux/Makefile
|
|
|
|
# skip_test tst-ntp_gettimex sysdeps/unix/sysv/linux/Makefile
|
|
|
|
# skip_test tst-pkey sysdeps/unix/sysv/linux/Makefile
|
|
|
|
# skip_test tst-process_mrelease sysdeps/unix/sysv/linux/Makefile
|
|
|
|
# skip_test tst-adjtime time/Makefile
|
|
|
|
# skip_test tst-clock2 time/Makefile
|
2022-03-20 13:19:37 +01:00
|
|
|
#
|
|
|
|
# make -O check
|
|
|
|
#}
|
|
|
|
|
|
|
|
package_glibc() {
|
|
|
|
pkgdesc='GNU C Library w/o systemd'
|
2022-08-07 13:17:14 +02:00
|
|
|
depends=('linux-api-headers<=5.11' tzdata filesystem)
|
2022-03-22 02:43:33 +01:00
|
|
|
optdepends=('gd: for memusagestat'
|
|
|
|
'perl: for mtrace')
|
2022-03-20 13:19:37 +01:00
|
|
|
install=glibc.install
|
|
|
|
backup=(etc/gai.conf
|
|
|
|
etc/locale.gen
|
|
|
|
etc/nscd.conf)
|
|
|
|
|
|
|
|
make -C glibc-build install_root="$pkgdir" install
|
2022-03-22 02:43:33 +01:00
|
|
|
rm -f "$pkgdir"/etc/ld.so.cache
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
# Shipped in tzdata
|
|
|
|
rm -f "$pkgdir"/usr/bin/{tzselect,zdump,zic}
|
|
|
|
|
|
|
|
cd glibc
|
|
|
|
|
|
|
|
install -dm755 "$pkgdir"/usr/lib/{locale,tmpfiles.d}
|
|
|
|
install -m644 nscd/nscd.conf "$pkgdir/etc/nscd.conf"
|
|
|
|
install -m644 nscd/nscd.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/nscd.conf"
|
|
|
|
install -dm755 "$pkgdir/var/db/nscd"
|
|
|
|
|
|
|
|
install -m644 posix/gai.conf "$pkgdir"/etc/gai.conf
|
|
|
|
|
|
|
|
install -m755 "$srcdir/locale-gen" "$pkgdir/usr/bin"
|
|
|
|
|
|
|
|
# Create /etc/locale.gen
|
|
|
|
install -m644 "$srcdir/locale.gen.txt" "$pkgdir/etc/locale.gen"
|
|
|
|
sed -e '1,3d' -e 's|/| |g' -e 's|\\| |g' -e 's|^|#|g' \
|
|
|
|
"$srcdir/glibc/localedata/SUPPORTED" >> "$pkgdir/etc/locale.gen"
|
|
|
|
|
2022-06-08 02:54:58 +02:00
|
|
|
# install C.UTF-8 so that it is always available
|
|
|
|
install -dm755 "$pkgdir/usr/lib/locale"
|
|
|
|
cp -r "$srcdir/C.UTF-8" -t "$pkgdir/usr/lib/locale"
|
|
|
|
sed -i '/#C\.UTF-8 /d' "$pkgdir/etc/locale.gen"
|
|
|
|
|
2022-03-20 13:19:37 +01:00
|
|
|
# Provide tracing probes to libstdc++ for exceptions, possibly for other
|
|
|
|
# libraries too. Useful for gdb's catch command.
|
|
|
|
install -Dm644 "$srcdir/sdt.h" "$pkgdir/usr/include/sys/sdt.h"
|
|
|
|
install -Dm644 "$srcdir/sdt-config.h" "$pkgdir/usr/include/sys/sdt-config.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
package_lib32-glibc() {
|
|
|
|
pkgdesc='GNU C Library (32-bit) w/o systemd'
|
|
|
|
depends=("glibc=$pkgver")
|
|
|
|
options+=('!emptydirs')
|
|
|
|
|
|
|
|
cd lib32-glibc-build
|
|
|
|
|
|
|
|
make install_root="$pkgdir" install
|
|
|
|
rm -rf "$pkgdir"/{etc,sbin,usr/{bin,sbin,share},var}
|
|
|
|
|
|
|
|
# We need to keep 32 bit specific header files
|
|
|
|
find "$pkgdir/usr/include" -type f -not -name '*-32.h' -delete
|
|
|
|
|
|
|
|
# Dynamic linker
|
|
|
|
install -d "$pkgdir/usr/lib"
|
|
|
|
ln -s ../lib32/ld-linux.so.2 "$pkgdir/usr/lib/"
|
|
|
|
|
|
|
|
# Add lib32 paths to the default library search path
|
|
|
|
install -Dm644 "$srcdir/lib32-glibc.conf" "$pkgdir/etc/ld.so.conf.d/lib32-glibc.conf"
|
|
|
|
|
|
|
|
# Symlink /usr/lib32/locale to /usr/lib/locale
|
|
|
|
ln -s ../lib/locale "$pkgdir/usr/lib32/locale"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
|
|
|
|
license=(GPL LGPL)
|
|
|
|
|
|
|
|
validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8 # Carlos O'Donell
|
|
|
|
BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
|
|
|
|
|
2022-05-24 13:03:11 +02:00
|
|
|
sha256sums=(SKIP
|
2022-03-20 13:19:37 +01:00
|
|
|
d42648cea552ba5353a32e264686e992263289d5cc86207314dffc54ab514981 # locale.gen.txt
|
2022-08-07 13:17:14 +02:00
|
|
|
8c5cc09018cbd65e8570430f872e118caa2644e311d6200b7d5f0cba837fbba4 # locale-gen
|
2022-03-20 13:19:37 +01:00
|
|
|
c27424154a6096ae32c0824b785e05de6acef33d9224fd6147d1936be9b4962b # lib32-glibc.conf
|
2022-08-07 13:17:14 +02:00
|
|
|
774061aff612a377714a509918a9e0e0aafce708b87d2d7e06b1bd1f6542fe70 # sdt.h
|
2022-03-20 13:19:37 +01:00
|
|
|
cdc234959c6fdb43f000d3bb7d1080b0103f4080f5e67bcfe8ae1aaf477812f0 # sdt-config.h
|
2022-05-24 13:03:11 +02:00
|
|
|
f5df8fc95592cce7825744aeb8c9699a5b4b5b7ccf7bcf554355167c3a7e375e) # disable-clone3.diff
|
2022-08-07 13:17:14 +02:00
|
|
|
|