[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: ausweisapp: Update to 2.1.0.
From: |
guix-commits |
Subject: |
03/06: gnu: ausweisapp: Update to 2.1.0. |
Date: |
Tue, 19 Mar 2024 03:43:14 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 9e89b2276886f53d954a9c415c08e690f7301426
Author: Sergey Trofimov <sarg@sarg.org.ru>
AuthorDate: Sun Mar 10 08:26:17 2024 +0100
gnu: ausweisapp: Update to 2.1.0.
* gnu/packages/security-token.scm (ausweisapp2): Deprecate and rename to...
(ausweisapp): ... this. Update to 2.1.0.
[build-system]: Switch to qt-build-system.
[inputs]: Update dependencies to Qt6.
[native-inputs]: Replace qttools-5 with qttools.
---
gnu/packages/security-token.scm | 49 ++++++++++++++++++++++-------------------
1 file changed, 26 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm
index a1fc058db8..8fe9039f20 100644
--- a/gnu/packages/security-token.scm
+++ b/gnu/packages/security-token.scm
@@ -41,6 +41,7 @@
#:use-module (gnu packages)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
+ #:use-module (guix deprecation)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix utils)
@@ -950,43 +951,42 @@ for interaction with Nitrokey Pro, Nitrokey Storage, and
Librem Key
devices.")
(license license:gpl3+)))
-(define-public ausweisapp2
+(define-public ausweisapp
(package
- (name "ausweisapp2")
- (version "1.22.2")
+ (name "ausweisapp")
+ (version "2.1.0")
(source (origin
(method url-fetch)
- (uri (string-append
"https://github.com/Governikus/AusweisApp2/releases"
- "/download/" version "/AusweisApp2-" version
".tar.gz"))
+ (uri (string-append
"https://github.com/Governikus/AusweisApp/releases"
+ "/download/" version "/AusweisApp-" version
".tar.gz"))
(sha256
(base32
- "1qh1m057va7njs3yk0s31kwsvv44fjlsdac6lhiw5npcwssgjn8l"))))
+ "1jzxfybjrc3byw42bqjvn1nsn7vbgcl8y94sywjy6vaj3a58hy36"))))
- (build-system cmake-build-system)
+ (build-system qt-build-system)
(native-inputs
- (list pkg-config qttools-5))
+ (list pkg-config qttools))
(inputs
- (list qtbase-5
- qtsvg-5
- qtdeclarative-5
- qtwebsockets-5
+ (list qtbase
+ qtsvg
+ qtscxml
+ qtdeclarative
+ qtshadertools
+ qtwebsockets
qtgraphicaleffects
- qtquickcontrols2-5
pcsc-lite
openssl))
(arguments
- `(#:modules ((guix build cmake-build-system)
- (guix build qt-utils)
- (guix build utils))
- #:imported-modules (,@%cmake-build-system-modules
- (guix build qt-utils))
+ `(#:qtbase ,qtbase
#:phases
(modify-phases %standard-phases
- (add-after 'install 'wrap-qt
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- (wrap-qt-program "AusweisApp2" #:output out #:inputs
inputs)))))))
- (home-page "https://github.com/Governikus/AusweisApp2")
+ (replace 'check
+ (lambda* (#:key tests? parallel-tests? #:allow-other-keys)
+ (when tests? (invoke "ctest" "--output-on-failure" "-j"
+ (if parallel-tests?
+ (number->string (parallel-job-count))
+ "1"))))))))
+ (home-page "https://github.com/Governikus/AusweisApp")
(synopsis
"Authentication program for German ID cards and residence permits")
(description
@@ -996,6 +996,9 @@ titles. To use this app, a supported RFID card reader or
NFC-enabled smart
phone is required.")
(license license:eupl1.2)))
+(define-deprecated/public ausweisapp2 ausweisapp
+ (deprecated-package "ausweisapp2" ausweisapp))
+
(define-public libfido2
(package
(name "libfido2")
- branch master updated (c8556379c3 -> f12172612d), guix-commits, 2024/03/19
- 04/06: gnu: qemu: Re-instate info manual., guix-commits, 2024/03/19
- 06/06: doc: Adjust for QEMU info manual name change., guix-commits, 2024/03/19
- 03/06: gnu: ausweisapp: Update to 2.1.0.,
guix-commits <=
- 01/06: teams: qt: Remove erroneous comment at top of scripts., guix-commits, 2024/03/19
- 05/06: gnu: qemu: Update to 8.2.2., guix-commits, 2024/03/19
- 02/06: gnu: qtscxml: Update to 6.5.2., guix-commits, 2024/03/19