[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/22: gnu: gwenhywfar: Update to 5.10.2.
From: |
guix-commits |
Subject: |
09/22: gnu: gwenhywfar: Update to 5.10.2. |
Date: |
Sat, 4 May 2024 13:16:01 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 96a0a7431ff216d1a3c8ca7858e150e557aebe4d
Author: Steve George <steve@futurile.net>
AuthorDate: Fri Apr 26 13:41:56 2024 +0200
gnu: gwenhywfar: Update to 5.10.2.
* gnu/packages/gnucash.scm (gwenhywfar): Update to 5.10.2.
[inputs]: add libxml2.
[arguments]: <configure-flags>: Remove flag that's not recognised
--with-openssl-includes; add --with-libxml2-code, --enable-system-certs
and --disable-binreloc
Change-Id: I4085779e3ed7ecb621dd3d0b5427e92962466033
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/gnucash.scm | 62 ++++++++++++++++++++++++------------------------
1 file changed, 31 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm
index 0f3217ffe3..d8d13f9780 100644
--- a/gnu/packages/gnucash.scm
+++ b/gnu/packages/gnucash.scm
@@ -242,38 +242,38 @@ to be read using the GNOME Yelp program.")
(license (list license:fdl1.1+ license:gpl3+)))))
(define-public gwenhywfar
- (package
- (name "gwenhywfar")
- (version "5.6.0")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://www.aquamaniac.de/rdm/attachments/"
- "download/364/gwenhywfar-" version ".tar.gz"))
- (sha256
- (base32 "1isbj4a7vdgagp3kkvx2pjcjy8lba6kzjr11fmr06aci1694dbsp"))))
- (build-system gnu-build-system)
- (arguments
- `(#:configure-flags
- (list "--disable-network-checks"
- ;; GTK+3, GTK+2 and QT4 are supported.
- "--with-guis=gtk3"
- (string-append "--with-openssl-includes="
- (assoc-ref %build-inputs "openssl") "/include")
- (string-append "--with-openssl-libs="
- (assoc-ref %build-inputs "openssl") "/lib"))))
- (inputs
- (list libgcrypt gnutls openssl gtk+))
- (native-inputs
- (list pkg-config))
- (home-page "https://www.aquamaniac.de")
- (synopsis "Utility library for networking and security applications")
- (description
- "This package provides a helper library for networking and security
+ (let ((attachid "501")) ;; file attachid changes for each version
+ (package
+ (name "gwenhywfar")
+ (version "5.10.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://www.aquamaniac.de/rdm/attachments/"
+ "download/" attachid "/gwenhywfar-" version
".tar.gz"))
+ (sha256
+ (base32 "1qd950kilf9bcb51b1daykipanml6bg1h3pj10950r98ah1xm9v0"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ (list "--disable-network-checks"
+ ;; GTK+3, GTK+2 and QT4 are supported.
+ "--with-guis=gtk3"
+ "--enable-system-certs"
+ "--with-libxml2-code=yes"
+ "--disable-binreloc")))
+ (inputs
+ (list libgcrypt gnutls openssl gtk+ libxml2))
+ (native-inputs
+ (list pkg-config))
+ (home-page "https://www.aquamaniac.de")
+ (synopsis "Utility library for networking and security applications")
+ (description
+ "This package provides a helper library for networking and security
applications and libraries. It is used by AqBanking.")
- ;; The license includes an explicit additional permission to compile and
- ;; distribute this library with the OpenSSL Toolkit.
- (license license:lgpl2.1+)))
+ ;; The license includes an explicit additional permission to compile and
+ ;; distribute this library with the OpenSSL Toolkit.
+ (license license:lgpl2.1+))))
(define-public aqbanking
(package
- 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 <=
- 21/22: gnu: gnucash: Update to 5.6., guix-commits, 2024/05/04
- 10/22: gnu: aqbanking: Update to 6.5.4., guix-commits, 2024/05/04
- 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