summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Hoeher2020-09-07 05:29:33 +0000
committerMartin Hoeher2020-09-07 05:29:33 +0000
commitac0972307415f62004a310ca463887b40e16efcf (patch)
tree90fc4ad81840bdeaa1bd46614fa9a109dc7cf5d8
parenta66cf03ae1ccc0e903b01c6ab0f024d82136fd20 (diff)
downloadaur-ac0972307415f62004a310ca463887b40e16efcf.tar.gz
Update to v3.26.0
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD9
2 files changed, 8 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2f7e9e53fbf2..73f038d295de 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -15,7 +15,7 @@ pkgbase = opentodolist
depends = noto-fonts
provides = opentodolist
conflicts = opentodolist
- source = opentodolist::git+https://gitlab.com/rpdev/opentodolist.git#commit=3.25.0
+ source = opentodolist::git+https://gitlab.com/rpdev/opentodolist.git#commit=ab0c2f7304bf57fd4e6e226e4c42381964ce6dd1
md5sums = SKIP
pkgname = opentodolist
diff --git a/PKGBUILD b/PKGBUILD
index caaf2a4a0aeb..f5f71bd065e2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,7 @@
# Maintainer: Martin Hoeher <martin@rpdev.net>
+# Automatically released from https://gitlab.com/rpdev/opentodolist/-/pipelines/186578590
pkgname=opentodolist
-pkgver=3.25.0
+pkgver=3.26.0
pkgrel=2
pkgdesc="Maintain todo lists, notes and images in libraries, which can be synced via various services like NextCloud between your devices."
arch=('x86_64')
@@ -48,7 +49,11 @@ build() {
check() {
cd "$srcdir/${pkgname%}"
cd build
- make check
+ # Some unit tests are failing sometimes - this is due to multi-threading issues
+ # where the test does not "wait in the right order" (kind of). Ideally, we'd fix
+ # this, however, in order to avoid issues, retry the testing.
+ # If the test fails three times, this is a clear sign that something IS broken.
+ make check || make check || make check
}
package() {