core/libaio to 0.3.113-1

This commit is contained in:
Kevin Mihelich 2022-04-21 12:56:36 +00:00
parent 62c3756e68
commit 169250c4af

View file

@ -6,8 +6,8 @@
# - replace simplified CFLAGS with ARM versions
pkgname=libaio
pkgver=0.3.112
pkgrel=3
pkgver=0.3.113
pkgrel=1
pkgdesc="The Linux-native asynchronous I/O facility (aio) library"
arch=(x86_64)
url="https://pagure.io/libaio"
@ -15,29 +15,29 @@ license=(LGPL2.1)
depends=(glibc)
provides=(libaio.so)
options=(debug)
source=(https://releases.pagure.org/libaio/${pkgname}-${pkgver}.tar.gz)
sha512sums=('5f984529c9f747a6c82f1e4457fc0832bb1fc299ae6e700f2ac5a8ea7b9bfc6ea1e75809728cc115a020cff6685ed1f4e38c6aeacc1ea98dfccce04dd19dafaa')
b2sums=('088f3b195a65bdc97ae2318e47af17c65259ed3208dca7bfef93c81a800602085e5b2078dbd436c740be316d0ebd923a1b3b7c0808257e2e7c7fb0f7ae1e0dba')
source=(https://pagure.io/libaio/archive/$pkgname-$pkgver/$pkgname-$pkgname-$pkgver.tar.gz)
sha512sums=('8058c927de0b5f7079fc232d2be23272537694bf271488af1dc0330b58afc307931792ab138512c5e00aa3ea921935a6d862f575fb0cc2bf323de63d8df208cd')
b2sums=('e06c1c1cc118c15f6bed1abfa97368d7ccc0d2e716a233cd4141936fb382e40909c340a6c882b18ee9461aaa23dd77a6644a38bdb5a00c1444538a2e0ab816d4')
prepare() {
# -Werror, not even once
sed 's/-Werror//' -i $pkgname-$pkgver/harness/Makefile
sed 's/-Werror//' -i $pkgname-$pkgname-$pkgver/harness/Makefile
}
build() {
# libaio is a thin wrapper around kernel syscalls, it does not use stdlib and
# other helpers like stack protection libraries
[[ $CARCH == "aarch64" ]] && CFLAGS="-march=armv8-a -O2 -pipe" || CFLAGS="-march=armv7-a -mfloat-abi=hard -mfpu=neon -O2 -pipe"
make -C $pkgname-$pkgver
make -C $pkgname-$pkgname-$pkgver
}
check() {
make partcheck -k -C $pkgname-$pkgver
make partcheck -k -C $pkgname-$pkgname-$pkgver
}
package() {
make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
install -vDm 644 $pkgname-$pkgver/{ChangeLog,README.md} -t "$pkgdir/usr/share/doc/$pkgname/"
install -vDm 644 $pkgname-$pkgver/man/*.3 -t "$pkgdir/usr/share/man/man3/"
make DESTDIR="$pkgdir" install -C $pkgname-$pkgname-$pkgver
install -vDm 644 $pkgname-$pkgname-$pkgver/{ChangeLog,README.md} -t "$pkgdir/usr/share/doc/$pkgname/"
install -vDm 644 $pkgname-$pkgname-$pkgver/man/*.3 -t "$pkgdir/usr/share/man/man3/"
}