* update strace to 6.11-1

This commit is contained in:
Alexander Baldeck 2024-10-27 22:53:46 +01:00
parent 8956df28cf
commit 4ebb8a36f4
2 changed files with 17 additions and 14 deletions

View File

@ -1,6 +1,6 @@
pkgbase = strace
pkgdesc = A diagnostic, debugging and instructional userspace tracer
pkgver = 6.10
pkgver = 6.11
pkgrel = 1
url = https://strace.io/
arch = x86_64
@ -9,12 +9,12 @@ pkgbase = strace
arch = powerpc
arch = riscv64
license = LGPL-2.1-or-later
depends = perl
depends = glibc
depends = libunwind
source = https://github.com/strace/strace/releases/download/v6.10/strace-6.10.tar.xz
source = https://github.com/strace/strace/releases/download/v6.10/strace-6.10.tar.xz.asc
source = https://github.com/strace/strace/releases/download/v6.11/strace-6.11.tar.xz
source = https://github.com/strace/strace/releases/download/v6.11/strace-6.11.tar.xz.asc
validpgpkeys = 296D6F29A020808E8717A8842DB5BD89A340AEB7
sha256sums = 765ec71aa1de2fe37363c1e40c7b7669fc1d40c44bb5d38ba8e8cd82c4edcf07
sha256sums = 83262583a3529f02c3501aa8b8ac772b4cbc03dc934e98bab6e4883626e283a5
sha256sums = SKIP
pkgname = strace

View File

@ -1,17 +1,22 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Maintainer: Anatol Pomozov
# Maintainer: Carl Smedstad <carsme@archlinux.org>
# Ctonributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=strace
pkgver=6.10
pkgver=6.11
pkgrel=1
pkgdesc='A diagnostic, debugging and instructional userspace tracer'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://strace.io/'
license=(LGPL-2.1-or-later)
depends=(perl libunwind)
source=(https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz{,.asc})
sha256sums=('765ec71aa1de2fe37363c1e40c7b7669fc1d40c44bb5d38ba8e8cd82c4edcf07'
depends=(
glibc
libunwind
)
source=("https://github.com/strace/strace/releases/download/v$pkgver/strace-$pkgver.tar.xz"{,.asc})
sha256sums=('83262583a3529f02c3501aa8b8ac772b4cbc03dc934e98bab6e4883626e283a5'
'SKIP')
validpgpkeys=('296D6F29A020808E8717A8842DB5BD89A340AEB7') # Dmitry V. Levin <ldv@altlinux.org>
@ -22,13 +27,11 @@ build() {
}
check() {
# tests do not work in chroot environment. TODO: fixit.
# make -C $pkgname-$pkgver check
true
make -C $pkgname-$pkgver check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYING
}