* update findutils to 4.10.0-2

This commit is contained in:
Alexander Baldeck 2024-09-22 01:14:55 +02:00
parent 1ce6f05798
commit 598752d9b1
3 changed files with 35 additions and 9 deletions

17
findutils/.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = findutils
pkgdesc = GNU utilities to locate files
pkgver = 4.10.0
pkgrel = 2
url = https://www.gnu.org/software/findutils/
arch = x86_64
license = GPL-3.0-or-later
makedepends = git
makedepends = wget
makedepends = python
depends = glibc
depends = sh
source = git+https://git.savannah.gnu.org/git/findutils.git?signed#tag=v4.10.0
validpgpkeys = A5189DB69C1164D33002936646502EF796917195
b2sums = a6d99d922df4c6895d9956a6902518c5f911e6ad1fdcbfc99bb083ce0a725fa4e87bb83a1a2d16e6d900755da9e9094b20f56f971c8e6a6008572cd417fe3e95
pkgname = findutils

View File

@ -0,0 +1,4 @@
[findutils]
source = "git"
git = "https://git.savannah.gnu.org/git/findutils.git"
prefix = "v"

View File

@ -1,21 +1,26 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer:
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=findutils
pkgver=4.10.0
pkgrel=1
pkgrel=2
pkgdesc="GNU utilities to locate files"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=('GPL-3.0-or-later')
depends=('glibc' 'sh')
makedepends=('git' 'wget' 'python')
url='https://www.gnu.org/software/findutils/'
source=("https://ftp.gnu.org/pub/gnu/findutils/${pkgname}-${pkgver}.tar.xz"{,.sig})
sha256sums=('1387e0b67ff247d2abde998f90dfbf70c1491391a59ddfecb8ae698789f0a4f5'
'SKIP')
source=("git+https://git.savannah.gnu.org/git/findutils.git?signed#tag=v${pkgver}")
b2sums=('a6d99d922df4c6895d9956a6902518c5f911e6ad1fdcbfc99bb083ce0a725fa4e87bb83a1a2d16e6d900755da9e9094b20f56f971c8e6a6008572cd417fe3e95')
validpgpkeys=('A5189DB69C1164D33002936646502EF796917195') # Bernhard Voelker <mail@bernhard-voelker.de>
prepare() {
cd "${pkgname}"
./bootstrap
}
build() {
cd ${pkgname}-${pkgver}
cd "${pkgname}"
# Don't build or install locate because we use mlocate,
# which is a secure version of locate.
@ -28,11 +33,11 @@ build() {
}
check() {
cd ${pkgname}-${pkgver}
cd "${pkgname}"
make check
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="$pkgdir" install
cd "${pkgname}"
make DESTDIR="${pkgdir}" install
}