unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add wmfire.
@ 2016-05-06 22:44 Kei Yamashita
  2016-05-07  7:27 ` Alex Kost
  0 siblings, 1 reply; 4+ messages in thread
From: Kei Yamashita @ 2016-05-06 22:44 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 25 bytes --]

Adding another dockapp.

[-- Attachment #1.2: 0001-gnu-Add-wmfire.patch --]
[-- Type: text/plain, Size: 2188 bytes --]

From dd367c87eab125d83875e98e27489191d60cd735 Mon Sep 17 00:00:00 2001
From: Kei Yamashita <kei@openmailbox.org>
Date: Fri, 6 May 2016 17:24:44 -0400
Subject: [PATCH] gnu: Add wmfire.

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

diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
index f4a2b26..20306b1 100644
--- a/gnu/packages/gnustep.scm
+++ b/gnu/packages/gnustep.scm
@@ -24,6 +24,7 @@
   #:use-module (guix licenses)
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages glib)
@@ -216,3 +217,32 @@ on.")
 a dockable tile.  It features multiple language support, 24h or 12h time
 display, and can run a user-specified program on mouse click.")
     (license gpl2+)))
+
+(define-public wmfire
+  (package
+    (name "wmfire")
+    (version "1.2.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.improbability.net/"
+                                  name "/" name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "101grahd80n97y2dczb629clmcgiavdpbbwy78kk5wgs362m12z3"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+" ,gtk+-2)
+       ("libgtop" ,libgtop)))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)))
+    (home-page "http://www.improbability.net/")
+    (synopsis "Displays flames to monitor CPU, memory, etc.")
+    (description
+     "This applet can monitor the average cpu load, or individual cpu load on
+SMP computers.  Additionally it can monitor the memory, network load, a file or
+just be set to show a pretty flame.  On entering the dock a burning spot
+replaces the cursor, and after two seconds symbols to represent the current
+monitor are \"burnt\" onscreen.  The flame colour can also be changed.")
+    (license gpl2+)))
-- 
2.7.4


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH] gnu: Add wmfire.
  2016-05-06 22:44 [PATCH] gnu: Add wmfire Kei Yamashita
@ 2016-05-07  7:27 ` Alex Kost
  2016-05-07 18:25   ` Kei Yamashita
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Kost @ 2016-05-07  7:27 UTC (permalink / raw)
  To: Kei Yamashita; +Cc: guix-devel

Kei Yamashita (2016-05-07 01:44 +0300) wrote:

> Adding another dockapp.
>
> From dd367c87eab125d83875e98e27489191d60cd735 Mon Sep 17 00:00:00 2001
> From: Kei Yamashita <kei@openmailbox.org>
> Date: Fri, 6 May 2016 17:24:44 -0400
> Subject: [PATCH] gnu: Add wmfire.
>
> * gnu/packages/gnustep.scm (wmfire): New variable.
> ---
>  gnu/packages/gnustep.scm | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>
> diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
> index f4a2b26..20306b1 100644
> --- a/gnu/packages/gnustep.scm
> +++ b/gnu/packages/gnustep.scm
> @@ -24,6 +24,7 @@
>    #:use-module (guix licenses)
>    #:use-module (gnu packages xorg)
>    #:use-module (gnu packages gnome)
> +  #:use-module (gnu packages gtk)
>    #:use-module (gnu packages texinfo)
>    #:use-module (gnu packages autotools)
>    #:use-module (gnu packages glib)
> @@ -216,3 +217,32 @@ on.")
>  a dockable tile.  It features multiple language support, 24h or 12h time
>  display, and can run a user-specified program on mouse click.")
>      (license gpl2+)))
> +
> +(define-public wmfire
> +  (package
> +    (name "wmfire")
> +    (version "1.2.4")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://www.improbability.net/"
> +                                  name "/" name "-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "101grahd80n97y2dczb629clmcgiavdpbbwy78kk5wgs362m12z3"))))
> +    (build-system gnu-build-system)
> +    (inputs
> +     `(("gtk+" ,gtk+-2)
> +       ("libgtop" ,libgtop)))
> +    (native-inputs
> +     `(("autoconf" ,autoconf)
> +       ("automake" ,automake)
> +       ("pkg-config" ,pkg-config)))

There is no need to include "autoconf" and "automake" here.  I see there
are warnings like this:

WARNING: `autoconf' is missing on your system.  You should only need it if
         you modified `configure.in'.  You might want to install the
         `Autoconf' and `GNU m4' packages.  Grab them from any GNU
         archive site.

but they are harmless.  So I think only "pkg-config" should be put in
'native-inputs'.

> +    (home-page "http://www.improbability.net/")
> +    (synopsis "Displays flames to monitor CPU, memory, etc.")

I don't really understand this synopsis, but it's probably just me.
Anyway I think "Displays" is not the preferred form; rather "Display".

> +    (description
> +     "This applet can monitor the average cpu load, or individual cpu load on
> +SMP computers.  Additionally it can monitor the memory, network load, a file or
> +just be set to show a pretty flame.  On entering the dock a burning spot
> +replaces the cursor, and after two seconds symbols to represent the current
> +monitor are \"burnt\" onscreen.  The flame colour can also be changed.")

I think it is good to mention that this applet is for Window Maker as
you did for 'wmlock' package.

> +    (license gpl2+)))

