mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 22:21:45 +01:00
109 lines
3.0 KiB
Plaintext
109 lines
3.0 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Contributor: Michael Mason <ms13sp@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=coreutils
|
|
pkgver=9.6
|
|
pkgrel=2
|
|
pkgdesc="The basic file, shell and text manipulation utilities"
|
|
url="https://www.gnu.org/software/coreutils/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="acl-dev attr-dev utmps-dev perl openssl-dev"
|
|
subpackages="$pkgname-doc $pkgname-env $pkgname-fmt $pkgname-sha512sum:_sha512sum"
|
|
install="$pkgname.post-deinstall"
|
|
source="https://ftp.gnu.org/gnu/coreutils/coreutils-$pkgver.tar.xz
|
|
renameat2-fakeroot.patch
|
|
ls-fix-crash-with-context.patch
|
|
"
|
|
options="!check" # FAIL: tests/cp/reflink-auto
|
|
|
|
# secfixes:
|
|
# 9.4-r2:
|
|
# - CVE-2024-0684
|
|
# 8.30-r0:
|
|
# - CVE-2017-18018
|
|
|
|
build() {
|
|
# statvfs API is broken on 32 bit and musl implementation is equally
|
|
# broken on 64 bit. Avoid using it.
|
|
# https://lists.gnu.org/archive/html/bug-coreutils/2024-08/msg00021.html
|
|
fu_cv_sys_stat_statvfs=n \
|
|
CFLAGS="$CFLAGS -I/usr/include/utmps -flto=auto" \
|
|
LIBS="-lutmps -lskarnet" \
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--bindir=/bin \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-nls \
|
|
--enable-no-install-program=hostname,su,kill,uptime \
|
|
--enable-single-binary=symlinks \
|
|
--enable-single-binary-exceptions=env,fmt,sha512sum \
|
|
--with-openssl
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
# we put this separately
|
|
depends="
|
|
coreutils-env=$pkgver-r$pkgrel
|
|
coreutils-fmt=$pkgver-r$pkgrel
|
|
coreutils-sha512sum=$pkgver-r$pkgrel
|
|
"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
rm -rf "$pkgdir"/usr/lib/charset.alias
|
|
rmdir -p "$pkgdir"/usr/lib 2>/dev/null || true
|
|
|
|
install -d "$pkgdir"/usr/bin "$pkgdir"/usr/sbin
|
|
|
|
for i in "$pkgdir"/bin/*; do
|
|
case "${i##*/}" in
|
|
# Keep some binaries in /bin to replace busybox symlinks
|
|
base64|cat|chgrp|chmod|chown|cp|date|dd|df|echo|false|ln|ls|mkdir|\
|
|
mknod|mktemp|mv|nice|printenv|pwd|rm|rmdir|sleep|stat|stty|sync|\
|
|
touch|true|uname|coreutils) ;;
|
|
*)
|
|
if [ -L "$i" ]; then
|
|
rm "$i"
|
|
ln -s ../../bin/coreutils "$pkgdir/usr/bin/${i##*/}"
|
|
else
|
|
mv "$i" "$pkgdir"/usr/bin/
|
|
fi
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# chroot lives in /usr/sbin with busybox
|
|
rm "$pkgdir"/usr/bin/chroot
|
|
ln -s ../../bin/coreutils "$pkgdir"/usr/sbin/chroot
|
|
|
|
# resolve conflict between shadow and coreutils for cmd:groups
|
|
rm "$pkgdir"/usr/bin/groups
|
|
}
|
|
|
|
env() {
|
|
amove usr/bin/env
|
|
}
|
|
|
|
fmt() {
|
|
amove usr/bin/fmt
|
|
}
|
|
|
|
_sha512sum() {
|
|
amove usr/bin/sha512sum
|
|
}
|
|
|
|
sha512sums="
|
|
398391d7f9d77e6117b750abb8711eebdd9cd2549e7846cab26884fb2dd522b6bcfb8bf7fef35a12683e213ada7f89b817bf615628628d42aee3fa3102647b28 coreutils-9.6.tar.xz
|
|
a0317f6f42a0f821c6ec6745ff0f6be4ed9d2330ef1f886947a80a0f24dcddc6a28660c1d661da996577cc26b02c095a8aa058e553050acf90bce445ab07136a renameat2-fakeroot.patch
|
|
8fe19f0a484ae9ac6dcd69715f8a345dbb4bc0beec3ffce98487115bd3e849631d65a6d56860ab69084b3448a94a6e990cdefbe3cf1a8082290c6a328ce2440f ls-fix-crash-with-context.patch
|
|
"
|