unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#34364] Add package: Emacs-shroud; Emacs interface for shroud
@ 2019-02-07  9:11 Amar Singh
  2019-05-26 16:35 ` [bug#34364] [PATCH] gnu: Add emacs-shroud Amar Singh
  2020-01-27 22:13 ` bug#34364: Add package: Emacs-shroud; Emacs interface for shroud Marius Bakke
  0 siblings, 2 replies; 3+ messages in thread
From: Amar Singh @ 2019-02-07  9:11 UTC (permalink / raw)
  To: 34364


This is not a polished software by any means.
This is an interface for the shroud password manager
https://dthompson.us/projects/shroud.html

Patch:

From b7f9ec3820158d2b6fdde64dfed0fa7233ec5951 Mon Sep 17 00:00:00 2001
From: Amar Singh <nly@disroot.org>
Date: Thu, 7 Feb 2019 14:37:25 +0530
Subject: [PATCH] add emacs-shroud; emacs interface for shroud

Signed-off-by: Amar Singh <nly@disroot.org>
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 960518f9d..d43153b55 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8518,6 +8518,28 @@ close, copy, cut, paste, undo, redo.")
 standard Unix password manager\").")
     (license license:gpl2+)))
 
+(define-public emacs-shroud
+  (package
+   (name "emacs-shroud")
+   (version "0.1")
+   (source (origin
+            (method url-fetch)
+            (uri
+             (string-append "https://github.com/o-nly/" name "/archive/release-" version ".tar.gz"))
+            (sha256
+             (base32
+              "0jxfa2fa6r0ay9c6nf4xwz5vddb1v45cgaxkgdxxhck0l527i3yc"))))
+   (build-system emacs-build-system)
+   (propagated-inputs
+    `(("emacs-f" ,emacs-f)
+      ("emacs-s" ,emacs-s)
+      ("shroud" ,shroud)))
+   (home-page "http://nly.info.tm:9001/emacs/shroud.el")
+   (synopsis "Shroud (gpg) support for Emacs")
+   (description
+    "This package provides functions for working with shroud password manager.")
+   (license license:gpl3+)))
+
 (define-public emacs-pass
   (package
     (name "emacs-pass")
-- 
2.20.1

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

* [bug#34364] [PATCH] gnu: Add emacs-shroud.
  2019-02-07  9:11 [bug#34364] Add package: Emacs-shroud; Emacs interface for shroud Amar Singh
@ 2019-05-26 16:35 ` Amar Singh
  2020-01-27 22:13 ` bug#34364: Add package: Emacs-shroud; Emacs interface for shroud Marius Bakke
  1 sibling, 0 replies; 3+ messages in thread
From: Amar Singh @ 2019-05-26 16:35 UTC (permalink / raw)
  To: 34364

[-- Attachment #1: Type: text/plain, Size: 49 bytes --]


Updated emacs-shroud. It should be usable now.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-emacs-shroud.patch --]
[-- Type: text/x-patch, Size: 1639 bytes --]

From 06b1b2d4567adf27d4e980bcdf9c2886d9afdcbd Mon Sep 17 00:00:00 2001
From: Amar Singh <nly@disroot.org>
Date: Mon, 22 Apr 2019 01:28:32 +0530
Subject: [PATCH] gnu: Add emacs-shroud.

* gnu/packages/emacs-xyz.scm (emacs-shroud): New variable.
---
 gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9199b45e40..d97914faef 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15620,3 +15620,33 @@ verb commands which would are normally destructive (such as deletion) are
 provided.  Those alternative commands are and bound by default to their
 corresponding Evil keys.")
       (license license:expat))))
+
+(define-public emacs-shroud
+  (package
+   (name "emacs-shroud")
+   (version "1.15.1")
+   (source
+    (origin
+     (method git-fetch)
+     (uri
+      (git-reference
+       (url "https://github.com/o-nly/emacs-shroud.git")
+       (commit version)))
+     (file-name
+      (git-file-name name version))
+     (sha256
+      (base32
+       "0wvm4lxqcc1p8v7rpqal3bnqgnpk1gs7v18i83f6cvi5d88jkgdg"))))
+   (build-system emacs-build-system)
+   (propagated-inputs
+    `(("shroud" ,shroud)
+      ("emacs-f" ,emacs-f)
+      ("emacs-dash" ,emacs-dash)
+      ("emacs-s" ,emacs-s)
+      ("emacs-bui" ,emacs-bui)
+      ("gnupg" ,gnupg)))
+   (home-page "http://git.nly.info.tm:9001/shroud.git")
+   (synopsis "Emacs interface for Shroud password manager")
+   (description
+    "Provides Emacs interface to the Shroud password manager.")
+   (license license:gpl3+)))
-- 
2.21.0


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

* bug#34364: Add package: Emacs-shroud; Emacs interface for shroud
  2019-02-07  9:11 [bug#34364] Add package: Emacs-shroud; Emacs interface for shroud Amar Singh
  2019-05-26 16:35 ` [bug#34364] [PATCH] gnu: Add emacs-shroud Amar Singh
@ 2020-01-27 22:13 ` Marius Bakke
  1 sibling, 0 replies; 3+ messages in thread
From: Marius Bakke @ 2020-01-27 22:13 UTC (permalink / raw)
  To: Amar Singh, 34364-done

[-- Attachment #1: Type: text/plain, Size: 61 bytes --]

This was pushed in a38525789cdb6b4baa440cdf9f265085d4378ec5.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2020-01-27 22:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-07  9:11 [bug#34364] Add package: Emacs-shroud; Emacs interface for shroud Amar Singh
2019-05-26 16:35 ` [bug#34364] [PATCH] gnu: Add emacs-shroud Amar Singh
2020-01-27 22:13 ` bug#34364: Add package: Emacs-shroud; Emacs interface for shroud Marius Bakke

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).