summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD12
-rw-r--r--renameat2-test-fix.patch7
3 files changed, 4 insertions, 20 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e71b3d347b25..9cd9cedd541d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = casync-git
pkgdesc = Content-Addressable Data Synchronization Tool
- pkgver = 2.r152.ge4a3c5e
+ pkgver = 2.r267.g0efa7ab
pkgrel = 1
url = https://github.com/systemd/casync
arch = x86
@@ -21,9 +21,6 @@ pkgbase = casync-git
provides = casync
conflicts = casync
source = casync-git::git+https://github.com/systemd/casync
- source = renameat2-test-fix.patch
sha256sums = SKIP
- sha256sums = 3fb0fc4965039d0fc5b51c8fe49bb7ad74108324ff921c6f5b74127036c28d51
pkgname = casync-git
-
diff --git a/PKGBUILD b/PKGBUILD
index 6c9c4af1e2a1..c1f6ec22ebb2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Nikita Puzyryov <PuzyryovN@gmail.com>
pkgname=casync-git
-pkgver=2.r152.ge4a3c5e
+pkgver=2.r267.g0efa7ab
pkgrel=1
pkgdesc="Content-Addressable Data Synchronization Tool"
arch=(x86 x86_64)
@@ -12,9 +12,8 @@ optdepends=()
checkdepends=('rsync')
provides=('casync')
conflicts=('casync')
-source=("$pkgname::git+$url" 'renameat2-test-fix.patch')
-sha256sums=('SKIP'
- '3fb0fc4965039d0fc5b51c8fe49bb7ad74108324ff921c6f5b74127036c28d51')
+source=("$pkgname::git+$url")
+sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
@@ -24,11 +23,6 @@ pkgver() {
)
}
-prepare() {
- cd "$srcdir/$pkgname"
- patch -p1 -i "$srcdir/renameat2-test-fix.patch"
-}
-
build() {
cd "$srcdir/$pkgname"
arch-meson build/ -Dselinux=false
diff --git a/renameat2-test-fix.patch b/renameat2-test-fix.patch
deleted file mode 100644
index 8022869578b9..000000000000
--- a/renameat2-test-fix.patch
+++ /dev/null
@@ -1,7 +0,0 @@
-diff --git a/meson.build b/meson.build
-index f42ed16..c0f741e 100644
---- a/meson.build
-+++ b/meson.build
-@@ -81 +81 @@ foreach ident : [
-- have = cc.has_function(ident[0], prefix : ident[1])
-+ have = cc.has_function(ident[0], args : '-D_GNU_SOURCE', prefix : ident[1])