-- 
Alex (who thinks it's time to add commit rights to Kei)

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

* Re: [PATCH] gnu: Add wmfire.
  2016-05-07  7:27 ` Alex Kost
@ 2016-05-07 18:25   ` Kei Yamashita
  2016-05-09  8:44     ` Alex Kost
  0 siblings, 1 reply; 4+ messages in thread
From: Kei Yamashita @ 2016-05-07 18:25 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 3323 bytes --]

On Sat, 07 May 2016 10:27:48 +0300
Alex Kost <alezost@gmail.com> wrote:

> Kei Yamashita (2016-05-07 01:44 +0300) wrote:
> 
> > Adding another dockapp.
> >
> > From dd367c87eab125d83875e98e27489191d60cd735 Mon Sep 17 00:00:00
> > 2001 From: Kei Yamashita <kei@openmailbox.org>
> > Date: Fri, 6 May 2016 17:24:44 -0400
> > Subject: [PATCH] gnu: Add wmfire.
> >
> > * gnu/packages/gnustep.scm (wmfire): New variable.
> > ---
> >  gnu/packages/gnustep.scm | 30 ++++++++++++++++++++++++++++++
> >  1 file changed, 30 insertions(+)
> >
> > diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
> > index f4a2b26..20306b1 100644
> > --- a/gnu/packages/gnustep.scm
> > +++ b/gnu/packages/gnustep.scm
> > @@ -24,6 +24,7 @@
> >    #:use-module (guix licenses)
> >    #:use-module (gnu packages xorg)
> >    #:use-module (gnu packages gnome)
> > +  #:use-module (gnu packages gtk)
> >    #:use-module (gnu packages texinfo)
> >    #:use-module (gnu packages autotools)
> >    #:use-module (gnu packages glib)
> > @@ -216,3 +217,32 @@ on.")
> >  a dockable tile.  It features multiple language support, 24h or
> > 12h time display, and can run a user-specified program on mouse
> > click.") (license gpl2+)))
> > +
> > +(define-public wmfire
> > +  (package
> > +    (name "wmfire")
> > +    (version "1.2.4")
> > +    (source (origin
> > +              (method url-fetch)
> > +              (uri (string-append "http://www.improbability.net/"
> > +                                  name "/" name "-" version
> > ".tar.gz"))
> > +              (sha256
> > +               (base32
> > +
> > "101grahd80n97y2dczb629clmcgiavdpbbwy78kk5wgs362m12z3"))))
> > +    (build-system gnu-build-system)
> > +    (inputs
> > +     `(("gtk+" ,gtk+-2)
> > +       ("libgtop" ,libgtop)))
> > +    (native-inputs
> > +     `(("autoconf" ,autoconf)
> > +       ("automake" ,automake)
> > +       ("pkg-config" ,pkg-config)))  
> 
> There is no need to include "autoconf" and "automake" here.  I see
> there are warnings like this:
> 
> WARNING: `autoconf' is missing on your system.  You should only need
> it if you modified `configure.in'.  You might want to install the
>          `Autoconf' and `GNU m4' packages.  Grab them from any GNU
>          archive site.
> 
> but they are harmless.  So I think only "pkg-config" should be put in
> 'native-inputs'.
> 
> > +    (home-page "http://www.improbability.net/")
> > +    (synopsis "Displays flames to monitor CPU, memory, etc.")  
> 
> I don't really understand this synopsis, but it's probably just me.
> Anyway I think "Displays" is not the preferred form; rather "Display".
> 
> > +    (description
> > +     "This applet can monitor the average cpu load, or individual
> > cpu load on +SMP computers.  Additionally it can monitor the
> > memory, network load, a file or +just be set to show a pretty
> > flame.  On entering the dock a burning spot +replaces the cursor,
> > and after two seconds symbols to represent the current +monitor are
> > \"burnt\" onscreen.  The flame colour can also be changed.")  
> 
> I think it is good to mention that this applet is for Window Maker as
> you did for 'wmlock' package.
> 
> > +    (license gpl2+)))  
> 

