Date: Sunday, June 5, 2022 @ 13:45:48 Author: felixonmars Revision: 1222871
archrelease: copy trunk to community-x86_64 Added: libeatmydata/repos/community-x86_64/PKGBUILD (from rev 1222870, libeatmydata/trunk/PKGBUILD) Deleted: libeatmydata/repos/community-x86_64/PKGBUILD ----------+ PKGBUILD | 73 +++++++++++++++++++++++++++++-------------------------------- 1 file changed, 35 insertions(+), 38 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2022-06-05 13:45:36 UTC (rev 1222870) +++ PKGBUILD 2022-06-05 13:45:48 UTC (rev 1222871) @@ -1,38 +0,0 @@ -# Maintainer: Felix Yan <felixonm...@archlinux.org> -# Contributor: goetzc -# Contributor: Jonathan Squirawski <s...@sky-co.de> - -pkgname=libeatmydata -pkgver=105.r16.g96f8f0e -_commit=96f8f0e8291cbc0131529fcb03d4c7df1fe7792c -pkgrel=2 -pkgdesc='Library and utilities designed to disable fsync and friends.' -arch=('i686' 'x86_64') -url='https://github.com/stewartsmith/libeatmydata' -license=('GPL3') -depends=('bash') -makedepends=('git') -source=("git+https://github.com/stewartsmith/${pkgname}/#commit=$_commit") -md5sums=('SKIP') - -pkgver() { - cd libeatmydata - git describe --tags | sed 's/^libeatmydata-//;s/\([^-]*-g\)/r\1/;s/-/./g' -} - -build() { - cd libeatmydata - autoreconf -i - ./configure --prefix=/usr --libexecdir=/usr/lib/libeatmydata - make -} - -check() { - cd libeatmydata - make check || warning "Tests need strace permission to run" -} - -package() { - cd libeatmydata - make DESTDIR="$pkgdir" install -} Copied: libeatmydata/repos/community-x86_64/PKGBUILD (from rev 1222870, libeatmydata/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2022-06-05 13:45:48 UTC (rev 1222871) @@ -0,0 +1,35 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: goetzc +# Contributor: Jonathan Squirawski <s...@sky-co.de> + +pkgname=libeatmydata +pkgver=130 +pkgrel=1 +pkgdesc='Library and utilities designed to disable fsync and friends.' +arch=('x86_64') +url='https://github.com/stewartsmith/libeatmydata' +license=('GPL3') +depends=('bash') +source=("https://github.com/stewartsmith/libeatmydata/archive/v$pkgver/$pkgname-$pkgver.tar.gz") +md5sums=('560c0704ae4e8533e79a363ccf46f632') + +prepare() { + cd libeatmydata-$pkgver + autoreconf -i +} + +build() { + cd libeatmydata-$pkgver + ./configure --prefix=/usr --libexecdir=/usr/lib/libeatmydata + make +} + +check() { + cd libeatmydata-$pkgver + make check || echo "Tests need strace permission to run" +} + +package() { + cd libeatmydata-$pkgver + make DESTDIR="$pkgdir" install +}