[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/22: gnu: aqbanking: Update to 6.5.4.
From: |
guix-commits |
Subject: |
10/22: gnu: aqbanking: Update to 6.5.4. |
Date: |
Sat, 4 May 2024 13:16:01 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 3ca4d48322f6ac7fa503fcb0b1ed15db8e9fc990
Author: Steve George <steve@futurile.net>
AuthorDate: Fri Apr 26 13:41:57 2024 +0200
gnu: aqbanking: Update to 6.5.4.
* gnu/packages/gnucash (aqbanking): Update to 6.5.4.
Change-Id: I8d10562e1fc8517bee946792ad1ac901a26137d5
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/gnucash.scm | 71 ++++++++++++++++++++++++------------------------
1 file changed, 36 insertions(+), 35 deletions(-)
diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm
index d8d13f9780..d5681ed86d 100644
--- a/gnu/packages/gnucash.scm
+++ b/gnu/packages/gnucash.scm
@@ -276,42 +276,43 @@ applications and libraries. It is used by AqBanking.")
(license license:lgpl2.1+))))
(define-public aqbanking
- (package
- (name "aqbanking")
- (version "6.3.2")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://www.aquamaniac.de/rdm/attachments/"
- "download/386/aqbanking-" version ".tar.gz"))
- (sha256
- (base32 "061l7qja7x557650kphbg1gzxc52a7557nibgdhv5jwqf8pv8ym9"))))
- (build-system gnu-build-system)
- (arguments
- `(;; Parallel building fails because aqhbci is required before it's
- ;; built.
- #:parallel-build? #f
- #:phases
- (modify-phases %standard-phases
- ;; Embed the package version instead of the build date
- (add-after 'unpack 'use-version-instead-of-date
- (lambda _
- (substitute*
- "src/libs/plugins/backends/aqhbci/header.xml.in"
- (("@DATETIME@") ,version)))))))
- (propagated-inputs
- (list gwenhywfar))
- (inputs
- (list gmp xmlsec gnutls))
- (native-inputs
- (list pkg-config gettext-minimal libltdl))
- (home-page "https://www.aquamaniac.de")
- (synopsis "Interface for online banking tasks")
- (description
- "AqBanking is a modular and generic interface to online banking tasks,
+ (let ((attachid "499")) ;; file attachid changes for each version
+ (package
+ (name "aqbanking")
+ (version "6.5.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://www.aquamaniac.de/rdm/attachments/"
+ "download/" attachid "/aqbanking-" version
".tar.gz"))
+ (sha256
+ (base32 "16dc63gav0b4rmwj0clqilfpz4hlidx59x1qcr38wwghfspcw5hd"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(;; Parallel building fails because aqhbci is required before it's
+ ;; built.
+ #:parallel-build? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; Embed the package version instead of the build date
+ (add-after 'unpack 'use-version-instead-of-date
+ (lambda _
+ (substitute*
+ "src/libs/plugins/backends/aqhbci/header.xml.in"
+ (("@DATETIME@") ,version)))))))
+ (propagated-inputs
+ (list gwenhywfar))
+ (inputs
+ (list gmp xmlsec gnutls))
+ (native-inputs
+ (list pkg-config gettext-minimal libltdl))
+ (home-page "https://www.aquamaniac.de")
+ (synopsis "Interface for online banking tasks")
+ (description
+ "AqBanking is a modular and generic interface to online banking tasks,
financial file formats (import/export) and bank/country/currency information.
AqBanking uses backend plugins to actually perform the online tasks. HBCI,
OFX DirectConnect, YellowNet, GeldKarte, and DTAUS discs are currently
supported. AqBanking is used by GnuCash, KMyMoney, and QBankManager.")
- ;; AqBanking is licensed under the GPLv2 or GPLv3
- (license (list license:gpl2 license:gpl3))))
+ ;; AqBanking is licensed under the GPLv2 or GPLv3
+ (license (list license:gpl2 license:gpl3)))))
- branch master updated (9e184d5e54 -> ef8ab6ab66), guix-commits, 2024/05/04
- 15/22: gnu: Add perl-sub-override., guix-commits, 2024/05/04
- 01/22: records: Do not inline throws for ABI mismatches., guix-commits, 2024/05/04
- 04/22: packages: ‘define-public’ replacement calls ‘module-export!’ directly., guix-commits, 2024/05/04
- 08/22: services: cuirass: Remove use-substitutes? configuration option., guix-commits, 2024/05/04
- 14/22: gnu: Add perl-string-util., guix-commits, 2024/05/04
- 11/22: gnu: Add perl-html-selector-xpath., guix-commits, 2024/05/04
- 07/22: services: cuirass: Add new configuration options., guix-commits, 2024/05/04
- 09/22: gnu: gwenhywfar: Update to 5.10.2., guix-commits, 2024/05/04
- 21/22: gnu: gnucash: Update to 5.6., guix-commits, 2024/05/04
- 10/22: gnu: aqbanking: Update to 6.5.4.,
guix-commits <=
- 05/22: packages: Reduce code bloat due to list allocation in input fields., guix-commits, 2024/05/04
- 16/22: gnu: Add perl-html-tokeparser-simple., guix-commits, 2024/05/04
- 06/22: services: cuirass: Use separate extra options for cuirass web process., guix-commits, 2024/05/04
- 22/22: gnu: guix-configuration: Improve offload build-machines., guix-commits, 2024/05/04
- 03/22: records: Do not inline the constructor., guix-commits, 2024/05/04
- 19/22: gnu: Add perl-spreadsheet-xlsx., guix-commits, 2024/05/04
- 13/22: gnu: Add perl-web-scraper., guix-commits, 2024/05/04
- 17/22: gnu: Add perl-digest-perl-md5., guix-commits, 2024/05/04
- 02/22: packages: Reduce bloat induced by ‘sanitize-inputs’., guix-commits, 2024/05/04
- 20/22: gnu: perl-finance-quote: Update perl-finance-quote., guix-commits, 2024/05/04