You've already forked floweepay-aur
Prepare second Feb release
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
pkgbase = flowee-pay
|
||||
pkgdesc = Flowee Payment solution
|
||||
pkgver = 2026.01.3
|
||||
pkgver = 2026.02.1
|
||||
pkgrel = 1
|
||||
url = http://flowee.org/pay/
|
||||
install = flowee-pay.install
|
||||
@@ -9,7 +9,7 @@ pkgbase = flowee-pay
|
||||
license = GPL3
|
||||
makedepends = boost
|
||||
makedepends = cmake
|
||||
makedepends = flowee>=2026.01.0
|
||||
makedepends = flowee>=2026.02.0
|
||||
makedepends = qt6-tools
|
||||
depends = qt6-base
|
||||
depends = qt6-declarative
|
||||
@@ -20,9 +20,11 @@ pkgbase = flowee-pay
|
||||
depends = qt6-multimedia
|
||||
provides = flowee-pay
|
||||
options = !lto
|
||||
source = https://codeberg.org/Flowee/pay/archive/2026.01.3.tar.gz
|
||||
source = https://codeberg.org/Flowee/pay/archive/2026.02.1.tar.gz
|
||||
source = 0001-Fix-off-by-one-in-unit-test.patch
|
||||
source = https://flowee.org/products/pay/blockheaders-850000
|
||||
sha256sums = eb54271aa0fdf69f05ad4a72e0673c98918de5e957a12c9f1d8b7be30f1697d9
|
||||
sha256sums = a3a8443e6236498fa384478366c8b35dea5c7cec3b8b9b06d5b0ba9a835d2b95
|
||||
sha256sums = f7e4bf13406b1836fb0e80b97f01d8f5098b3c4c9de230ac5463c009a5019316
|
||||
sha256sums = 4a98c3b655cfd7520b4d4f682d95e3a82e0f03fda4fa687d28f2127205d66047
|
||||
|
||||
pkgname = flowee-pay
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
From e676015393ad1c59b3b7261bf54ce64e321e8ee7 Mon Sep 17 00:00:00 2001
|
||||
From: TomZ <tom@flowee.org>
|
||||
Date: Sat, 14 Feb 2026 16:55:23 +0100
|
||||
Subject: [PATCH] Fix off by one in unit test.
|
||||
|
||||
---
|
||||
testing/walletHistoryModel/TestWalletHistoryModel.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/testing/walletHistoryModel/TestWalletHistoryModel.cpp b/testing/walletHistoryModel/TestWalletHistoryModel.cpp
|
||||
index 6cb9077..3f92ca8 100644
|
||||
--- a/testing/walletHistoryModel/TestWalletHistoryModel.cpp
|
||||
+++ b/testing/walletHistoryModel/TestWalletHistoryModel.cpp
|
||||
@@ -88,7 +88,7 @@ void TestWalletHistoryModel::basic()
|
||||
QCOMPARE(model->rowCount(), 0);
|
||||
wallet->createTransactions1();
|
||||
model->notifyNewTransactions(1, 6000); // wallet starts counting at 1
|
||||
- QCOMPARE(model->rowCount(), 6001); // The model auto-inserts one 'since last seen' row.
|
||||
+ QCOMPARE(model->rowCount(), 6000); // The model auto-inserts one 'since last seen' row.
|
||||
|
||||
auto first = model->data(model->index(0, 0), WalletHistoryModel::MinedHeight);
|
||||
QVERIFY(first.isValid());
|
||||
--
|
||||
2.52.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Maintainer: Tom Zander
|
||||
|
||||
pkgname=flowee-pay
|
||||
pkgver=2026.01.3
|
||||
pkgver=2026.02.1
|
||||
options=(!lto)
|
||||
pkgrel=1
|
||||
pkgdesc="Flowee Payment solution"
|
||||
@@ -9,12 +9,14 @@ arch=('x86_64' 'aarch64')
|
||||
url="http://flowee.org/pay/"
|
||||
license=('GPL3')
|
||||
depends=('qt6-base' 'qt6-declarative' 'qt6-svg' 'qt6-shadertools' 'qt6-scxml' 'zxing-cpp' 'qt6-multimedia')
|
||||
makedepends=('boost' 'cmake' 'flowee>=2026.01.0' 'qt6-tools')
|
||||
makedepends=('boost' 'cmake' 'flowee>=2026.02.0' 'qt6-tools')
|
||||
provides=('flowee-pay')
|
||||
install=flowee-pay.install
|
||||
source=("https://codeberg.org/Flowee/pay/archive/$pkgver.tar.gz"
|
||||
"0001-Fix-off-by-one-in-unit-test.patch"
|
||||
"https://flowee.org/products/pay/blockheaders-850000")
|
||||
sha256sums=('eb54271aa0fdf69f05ad4a72e0673c98918de5e957a12c9f1d8b7be30f1697d9'
|
||||
sha256sums=('a3a8443e6236498fa384478366c8b35dea5c7cec3b8b9b06d5b0ba9a835d2b95'
|
||||
'f7e4bf13406b1836fb0e80b97f01d8f5098b3c4c9de230ac5463c009a5019316'
|
||||
'4a98c3b655cfd7520b4d4f682d95e3a82e0f03fda4fa687d28f2127205d66047')
|
||||
|
||||
build() {
|
||||
@@ -25,6 +27,11 @@ build() {
|
||||
make
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/pay"
|
||||
patch -Np1 -i ../0001-Fix-off-by-one-in-unit-test.patch
|
||||
}
|
||||
|
||||
check() {
|
||||
cd build/testing
|
||||
make check
|
||||
|
||||
Reference in New Issue
Block a user