GNU bug report logs - #40961
[PATCH] add sbcl-pass package for stumpwm

Previous Next

Package: guix-patches;

Reported by: Marcin Karpezo <sirmacik <at> wioo.waw.pl>

Date: Wed, 29 Apr 2020 12:53:02 UTC

Severity: normal

Tags: patch

Done: Oleg Pykhalov <go.wigust <at> gmail.com>

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 40961 in the body.
You can then email your comments to 40961 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#40961; Package guix-patches. (Wed, 29 Apr 2020 12:53:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Marcin Karpezo <sirmacik <at> wioo.waw.pl>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 29 Apr 2020 12:53:02 GMT) Full text and rfc822 format available.

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

From: Marcin Karpezo <sirmacik <at> wioo.waw.pl>
To: guix-patches <at> gnu.org
Cc: Marcin Karpezo <sirmacik <at> wioo.waw.pl>
Subject: [PATCH] add sbcl-pass package for stumpwm
Date: Wed, 29 Apr 2020 14:51:33 +0200
---
 gnu/packages/wm.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 4d1b6b3fd4..646f508e95 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -34,6 +34,7 @@
 ;;; Copyright © 2020 Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
 ;;; Copyright © 2020 Brice Waegeneire <brice <at> waegenei.re>
 ;;; Copyright © 2020 Boris A. Dekshteyn <harlequin78 <at> gmail.com>
+;;; Copyright © 2020 Marcin Karpezo <sirmacik <at> wioo.waw.pl>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1730,6 +1731,36 @@ productive, customizable lisp based systems.")
 rendering.")
       (license (list license:gpl2+ license:gpl3+ license:bsd-2)))))
 
+(define-public sbcl-stumpwm-pass
+  (let ((commit "dd5b037923ec7d3cc27c55806bcec5a1b8cf4e91")
+        (revision "1"))
+    (package
+      (name "sbcl-pass")
+      (version (git-version "0.0.1" revision commit)) ;no upstream release
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/stumpwm/stumpwm-contrib.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0ahxdj9f884afpzxczx6mx7l4nwg4kw6afqaq7lwhf7lxcwylldn"))))
+      (inputs
+       `(("stumpwm" ,stumpwm "lib")))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       '(#:phases
+         (modify-phases %standard-phases
+           (add-after 'unpack 'chdir
+             (lambda _
+               (chdir "util/pass"))))))
+      (home-page "https://github.com/stumpwm/stumpwm-contrib")
+      (synopsis "Integrate 'pass' wih StumpWM")
+      (description "This package provides an interface which integrates
+password-store into StumpWM.")
+      (license (list license:gpl2+ license:gpl3+ license:bsd-2)))))
+
 (define-public sbcl-stumpwm-globalwindows
   (let ((commit "dd5b037923ec7d3cc27c55806bcec5a1b8cf4e91")
         (revision "1"))
-- 
2.26.2





Information forwarded to guix-patches <at> gnu.org:
bug#40961; Package guix-patches. (Wed, 29 Apr 2020 21:48:02 GMT) Full text and rfc822 format available.

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

From: Oleg Pykhalov <go.wigust <at> gmail.com>
To: Marcin Karpezo <sirmacik <at> wioo.waw.pl>
Cc: 40961 <at> debbugs.gnu.org, 40961-done <at> debbugs.gnu.org
Subject: Re: [bug#40961] [PATCH] add sbcl-pass package for stumpwm
Date: Thu, 30 Apr 2020 00:37:45 +0300
[Message part 1 (text/plain, inline)]
Hi,

Thank you the patch.

The patch pushed with following changes. 

Marcin Karpezo <sirmacik <at> wioo.waw.pl> writes:

> ---
>  gnu/packages/wm.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
> index 4d1b6b3fd4..646f508e95 100644
> --- a/gnu/packages/wm.scm
> +++ b/gnu/packages/wm.scm
> @@ -34,6 +34,7 @@

[…]

Better use ‘@code{}’ as in Texinfo, which will be parsed by Guix.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 646f508e95..9f64f206af 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1756,7 +1756,7 @@ rendering.")
              (lambda _
                (chdir "util/pass"))))))
       (home-page "https://github.com/stumpwm/stumpwm-contrib")
-      (synopsis "Integrate 'pass' wih StumpWM")
+      (synopsis "Integrate @code{pass} wih StumpWM")
       (description "This package provides an interface which integrates
 password-store into StumpWM.")
       (license (list license:gpl2+ license:gpl3+ license:bsd-2)))))
[Message part 3 (text/plain, inline)]

Git messages follows ChangeLog format, which you could apply by using
‘etc/snippets’ in case you are an Emacs user.  See
https://www.gnu.org/software/guix/manual/html_node/The-Perfect-Setup.html

--8<---------------cut here---------------start------------->8---
gnu: Add sbcl-stumpwm-pass.

* gnu/packages/wm.scm (sbcl-stumpwm-pass): New variable.
--8<---------------cut here---------------end--------------->8---

Oleg.
[signature.asc (application/pgp-signature, inline)]

Reply sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
You have taken responsibility. (Wed, 29 Apr 2020 21:48:03 GMT) Full text and rfc822 format available.

Notification sent to Marcin Karpezo <sirmacik <at> wioo.waw.pl>:
bug acknowledged by developer. (Wed, 29 Apr 2020 21:48:03 GMT) Full text and rfc822 format available.

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

This bug report was last modified 5 years and 25 days ago.

Previous Next


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