New patch with all of the above corrected!

[-- Attachment #1.2: 0001-gnu-Add-wmfire.patch --]
[-- Type: text/plain, Size: 2168 bytes --]

From 26c231e51de66db0c66b8c2761f0671703ade707 Mon Sep 17 00:00:00 2001
From: Kei Yamashita <kei@openmailbox.org>
Date: Sat, 7 May 2016 14:20:35 -0400
Subject: [PATCH] gnu: Add wmfire.

* gnu/packages/gnustep.scm (wmfire): New variable.
---
 gnu/packages/gnustep.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
index f4a2b26..31fca5b 100644
--- a/gnu/packages/gnustep.scm
+++ b/gnu/packages/gnustep.scm
@@ -24,6 +24,7 @@
   #:use-module (guix licenses)
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages texinfo)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages glib)
@@ -216,3 +217,31 @@ on.")
 a dockable tile.  It features multiple language support, 24h or 12h time
 display, and can run a user-specified program on mouse click.")
     (license gpl2+)))
+
+(define-public wmfire
+  (package
+    (name "wmfire")
+    (version "1.2.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.improbability.net/"
+                                  name "/" name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "101grahd80n97y2dczb629clmcgiavdpbbwy78kk5wgs362m12z3"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+" ,gtk+-2)
+       ("libgtop" ,libgtop)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://www.improbability.net/")
+    (synopsis "Display flames to represent CPU usage, memory usage, etc.")
+    (description
+     "wmfire is an applet for Window Maker that can monitor the average cpu
+load, or individual cpu load on SMP computers.  Additionally it can monitor the
+memory, network load, a file or just be set to show a pretty flame.  On
+entering the dock a burning spot replaces the cursor, and after two seconds
+symbols to represent the current monitor are \"burnt\" onscreen.  The flame
+colour can also be changed.")
+    (license gpl2+)))
-- 
2.7.4


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: [PATCH] gnu: Add wmfire.
  2016-05-07 18:25   ` Kei Yamashita
@ 2016-05-09  8:44     ` Alex Kost
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Kost @ 2016-05-09  8:44 UTC (permalink / raw)
  To: Kei Yamashita; +Cc: guix-devel


> From 26c231e51de66db0c66b8c2761f0671703ade707 Mon Sep 17 00:00:00 2001
> From: Kei Yamashita <kei@openmailbox.org>
> Date: Sat, 7 May 2016 14:20:35 -0400
> Subject: [PATCH] gnu: Add wmfire.
>
> * gnu/packages/gnustep.scm (wmfire): New variable.

Applied as 9c6b7ef54, thanks!

-- 
Alex

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

end of thread, other threads:[~2016-05-09  8:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-06 22:44 [PATCH] gnu: Add wmfire Kei Yamashita
2016-05-07  7:27 ` Alex Kost
2016-05-07 18:25   ` Kei Yamashita
2016-05-09  8:44     ` Alex Kost

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).