[office/kmymoney/5.2] /: Update flatpak: aqbanking 6.8.5 / pcsc-lite 2.4.1
Mark Penner <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit bf9c43f123a2a703453e4c5bcb05494710e43f86 by Mark Penner, on behalf of Stefan Staeglich.
Committed on 26/07/2026 at 13:37.
Pushed by mrp into branch '5.2'.
Update flatpak: aqbanking 6.8.5 / pcsc-lite 2.4.1
M +4 -8 .flatpak-manifest.json
D +0 -30 packaging/pcsc-lite-negotiate_protocol.diff
https://invent.kde.org/office/kmymoney/-/commit/bf9c43f123a2a703453e4c5bcb05494710e43f86
diff --git a/.flatpak-manifest.json b/.flatpak-manifest.json
index f40063e4d..26f34bd4d 100644
--- a/.flatpak-manifest.json
+++ b/.flatpak-manifest.json
@@ -256,8 +256,8 @@
{
"type": "git",
"url": "https://git.aquamaniac.de/git/aqbanking",
- "commit": "a70a96589cff4b32364e1e856d0e735170312000",
- "tag": "6.8.4",
+ "commit": "656d93c50261019285a24c017c1f5e98991387bf",
+ "tag": "6.8.5",
"x-checker-data": {
"type": "git"
}
@@ -426,17 +426,13 @@
"sources": [
{
"type": "archive",
- "url": "https://pcsclite.apdu.fr/files/pcsc-lite-2.4.0.tar.xz",
- "sha256": "22307017a99e123dbecb991136783beca07966f1376d74d9ad0004ba5f81c4f1",
+ "url": "https://pcsclite.apdu.fr/files/pcsc-lite-2.4.1.tar.xz",
+ "sha256": "afd3ba68c8000d2be048dc292df99a9812df9ad2efaf0a366eea22ac1faa19a7",
"x-checker-data": {
"type": "anitya",
"project-id": 2611,
"url-template": "https://pcsclite.apdu.fr/files/pcsc-lite-$version.tar.xz"
}
- },
- {
- "type": "patch",
- "path": "packaging/pcsc-lite-negotiate_protocol.diff"
}
]
}
diff --git a/packaging/pcsc-lite-negotiate_protocol.diff b/packaging/pcsc-lite-negotiate_protocol.diff
deleted file mode 100644
index 300c193d4..000000000
--- a/packaging/pcsc-lite-negotiate_protocol.diff
+++ /dev/null
@@ -1,30 +0,0 @@
-SPDX-License-Identifier: BSD-3-Clause
-
-diff --git a/src/winscard_clnt.c b/src/winscard_clnt.c
-index b9c900e..4b84ee8 100644
---- a/src/winscard_clnt.c
-+++ b/src/winscard_clnt.c
-@@ -600,7 +600,22 @@ static LONG SCardEstablishContextTH(DWORD dwScope,
- goto cleanup;
- }
-
-- Log3(PCSC_LOG_INFO, "Server is protocol version %d:%d",
-+ if (veStr.rv != SCARD_S_SUCCESS){
-+ if (veStr.minor == 4 && PROTOCOL_VERSION_MINOR == 5){
-+ Log1(PCSC_LOG_INFO, "Reading from server again, mismatch");
-+
-+ veStr.major = PROTOCOL_VERSION_MAJOR;
-+ veStr.minor = 4;
-+ veStr.rv = SCARD_S_SUCCESS;
-+ rv = MessageSendWithHeader(CMD_VERSION, dwClientID, sizeof(veStr),
-+ &veStr);
-+
-+ Log1(PCSC_LOG_INFO, "Sent to server");
-+ rv = MessageReceive(&veStr, sizeof(veStr), dwClientID);
-+ }
-+ }
-+
-+ Log3(PCSC_LOG_INFO, "Negotiated protocol version %d:%d",
- veStr.major, veStr.minor);
-
- if (veStr.rv != SCARD_S_SUCCESS)