GNU bug report logs -
#77768
[PATCH emacs-team] gnu: emacs-totp: Update to 0.1-1.fe05ce6.
Previous Next
To reply to this bug, email your comments to 77768 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#77768
; Package
guix-patches
.
(Sat, 12 Apr 2025 16:28:06 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Sat, 12 Apr 2025 16:28:06 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-totp): Update to 0.1-1.fe05ce6.
Change-Id: Iecc53c2eb3d881ab9739ad43db18092ccadbf546
---
gnu/packages/emacs-xyz.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2a377f5a08..46f0fb0c0e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43750,12 +43750,12 @@ (define-public emacs-x509-mode
(license license:expat))))
(define-public emacs-totp
- (let ((commit "a5e059b8475b32bc7f5ddadda248cf84449ed722") ;no releases
- (revision "0"))
+ (let ((commit "fe05ce6130ff1e9a76fc2aca289083475f70fd52") ;no releases
+ (revision "1"))
(package
(name "emacs-totp")
(home-page "https://github.com/juergenhoetzel/emacs-totp")
- (version (git-version "0.1.0" revision commit))
+ (version (git-version "0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -43764,14 +43764,17 @@ (define-public emacs-totp
(file-name (git-file-name name version))
(sha256
(base32
- "0b76fxk9r3n9zii75q1957ivb6ap5px5h87kagxz083nl77jky7a"))))
+ "04hazm8viy6dqakdj2dl849aj435jgsv3rqwq7sl7lgflrn8r45b"))))
(build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ; fail
+ (native-inputs
+ (list emacs-buttercup))
(synopsis "Generate Time-based One-time Passwords (TOTP) in Emacs")
(description
"emacs-TOTP implements @acronym{TOTP, Time-based One-time Passwords} as
specified in RFC 6238. It supports reading secrets in HEX and multiple base32
variations, including non-standard base32 encodings.")
- (license license:gpl3+))))
+ (license license:gpl3+))))
(define-public emacs-back-button
(package
base-commit: ca30726285b6883a3b1fa89db64177460af69c42
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77768
; Package
guix-patches
.
(Sun, 13 Apr 2025 15:18:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 77768 <at> debbugs.gnu.org (full text, mbox):
Am Samstag, dem 12.04.2025 um 18:26 +0200 schrieb Cayetano Santos:
> * gnu/packages/emacs-xyz.scm (emacs-totp): Update to 0.1-1.fe05ce6.
>
> Change-Id: Iecc53c2eb3d881ab9739ad43db18092ccadbf546
> ---
> gnu/packages/emacs-xyz.scm | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 2a377f5a08..46f0fb0c0e 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -43750,12 +43750,12 @@ (define-public emacs-x509-mode
> (license license:expat))))
>
> (define-public emacs-totp
> - (let ((commit "a5e059b8475b32bc7f5ddadda248cf84449ed722") ;no
> releases
> - (revision "0"))
> + (let ((commit "fe05ce6130ff1e9a76fc2aca289083475f70fd52") ;no
> releases
> + (revision "1"))
> (package
> (name "emacs-totp")
> (home-page "https://github.com/juergenhoetzel/emacs-totp")
> - (version (git-version "0.1.0" revision commit))
> + (version (git-version "0.1" revision commit))
> (source (origin
> (method git-fetch)
> (uri (git-reference
> @@ -43764,14 +43764,17 @@ (define-public emacs-totp
> (file-name (git-file-name name version))
> (sha256
> (base32
> -
> "0b76fxk9r3n9zii75q1957ivb6ap5px5h87kagxz083nl77jky7a"))))
> +
> "04hazm8viy6dqakdj2dl849aj435jgsv3rqwq7sl7lgflrn8r45b"))))
> (build-system emacs-build-system)
> + (arguments (list #:tests? #f)) ; fail
Instead of simply writing fail, indicate what/why fail :)
> + (native-inputs
> + (list emacs-buttercup))
> (synopsis "Generate Time-based One-time Passwords (TOTP) in
> Emacs")
> (description
> "emacs-TOTP implements @acronym{TOTP, Time-based One-time
> Passwords} as
> specified in RFC 6238. It supports reading secrets in HEX and
> multiple base32
> variations, including non-standard base32 encodings.")
> - (license license:gpl3+))))
> + (license license:gpl3+))))
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77768
; Package
guix-patches
.
(Sun, 13 Apr 2025 15:58:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 77768 <at> debbugs.gnu.org (full text, mbox):
[0001-gnu-emacs-totp-Update-to-0.1-1.fe05ce6.patch (text/x-patch, inline)]
From 6c841b2a9961ff1e82ba3b4ea7e2f5468eaf06b8 Mon Sep 17 00:00:00 2001
Message-ID: <6c841b2a9961ff1e82ba3b4ea7e2f5468eaf06b8.1744559588.git.csantosb <at> inventati.org>
From: Cayetano Santos <csantosb <at> inventati.org>
Date: Sun, 13 Apr 2025 17:51:01 +0200
Subject: [PATCH] gnu: emacs-totp: Update to 0.1-1.fe05ce6.
* gnu/packages/emacs-xyz.scm (emacs-totp): Update to 0.1-1.fe05ce6.
Change-Id: Ica415ebb6e2f5f502d992fe4018c2501dd4f1636
---
gnu/packages/emacs-xyz.scm | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ae45cd4f0b..fa3fba9700 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43752,12 +43752,12 @@ (define-public emacs-x509-mode
(license license:expat))))
(define-public emacs-totp
- (let ((commit "a5e059b8475b32bc7f5ddadda248cf84449ed722") ;no releases
- (revision "0"))
+ (let ((commit "fe05ce6130ff1e9a76fc2aca289083475f70fd52")
+ (revision "1"))
(package
(name "emacs-totp")
(home-page "https://github.com/juergenhoetzel/emacs-totp")
- (version (git-version "0.1.0" revision commit))
+ (version (git-version "0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -43766,14 +43766,18 @@ (define-public emacs-totp
(file-name (git-file-name name version))
(sha256
(base32
- "0b76fxk9r3n9zii75q1957ivb6ap5px5h87kagxz083nl77jky7a"))))
+ "04hazm8viy6dqakdj2dl849aj435jgsv3rqwq7sl7lgflrn8r45b"))))
(build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ; requires emacs compiled with gnutls support
+ (native-inputs (list emacs-buttercup))
(synopsis "Generate Time-based One-time Passwords (TOTP) in Emacs")
(description
"emacs-TOTP implements @acronym{TOTP, Time-based One-time Passwords} as
specified in RFC 6238. It supports reading secrets in HEX and multiple base32
variations, including non-standard base32 encodings.")
- (license license:gpl3+))))
+ (license license:gpl3+))))
(define-public emacs-back-button
(package
base-commit: 03edfea126a88110b520469e96eae73ce86d4b7d
--
2.49.0
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
andrew <at> trop.in, csantosb <at> inventati.org, divya <at> subvertising.org, hako <at> ultrarare.space, ian <at> retrospec.tv, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#77768
; Package
guix-patches
.
(Tue, 15 Apr 2025 10:01:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 77768 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-totp): Update to 0.1-1.fe05ce6.
Change-Id: If62942650068b54a31977169542e393886fdd3c6
---
gnu/packages/emacs-xyz.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 82831f0595..ac04caa5b3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43802,12 +43802,12 @@ (define-public emacs-x509-mode
(license license:expat))))
(define-public emacs-totp
- (let ((commit "a5e059b8475b32bc7f5ddadda248cf84449ed722") ;no releases
- (revision "0"))
+ (let ((commit "fe05ce6130ff1e9a76fc2aca289083475f70fd52") ;no releases
+ (revision "1"))
(package
(name "emacs-totp")
(home-page "https://github.com/juergenhoetzel/emacs-totp")
- (version (git-version "0.1.0" revision commit))
+ (version (git-version "0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
@@ -43816,14 +43816,17 @@ (define-public emacs-totp
(file-name (git-file-name name version))
(sha256
(base32
- "0b76fxk9r3n9zii75q1957ivb6ap5px5h87kagxz083nl77jky7a"))))
+ "04hazm8viy6dqakdj2dl849aj435jgsv3rqwq7sl7lgflrn8r45b"))))
+ ;; tests requires gnutls
+ (arguments (list #:emacs emacs))
(build-system emacs-build-system)
+ (native-inputs (list emacs-buttercup))
(synopsis "Generate Time-based One-time Passwords (TOTP) in Emacs")
(description
"emacs-TOTP implements @acronym{TOTP, Time-based One-time Passwords} as
specified in RFC 6238. It supports reading secrets in HEX and multiple base32
variations, including non-standard base32 encodings.")
- (license license:gpl3+))))
+ (license license:gpl3+))))
(define-public emacs-back-button
(package
base-commit: 373545dc9efbae6589f502773aa49e26e42c585e
--
2.49.0
This bug report was last modified today.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.