GNU bug report logs -
#57794
[PATCH 0/1] gnu: Add cpass.
Previous Next
Reported by: "(" <paren <at> disroot.org>
Date: Wed, 14 Sep 2022 06:48:02 UTC
Severity: normal
Tags: patch
Done: Christopher Baines <mail <at> cbaines.net>
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 57794 in the body.
You can then email your comments to 57794 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#57794
; Package
guix-patches
.
(Wed, 14 Sep 2022 06:48:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
"(" <paren <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 14 Sep 2022 06:48:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
This patch adds ``cpass'', a TUI interface for the ``pass'' password
manager.
( (1):
gnu: Add cpass.
gnu/packages/password-utils.scm | 38 +++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
--
2.37.3
Information forwarded
to
guix-patches <at> gnu.org
:
bug#57794
; Package
guix-patches
.
(Wed, 14 Sep 2022 06:49:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 57794 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/password-utils.scm (cpass): New variable.
---
gnu/packages/password-utils.scm | 38 +++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 003e346305..bcc1d9421d 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -36,6 +36,7 @@
;;; Copyright © 2021 David Dashyan <mail <at> davie.li>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2022 Maxime Devos <maximedevos <at> telenet.be>
+;;; Copyright © 2022 ( <paren <at> disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -58,6 +59,7 @@ (define-module (gnu packages password-utils)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
+ #:use-module (guix build-system python)
#:use-module (guix build-system trivial)
#:use-module (guix download)
#:use-module (guix gexp)
@@ -109,8 +111,7 @@ (define-module (gnu packages password-utils)
#:use-module (gnu packages wxwidgets)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg)
- #:use-module (gnu packages xml)
- #:use-module (guix build-system python))
+ #:use-module (gnu packages xml))
(define-public pwgen
(package
@@ -1315,3 +1316,36 @@ (define-public pass-tomb
therefore you don't need to manage more key or secret. Moreover, you can ask
pass-tomb to automatically close your store after a given time.")
(license license:gpl3+)))
+
+(define-public cpass
+ (package
+ (name "cpass")
+ (version "0.9.4")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "cpass" version))
+ (sha256
+ (base32
+ "1zp3a8mgqxn916fzj1v2yhgnl7v6s0vnd0qcghqs3qq648qmlwr5"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-pass-refs
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "cpass.py"
+ (("'pass'")
+ (string-append "'"
+ (search-input-file inputs
+ "bin/pass")
+ "'"))
+ (("\\.password_store")
+ ".password-store")))))))
+ (inputs (list password-store))
+ (propagated-inputs (list python-urwid))
+ (home-page "https://github.com/OliverLew/cpass")
+ (synopsis "Textual interface for @command{pass}")
+ (description
+ "@command{cpass} is a terminal user interface for @command{pass}.
+It supports both vim-like keybindings and the mouse.")
+ (license license:expat)))
--
2.37.3
Reply sent
to
Christopher Baines <mail <at> cbaines.net>
:
You have taken responsibility.
(Thu, 06 Oct 2022 14:18:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
"(" <paren <at> disroot.org>
:
bug acknowledged by developer.
(Thu, 06 Oct 2022 14:18:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 57794-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
"( via Guix-patches" via <guix-patches <at> gnu.org> writes:
> This patch adds ``cpass'', a TUI interface for the ``pass'' password
> manager.
>
> ( (1):
> gnu: Add cpass.
>
> gnu/packages/password-utils.scm | 38 +++++++++++++++++++++++++++++++--
> 1 file changed, 36 insertions(+), 2 deletions(-)
Thanks, pushed to master as 5b42b64ea89564c58325d16d3d0f4a0a03ebae0f.
Chris
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 04 Nov 2022 11:24:14 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 224 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.