all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#63041] [PATCH] gnu: emacs-password-store: Update to 2.3.0.
@ 2023-04-23 21:51 Mekeor Melire
  2023-04-24 10:12 ` [bug#63041] [PATCH v2] " Mekeor Melire
  0 siblings, 1 reply; 3+ messages in thread
From: Mekeor Melire @ 2023-04-23 21:51 UTC (permalink / raw)
  To: 63041; +Cc: Mekeor Melire

* 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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#63041] [PATCH v2] gnu: emacs-password-store: Update to 2.3.0.
  2023-04-23 21:51 [bug#63041] [PATCH] gnu: emacs-password-store: Update to 2.3.0 Mekeor Melire
@ 2023-04-24 10:12 ` Mekeor Melire
  2023-04-24 23:27   ` bug#63041: " Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Mekeor Melire @ 2023-04-24 10:12 UTC (permalink / raw)
  To: 63041; +Cc: Mekeor Melire

* 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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#63041: [PATCH v2] gnu: emacs-password-store: Update to 2.3.0.
  2023-04-24 10:12 ` [bug#63041] [PATCH v2] " Mekeor Melire
@ 2023-04-24 23:27   ` Nicolas Goaziou
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2023-04-24 23:27 UTC (permalink / raw)
  To: Mekeor Melire; +Cc: 63041-done

Hello,

Mekeor Melire <mekeor@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




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-04-24 23:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-23 21:51 [bug#63041] [PATCH] gnu: emacs-password-store: Update to 2.3.0 Mekeor Melire
2023-04-24 10:12 ` [bug#63041] [PATCH v2] " Mekeor Melire
2023-04-24 23:27   ` bug#63041: " Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.