Package: guix-patches;
Reported by: ng0 <at> n0.is
Date: Sun, 4 Feb 2018 11:21:01 UTC
Severity: normal
Done: Leo Famulari <leo <at> famulari.name>
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 30344 in the body.
You can then email your comments to 30344 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
guix-patches <at> gnu.org
:bug#30344
; Package guix-patches
.
(Sun, 04 Feb 2018 11:21:02 GMT) Full text and rfc822 format available.ng0 <at> n0.is
:guix-patches <at> gnu.org
.
(Sun, 04 Feb 2018 11:21:02 GMT) Full text and rfc822 format available.Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: ng0 <at> n0.is To: guix-patches <at> gnu.org Subject: cwm Date: Sun, 04 Feb 2018 11:19:40 +0000
[Message part 1 (text/plain, inline)]
Trying to reduce the amount of software I keep in my domain. Here's cwm, the OpenBSD window manager.
[0001-gnu-Add-cwm.patch (text/x-patch, inline)]
From 6c3d991fd5b99dded91e00b6f98d79c041e4be7d Mon Sep 17 00:00:00 2001 From: ng0 <ng0 <at> n0.is> Date: Sun, 4 Feb 2018 11:15:19 +0000 Subject: [PATCH] gnu: Add cwm. * gnu/packages/wm.scm (cwm): New variable. --- gnu/packages/wm.scm | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 0cf6c1a2d..09015126c 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016 Al McElrath <hello <at> yrns.org> ;;; Copyright © 2016 Carlo Zancanaro <carlo <at> zancanaro.id.au> ;;; Copyright © 2016, 2017 Ludovic Courtès <ludo <at> gnu.org> -;;; Copyright © 2016, 2017 ng0 <ng0 <at> n0.is> +;;; Copyright © 2016, 2017, 2018 ng0 <ng0 <at> n0.is> ;;; Copyright © 2016 doncatnip <gnopap <at> gmail.com> ;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan <at> selidor.net> ;;; Copyright © 2017 Mekeor Melire <mekeor.melire <at> gmail.com> @@ -46,6 +46,7 @@ #:use-module (gnu packages haskell-check) #:use-module (gnu packages haskell-web) #:use-module (gnu packages autotools) + #:use-module (gnu packages bison) #:use-module (gnu packages gawk) #:use-module (gnu packages base) #:use-module (gnu packages pkg-config) @@ -915,3 +916,56 @@ It is inspired by Xmonad and dwm. Its major features include: @end itemize\n") (home-page "https://github.com/conformal/spectrwm") (license license:isc))) + +(define-public cwm + (package + (name "cwm") + (version "6.2") + (source + (origin + (method url-fetch) + (uri (string-append "http://chneukirchen.org/releases/cwm-" + version ".tar.gz")) + (sha256 + (base32 + "1b8k2hjxpb0bzqjh2wj6mn2nf2360zacf8z19sw2rw5lxvmfy89x")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list "CC=gcc" + (string-append "PREFIX=" %output)) + #:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (add-after 'build 'install-xsession + (lambda* (#:key outputs #:allow-other-keys) + ;; Add a .desktop file to xsessions. + (let* ((output (assoc-ref outputs "out")) + (xsessions (string-append output "/share/xsessions"))) + (mkdir-p xsessions) + (with-output-to-file + (string-append xsessions "/cwm.desktop") + (lambda _ + (format #t + "[Desktop Entry]~@ + Name=cwm~@ + Comment=OpenBSD Calm Window Manager fork~@ + Exec=~a/bin/cwm~@ + TryExec=~@*~a/bin/cwm~@ + Icon=~@ + Type=Application~%" + output))) + #t)))))) + (inputs + `(("libxft" ,libxft) + ("libxrandr" ,libxrandr) + ("libxinerama" ,libxinerama))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("bison" ,bison))) + (home-page "https://github.com/chneukirchen/cwm") + (synopsis "OpenBSD fork of calmwm") + (description + "Cwm is a OpenBSD fork of the clean and lightweight window manager +calmwm.") + (license license:isc))) -- 2.16.1
[Message part 3 (text/plain, inline)]
-- ng0 :: https://ea.n0.is A88C8ADD129828D7EAC02E52E22F9BBFEE348588 :: https://ea.n0.is/keys/
guix-patches <at> gnu.org
:bug#30344
; Package guix-patches
.
(Sun, 04 Feb 2018 11:33:01 GMT) Full text and rfc822 format available.Message #8 received at 30344 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <at> n0.is To: 30344 <at> debbugs.gnu.org Subject: Re: [bug#30344] cwm Date: Sun, 04 Feb 2018 11:32:09 +0000
On Sun, 04 Feb 2018, ng0 <at> n0.is wrote: > Trying to reduce the amount of software I keep in my domain. > Here's cwm, the OpenBSD window manager. > > From 6c3d991fd5b99dded91e00b6f98d79c041e4be7d Mon Sep 17 00:00:00 2001 > From: ng0 <ng0 <at> n0.is> > Date: Sun, 4 Feb 2018 11:15:19 +0000 > Subject: [PATCH] gnu: Add cwm. > > * gnu/packages/wm.scm (cwm): New variable. > --- > gnu/packages/wm.scm | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 55 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm > index 0cf6c1a2d..09015126c 100644 > --- a/gnu/packages/wm.scm > +++ b/gnu/packages/wm.scm > @@ -9,7 +9,7 @@ > ;;; Copyright © 2016 Al McElrath <hello <at> yrns.org> > ;;; Copyright © 2016 Carlo Zancanaro <carlo <at> zancanaro.id.au> > ;;; Copyright © 2016, 2017 Ludovic Courtès <ludo <at> gnu.org> > -;;; Copyright © 2016, 2017 ng0 <ng0 <at> n0.is> > +;;; Copyright © 2016, 2017, 2018 ng0 <ng0 <at> n0.is> > ;;; Copyright © 2016 doncatnip <gnopap <at> gmail.com> > ;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan <at> selidor.net> > ;;; Copyright © 2017 Mekeor Melire <mekeor.melire <at> gmail.com> > @@ -46,6 +46,7 @@ > #:use-module (gnu packages haskell-check) > #:use-module (gnu packages haskell-web) > #:use-module (gnu packages autotools) > + #:use-module (gnu packages bison) > #:use-module (gnu packages gawk) > #:use-module (gnu packages base) > #:use-module (gnu packages pkg-config) > @@ -915,3 +916,56 @@ It is inspired by Xmonad and dwm. Its major features include: > @end itemize\n") > (home-page "https://github.com/conformal/spectrwm") > (license license:isc))) > + > +(define-public cwm > + (package > + (name "cwm") > + (version "6.2") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://chneukirchen.org/releases/cwm-" > + version ".tar.gz")) > + (sha256 > + (base32 > + "1b8k2hjxpb0bzqjh2wj6mn2nf2360zacf8z19sw2rw5lxvmfy89x")))) > + (build-system gnu-build-system) > + (arguments > + `(#:make-flags (list "CC=gcc" > + (string-append "PREFIX=" %output)) > + #:tests? #f > + #:phases > + (modify-phases %standard-phases > + (delete 'configure) > + (add-after 'build 'install-xsession > + (lambda* (#:key outputs #:allow-other-keys) > + ;; Add a .desktop file to xsessions. > + (let* ((output (assoc-ref outputs "out")) > + (xsessions (string-append output "/share/xsessions"))) > + (mkdir-p xsessions) > + (with-output-to-file > + (string-append xsessions "/cwm.desktop") > + (lambda _ > + (format #t > + "[Desktop Entry]~@ > + Name=cwm~@ > + Comment=OpenBSD Calm Window Manager fork~@ > + Exec=~a/bin/cwm~@ > + TryExec=~@*~a/bin/cwm~@ > + Icon=~@ > + Type=Application~%" > + output))) > + #t)))))) > + (inputs > + `(("libxft" ,libxft) > + ("libxrandr" ,libxrandr) > + ("libxinerama" ,libxinerama))) > + (native-inputs > + `(("pkg-config" ,pkg-config) > + ("bison" ,bison))) > + (home-page "https://github.com/chneukirchen/cwm") > + (synopsis "OpenBSD fork of calmwm") ^- about this... > + (description > + "Cwm is a OpenBSD fork of the clean and lightweight window manager ^- ... and this I am not so sure, as the man pages state there has been a rewrite since then, so maybe just "inspired by"? It could be the same as with neomutt. Wikipedia has more on this: cwm (Calm Window Manager)[1] is a stacking window manager for the X Window System. While it is primarily developed as a part of OpenBSD's base system,[2] portable versions are available on other Unix-like operating systems. Development of cwm started from patches to evilwm by Marius Aamodt Eriksen.[3] To ease the implementation of new features, cwm was eventually rewritten using some code from 9wm.[4] The last release by the original author came out in August 2005.[3] In April 2007, cwm was imported into OpenBSD source tree.[5] By January 2008, a substantial part of the original source code, including all of the 9wm code, was rewritten.[6] cwm has been distributed with OpenBSD since version 4.2, where it replaced wm2.[7] A third-party Linux port also exists.[8] ... so I'd say it's not a fork but maintained by OpenBSD, in OpenBSD's source tree. For reference: https://en.wikipedia.org/wiki/Cwm_(window_manager) > +calmwm.") > + (license license:isc))) > -- > 2.16.1 -- ng0 :: https://ea.n0.is A88C8ADD129828D7EAC02E52E22F9BBFEE348588 :: https://ea.n0.is/keys/
guix-patches <at> gnu.org
:bug#30344
; Package guix-patches
.
(Mon, 05 Feb 2018 22:49:02 GMT) Full text and rfc822 format available.Message #11 received at 30344 <at> debbugs.gnu.org (full text, mbox):
From: Leo Famulari <leo <at> famulari.name> To: ng0 <at> n0.is Cc: 30344 <at> debbugs.gnu.org Subject: Re: [bug#30344] cwm Date: Mon, 5 Feb 2018 17:48:26 -0500
[Message part 1 (text/plain, inline)]
On Sun, Feb 04, 2018 at 11:32:09AM +0000, ng0 <at> n0.is wrote: > On Sun, 04 Feb 2018, ng0 <at> n0.is wrote: > > Trying to reduce the amount of software I keep in my domain. > > Here's cwm, the OpenBSD window manager. > > > > From 6c3d991fd5b99dded91e00b6f98d79c041e4be7d Mon Sep 17 00:00:00 2001 > > From: ng0 <ng0 <at> n0.is> > > Date: Sun, 4 Feb 2018 11:15:19 +0000 > > Subject: [PATCH] gnu: Add cwm. > > > > * gnu/packages/wm.scm (cwm): New variable. > > + (synopsis "OpenBSD fork of calmwm") > ^- about this... > > > + (description > > + "Cwm is a OpenBSD fork of the clean and lightweight window manager > ^- ... and this I am not so sure, as > the man pages state there has been a > rewrite since then, so maybe just > "inspired by"? It could be the same as > with neomutt. You could say that it's "derived from" calmwn.
[signature.asc (application/pgp-signature, inline)]
guix-patches <at> gnu.org
:bug#30344
; Package guix-patches
.
(Mon, 12 Feb 2018 23:46:01 GMT) Full text and rfc822 format available.Message #14 received at 30344 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <at> crash.cx To: 30344 <at> debbugs.gnu.org Subject: Re: [bug#30344] cwm Date: Mon, 12 Feb 2018 23:45:18 +0000
[Message part 1 (text/plain, inline)]
On Mon, 05 Feb 2018, Leo Famulari <leo <at> famulari.name> wrote: > On Sun, Feb 04, 2018 at 11:32:09AM +0000, ng0 <at> n0.is wrote: >> On Sun, 04 Feb 2018, ng0 <at> n0.is wrote: >> > Trying to reduce the amount of software I keep in my domain. >> > Here's cwm, the OpenBSD window manager. >> > >> > From 6c3d991fd5b99dded91e00b6f98d79c041e4be7d Mon Sep 17 00:00:00 2001 >> > From: ng0 <ng0 <at> n0.is> >> > Date: Sun, 4 Feb 2018 11:15:19 +0000 >> > Subject: [PATCH] gnu: Add cwm. >> > >> > * gnu/packages/wm.scm (cwm): New variable. > >> > + (synopsis "OpenBSD fork of calmwm") >> ^- about this... >> >> > + (description >> > + "Cwm is a OpenBSD fork of the clean and lightweight window manager >> ^- ... and this I am not so sure, as >> the man pages state there has been a >> rewrite since then, so maybe just >> "inspired by"? It could be the same as >> with neomutt. > > You could say that it's "derived from" calmwn. > Okay, I've written a new variant which is appended.
[0001-gnu-Add-cwm.patch (text/x-patch, inline)]
From 13398bb7d37d99c4103815cd3765bf1f687f27db Mon Sep 17 00:00:00 2001 From: ng0 <ng0 <at> n0.is> Date: Sun, 4 Feb 2018 11:15:19 +0000 Subject: [PATCH] gnu: Add cwm. * gnu/packages/wm.scm (cwm): New variable. --- gnu/packages/wm.scm | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 0cf6c1a2d..78e9d5b8d 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016 Al McElrath <hello <at> yrns.org> ;;; Copyright © 2016 Carlo Zancanaro <carlo <at> zancanaro.id.au> ;;; Copyright © 2016, 2017 Ludovic Courtès <ludo <at> gnu.org> -;;; Copyright © 2016, 2017 ng0 <ng0 <at> n0.is> +;;; Copyright © 2016, 2017, 2018 ng0 <ng0 <at> crash.cx> ;;; Copyright © 2016 doncatnip <gnopap <at> gmail.com> ;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan <at> selidor.net> ;;; Copyright © 2017 Mekeor Melire <mekeor.melire <at> gmail.com> @@ -46,6 +46,7 @@ #:use-module (gnu packages haskell-check) #:use-module (gnu packages haskell-web) #:use-module (gnu packages autotools) + #:use-module (gnu packages bison) #:use-module (gnu packages gawk) #:use-module (gnu packages base) #:use-module (gnu packages pkg-config) @@ -915,3 +916,56 @@ It is inspired by Xmonad and dwm. Its major features include: @end itemize\n") (home-page "https://github.com/conformal/spectrwm") (license license:isc))) + +(define-public cwm + (package + (name "cwm") + (version "6.2") + (source + (origin + (method url-fetch) + (uri (string-append "http://chneukirchen.org/releases/cwm-" + version ".tar.gz")) + (sha256 + (base32 + "1b8k2hjxpb0bzqjh2wj6mn2nf2360zacf8z19sw2rw5lxvmfy89x")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list "CC=gcc" + (string-append "PREFIX=" %output)) + #:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (add-after 'build 'install-xsession + (lambda* (#:key outputs #:allow-other-keys) + ;; Add a .desktop file to xsessions. + (let* ((output (assoc-ref outputs "out")) + (xsessions (string-append output "/share/xsessions"))) + (mkdir-p xsessions) + (with-output-to-file + (string-append xsessions "/cwm.desktop") + (lambda _ + (format #t + "[Desktop Entry]~@ + Name=cwm~@ + Comment=OpenBSD Calm Window Manager fork~@ + Exec=~a/bin/cwm~@ + TryExec=~@*~a/bin/cwm~@ + Icon=~@ + Type=Application~%" + output))) + #t)))))) + (inputs + `(("libxft" ,libxft) + ("libxrandr" ,libxrandr) + ("libxinerama" ,libxinerama))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("bison" ,bison))) + (home-page "https://github.com/chneukirchen/cwm") + (synopsis "OpenBSD fork of calmwm") + (description + "Cwm is a stacking window manager for X11. +It is a OpenBSD project derived from the original Calm Window Manager.") + (license license:isc))) -- 2.16.1
[Message part 3 (text/plain, inline)]
-- ng0 :: https://crash.cx A88C8ADD129828D7EAC02E52E22F9BBFEE348588 :: https://crash.cx/keys/
guix-patches <at> gnu.org
:bug#30344
; Package guix-patches
.
(Thu, 22 Feb 2018 18:42:01 GMT) Full text and rfc822 format available.Message #17 received at 30344 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <ng0 <at> crash.cx> To: Leo Famulari <leo <at> famulari.name> Cc: 30344 <at> debbugs.gnu.org Subject: Re: [bug#30344] cwm Date: Thu, 22 Feb 2018 18:40:54 +0000
[Message part 1 (text/plain, inline)]
Hi Leo, is this good to be merged now or is there something missing? Thanks for your review. ng0 <at> crash.cx transcribed 4.7K bytes: > On Mon, 05 Feb 2018, Leo Famulari <leo <at> famulari.name> wrote: > > On Sun, Feb 04, 2018 at 11:32:09AM +0000, ng0 <at> n0.is wrote: > >> On Sun, 04 Feb 2018, ng0 <at> n0.is wrote: > >> > Trying to reduce the amount of software I keep in my domain. > >> > Here's cwm, the OpenBSD window manager. > >> > > >> > From 6c3d991fd5b99dded91e00b6f98d79c041e4be7d Mon Sep 17 00:00:00 2001 > >> > From: ng0 <ng0 <at> n0.is> > >> > Date: Sun, 4 Feb 2018 11:15:19 +0000 > >> > Subject: [PATCH] gnu: Add cwm. > >> > > >> > * gnu/packages/wm.scm (cwm): New variable. > > > >> > + (synopsis "OpenBSD fork of calmwm") > >> ^- about this... > >> > >> > + (description > >> > + "Cwm is a OpenBSD fork of the clean and lightweight window manager > >> ^- ... and this I am not so sure, as > >> the man pages state there has been a > >> rewrite since then, so maybe just > >> "inspired by"? It could be the same as > >> with neomutt. > > > > You could say that it's "derived from" calmwn. > > > > Okay, I've written a new variant which is appended. > From 13398bb7d37d99c4103815cd3765bf1f687f27db Mon Sep 17 00:00:00 2001 > From: ng0 <ng0 <at> n0.is> > Date: Sun, 4 Feb 2018 11:15:19 +0000 > Subject: [PATCH] gnu: Add cwm. > > * gnu/packages/wm.scm (cwm): New variable. > --- > gnu/packages/wm.scm | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 55 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm > index 0cf6c1a2d..78e9d5b8d 100644 > --- a/gnu/packages/wm.scm > +++ b/gnu/packages/wm.scm > @@ -9,7 +9,7 @@ > ;;; Copyright © 2016 Al McElrath <hello <at> yrns.org> > ;;; Copyright © 2016 Carlo Zancanaro <carlo <at> zancanaro.id.au> > ;;; Copyright © 2016, 2017 Ludovic Courtès <ludo <at> gnu.org> > -;;; Copyright © 2016, 2017 ng0 <ng0 <at> n0.is> > +;;; Copyright © 2016, 2017, 2018 ng0 <ng0 <at> crash.cx> > ;;; Copyright © 2016 doncatnip <gnopap <at> gmail.com> > ;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan <at> selidor.net> > ;;; Copyright © 2017 Mekeor Melire <mekeor.melire <at> gmail.com> > @@ -46,6 +46,7 @@ > #:use-module (gnu packages haskell-check) > #:use-module (gnu packages haskell-web) > #:use-module (gnu packages autotools) > + #:use-module (gnu packages bison) > #:use-module (gnu packages gawk) > #:use-module (gnu packages base) > #:use-module (gnu packages pkg-config) > @@ -915,3 +916,56 @@ It is inspired by Xmonad and dwm. Its major features include: > @end itemize\n") > (home-page "https://github.com/conformal/spectrwm") > (license license:isc))) > + > +(define-public cwm > + (package > + (name "cwm") > + (version "6.2") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://chneukirchen.org/releases/cwm-" > + version ".tar.gz")) > + (sha256 > + (base32 > + "1b8k2hjxpb0bzqjh2wj6mn2nf2360zacf8z19sw2rw5lxvmfy89x")))) > + (build-system gnu-build-system) > + (arguments > + `(#:make-flags (list "CC=gcc" > + (string-append "PREFIX=" %output)) > + #:tests? #f > + #:phases > + (modify-phases %standard-phases > + (delete 'configure) > + (add-after 'build 'install-xsession > + (lambda* (#:key outputs #:allow-other-keys) > + ;; Add a .desktop file to xsessions. > + (let* ((output (assoc-ref outputs "out")) > + (xsessions (string-append output "/share/xsessions"))) > + (mkdir-p xsessions) > + (with-output-to-file > + (string-append xsessions "/cwm.desktop") > + (lambda _ > + (format #t > + "[Desktop Entry]~@ > + Name=cwm~@ > + Comment=OpenBSD Calm Window Manager fork~@ > + Exec=~a/bin/cwm~@ > + TryExec=~@*~a/bin/cwm~@ > + Icon=~@ > + Type=Application~%" > + output))) > + #t)))))) > + (inputs > + `(("libxft" ,libxft) > + ("libxrandr" ,libxrandr) > + ("libxinerama" ,libxinerama))) > + (native-inputs > + `(("pkg-config" ,pkg-config) > + ("bison" ,bison))) > + (home-page "https://github.com/chneukirchen/cwm") > + (synopsis "OpenBSD fork of calmwm") > + (description > + "Cwm is a stacking window manager for X11. > +It is a OpenBSD project derived from the original Calm Window Manager.") > + (license license:isc))) > -- > 2.16.1 > > -- > ng0 :: https://crash.cx > A88C8ADD129828D7EAC02E52E22F9BBFEE348588 :: https://crash.cx/keys/ -- ng0 :: https://n0.is | https://crash.cx A88C8ADD129828D7EAC02E52E22F9BBFEE348588
[signature.asc (application/pgp-signature, inline)]
Leo Famulari <leo <at> famulari.name>
:ng0 <at> n0.is
:Message #22 received at 30344-done <at> debbugs.gnu.org (full text, mbox):
From: Leo Famulari <leo <at> famulari.name> To: ng0 <ng0 <at> crash.cx> Cc: 30344-done <at> debbugs.gnu.org Subject: Re: [bug#30344] cwm Date: Thu, 22 Feb 2018 14:24:57 -0500
[Message part 1 (text/plain, inline)]
On Thu, Feb 22, 2018 at 06:40:54PM +0000, ng0 wrote: > Hi Leo, > > is this good to be merged now or is there something missing? > > Thanks for your review. Thank you for the reminder! > > Okay, I've written a new variant which is appended. > > > From 13398bb7d37d99c4103815cd3765bf1f687f27db Mon Sep 17 00:00:00 2001 > > From: ng0 <ng0 <at> n0.is> > > Date: Sun, 4 Feb 2018 11:15:19 +0000 > > Subject: [PATCH] gnu: Add cwm. > > > > * gnu/packages/wm.scm (cwm): New variable. Pushed as b4cb9308f722061076d267c39ee0b8b86ba6f8f2
[signature.asc (application/pgp-signature, inline)]
guix-patches <at> gnu.org
:bug#30344
; Package guix-patches
.
(Thu, 22 Feb 2018 21:13:02 GMT) Full text and rfc822 format available.Message #25 received at 30344-done <at> debbugs.gnu.org (full text, mbox):
From: ng0 <ng0 <at> n0.is> To: Leo Famulari <leo <at> famulari.name> Cc: 30344-done <at> debbugs.gnu.org Subject: Re: [bug#30344] cwm Date: Thu, 22 Feb 2018 21:11:58 +0000
[Message part 1 (text/plain, inline)]
Leo Famulari transcribed 1.6K bytes: > On Thu, Feb 22, 2018 at 06:40:54PM +0000, ng0 wrote: > > Hi Leo, > > > > is this good to be merged now or is there something missing? > > > > Thanks for your review. > > Thank you for the reminder! > > > > Okay, I've written a new variant which is appended. Oh no. I've just seen that we've been a bit sloppy in the review of other mentions of "fork". I think synopsis and the .desktop file should be edited to express the change in description. > > > From 13398bb7d37d99c4103815cd3765bf1f687f27db Mon Sep 17 00:00:00 2001 > > > From: ng0 <ng0 <at> n0.is> > > > Date: Sun, 4 Feb 2018 11:15:19 +0000 > > > Subject: [PATCH] gnu: Add cwm. > > > > > > * gnu/packages/wm.scm (cwm): New variable. > > Pushed as b4cb9308f722061076d267c39ee0b8b86ba6f8f2 Thanks! -- ng0 :: https://n0.is | https://crash.cx A88C8ADD129828D7EAC02E52E22F9BBFEE348588
[signature.asc (application/pgp-signature, inline)]
Debbugs Internal Request <help-debbugs <at> gnu.org>
to internal_control <at> debbugs.gnu.org
.
(Fri, 23 Mar 2018 11:24:04 GMT) Full text and rfc822 format available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.