GNU bug report logs - #63041
[PATCH] gnu: emacs-password-store: Update to 2.3.0.

Previous Next

Package: guix-patches;

Reported by: Mekeor Melire <mekeor <at> posteo.de>

Date: Sun, 23 Apr 2023 21:53:01 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 63041 in the body.
You can then email your comments to 63041 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#63041; Package guix-patches. (Sun, 23 Apr 2023 21:53:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Mekeor Melire <mekeor <at> posteo.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 23 Apr 2023 21:53:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mekeor Melire <mekeor <at> posteo.de>
To: guix-patches <at> gnu.org
Cc: Mekeor Melire <mekeor <at> posteo.de>
Subject: [PATCH] gnu: emacs-password-store: Update to 2.3.0.
Date: Sun, 23 Apr 2023 21:51:44 +0000
* gnu/packages/emacs-xyz.scm (emacs-password-store): Update to 2.3.0.
[propagated-inputs]: Remove emacs-auth-source-pass.
---
 gnu/packages/emacs-xyz.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 234b0f6868..e3a0f2e0e3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20959,14 +20959,14 @@ (define-public emacs-ergoemacs-mode
     (license license:gpl3+)))
 
 (define-public emacs-password-store
-  (let ((commit "918992c19231b33b3d4a3288a7288a620e608cb4")
+  (let ((commit "26d2dae04bb76a87be6960861c10432820cd5d55")
         (revision "1"))
     (package
       (name "emacs-password-store")
       ;; The emacs package version does not match the password-store version,
       ;; even though it is part of the same repository.  When updating, look
       ;; at the version declared in password-store.el.
-      (version (git-version "2.1.4" revision commit))
+      (version (git-version "2.3.0" revision commit))
       (source (origin
                 (method git-fetch)
                 (uri (git-reference
@@ -20975,7 +20975,7 @@ (define-public emacs-password-store
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0ni62f4pq96g0i0q66bch1dl9k4zqwhg7xaf746k3gbbqxcdh3vi"))))
+                  "1pkx6pgkkpddxrshzq3x8ilfwqjw9gawnbbskcbssxc88wrpbcjb"))))
       (build-system emacs-build-system)
       (arguments
        (list #:phases
@@ -20996,7 +20996,7 @@ (define-public emacs-password-store
       (inputs
        (list password-store))
       (propagated-inputs
-       (list emacs-auth-source-pass emacs-s emacs-with-editor))
+       (list emacs-s emacs-with-editor))
       (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
       (synopsis "Password store (pass) support for Emacs")
       (description

base-commit: 74e96c4cb171b17949f638d8b452d047a8f2dc6f
-- 
2.39.2





Information forwarded to guix-patches <at> gnu.org:
bug#63041; Package guix-patches. (Sun, 23 Apr 2023 22:29:02 GMT) Full text and rfc822 format available.

Message #8 received at 63041 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Mekeor Melire <mekeor <at> posteo.de>
Cc: 63041 <at> debbugs.gnu.org
Subject: Re: [bug#63041] [PATCH] gnu: emacs-password-store: Update to 2.3.0.
Date: Mon, 24 Apr 2023 00:28:04 +0200
Hello,

Mekeor Melire <mekeor <at> posteo.de> writes:

> * gnu/packages/emacs-xyz.scm (emacs-password-store): Update to 2.3.0.
> [propagated-inputs]: Remove emacs-auth-source-pass.

Thank you.

>  (define-public emacs-password-store
> -  (let ((commit "918992c19231b33b3d4a3288a7288a620e608cb4")
> +  (let ((commit "26d2dae04bb76a87be6960861c10432820cd5d55")

This commit is actually a version bump, so you can drop the revision,
`git-version' call, and consider this to be the exact "2.3.0" release.

Could you send an updated patch?

Regards,
-- 
Nicolas Goaziou




Information forwarded to guix-patches <at> gnu.org:
bug#63041; Package guix-patches. (Mon, 24 Apr 2023 10:17:02 GMT) Full text and rfc822 format available.

Message #11 received at 63041 <at> debbugs.gnu.org (full text, mbox):

From: Mekeor Melire <mekeor <at> posteo.de>
To: 63041 <at> debbugs.gnu.org
Cc: Mekeor Melire <mekeor <at> posteo.de>
Subject: [PATCH v2] gnu: emacs-password-store: Update to 2.3.0.
Date: Mon, 24 Apr 2023 10:12:49 +0000
* gnu/packages/emacs-xyz.scm (emacs-password-store): Update to 2.3.0.
[propagated-inputs]: Remove emacs-auth-source-pass.
---
 gnu/packages/emacs-xyz.scm | 87 +++++++++++++++++++-------------------
 1 file changed, 43 insertions(+), 44 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 234b0f6868..caeb204f9e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20959,50 +20959,49 @@ (define-public emacs-ergoemacs-mode
     (license license:gpl3+)))
 
 (define-public emacs-password-store
-  (let ((commit "918992c19231b33b3d4a3288a7288a620e608cb4")
-        (revision "1"))
-    (package
-      (name "emacs-password-store")
-      ;; The emacs package version does not match the password-store version,
-      ;; even though it is part of the same repository.  When updating, look
-      ;; at the version declared in password-store.el.
-      (version (git-version "2.1.4" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "git://git.zx2c4.com/password-store")
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "0ni62f4pq96g0i0q66bch1dl9k4zqwhg7xaf746k3gbbqxcdh3vi"))))
-      (build-system emacs-build-system)
-      (arguments
-       (list #:phases
-             #~(modify-phases %standard-phases
-                 (add-after 'unpack 'extract-el-file
-                   (lambda _
-                     (copy-file "contrib/emacs/password-store.el"
-                                "password-store.el")
-                     (delete-file-recursively "contrib")
-                     (delete-file-recursively "man")
-                     (delete-file-recursively "src")
-                     (delete-file-recursively "tests")))
-                 (add-after 'extract-el-file 'patch-executables
-                   (lambda* (#:key inputs #:allow-other-keys)
-                     (emacs-substitute-variables "password-store.el"
-                       ("password-store-executable"
-                        (search-input-file inputs "/bin/pass"))))))))
-      (inputs
-       (list password-store))
-      (propagated-inputs
-       (list emacs-auth-source-pass emacs-s emacs-with-editor))
-      (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
-      (synopsis "Password store (pass) support for Emacs")
-      (description
-       "This package provides functions for working with pass (\"the
-standard Unix password manager\").")
-      (license license:gpl3+))))
+  (package
+    (name "emacs-password-store")
+    ;; The emacs package version does not match the password-store version,
+    ;; even though it is part of the same repository.  When updating, look at
+    ;; the version declared in password-store.el.
+    (version "2.3.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "git://git.zx2c4.com/password-store")
+             (commit "26d2dae04bb76a87be6960861c10432820cd5d55")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1pkx6pgkkpddxrshzq3x8ilfwqjw9gawnbbskcbssxc88wrpbcjb"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'extract-el-file
+                 (lambda _
+                   (copy-file "contrib/emacs/password-store.el"
+                              "password-store.el")
+                   (delete-file-recursively "contrib")
+                   (delete-file-recursively "man")
+                   (delete-file-recursively "src")
+                   (delete-file-recursively "tests")))
+               (add-after 'extract-el-file 'patch-executables
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   (emacs-substitute-variables "password-store.el"
+                     ("password-store-executable"
+                      (search-input-file inputs "/bin/pass"))))))))
+    (inputs
+     (list password-store))
+    (propagated-inputs
+     (list emacs-s emacs-with-editor))
+    (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
+    (synopsis "Password store (pass) support for Emacs")
+    (description
+     "This package provides functions for working with pass (\"the
+    standard Unix password manager\").")
+    (license license:gpl3+))))
 
 (define-public emacs-password-store-otp
   (package

base-commit: 74e96c4cb171b17949f638d8b452d047a8f2dc6f
-- 
2.39.2





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 24 Apr 2023 23:28:03 GMT) Full text and rfc822 format available.

Notification sent to Mekeor Melire <mekeor <at> posteo.de>:
bug acknowledged by developer. (Mon, 24 Apr 2023 23:28:03 GMT) Full text and rfc822 format available.

Message #16 received at 63041-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Mekeor Melire <mekeor <at> posteo.de>
Cc: 63041-done <at> debbugs.gnu.org
Subject: Re: [bug#63041] [PATCH v2] gnu: emacs-password-store: Update to 2.3.0.
Date: Tue, 25 Apr 2023 01:27:46 +0200
Hello,

Mekeor Melire <mekeor <at> posteo.de> writes:

> * gnu/packages/emacs-xyz.scm (emacs-password-store): Update to 2.3.0.
> [propagated-inputs]: Remove emacs-auth-source-pass.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 23 May 2023 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 24 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.