all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add powwow.
@ 2016-03-03 12:03 Nils Gillmann
  2016-03-03 13:55 ` Ricardo Wurmus
  0 siblings, 1 reply; 10+ messages in thread
From: Nils Gillmann @ 2016-03-03 12:03 UTC (permalink / raw)
  To: guix-devel

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

This patch adds powwow, a telnet client which can be used for
MUDs.

I just noticed I made 2 minor mistakes:

+    (home-page "http://www.hoopajoo/projects/powwow.html")

should be:

+    (home-page "http://www.hoopajoo.net/projects/powwow.html")


and

+    ;; The following files are GPLv3+:
+    ;;   config.guess, config.sub, depcomp, ...
+    (license (list license:gpl2+ license:gpl3+))))

should be:

+    ;; The following files are GPLv3+:
+    ;;   config.guess, config.sub, depcomp
+    (license (list license:gpl2+ license:gpl3+))))



[-- Attachment #2: 0001-gnu-Add-powwow.patch --]
[-- Type: text/x-patch, Size: 2142 bytes --]

From 91697b7749fd26954807788bc0cb7c2918d9ea0c Mon Sep 17 00:00:00 2001
From: Nils Gillmann <niasterisk@grrlz.net>
Date: Thu, 3 Mar 2016 12:41:08 +0100
Subject: [PATCH] gnu: Add powwow.

* gnu/packages/admin.scm (powwow): New variable.
---
 gnu/packages/admin.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index b0b2046..bbc27e4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
 ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2016 Nils Gillmann <niasterisk@grrlz.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1496,3 +1497,29 @@ for writing audit records to the disk.  Viewing the logs is done with the
 @code{ausearch} or @code{aureport} utilities.  Configuring the audit rules is
 done with the @code{auditctl} utility.")
     (license license:gpl2+)))
+
+(define-public powwow
+  (package
+    (name "powwow")
+    (version "1.2.17")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.hoopajoo.net/static/projects/powwow-"
+                                  version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1xmsg2y7qcvj67i9ilnih0mvfxcpni7fzrz343x9rdfnkkzf3pp8"))))
+    (inputs
+     `(("ncurses" ,ncurses)))
+    (build-system gnu-build-system)
+    (home-page "http://www.hoopajoo/projects/powwow.html")
+    (synopsis "POWWOW is a enhanced telnet client which can be used for MUD")
+    (description
+     "POWWOW is a client software which can be used for telnet as well as for
+@dfn{Multi-User Dungeon} (MUD).  Additionally it can serve as a nice client for
+the chat server psyced with the specific config located at
+http://lavachat.symlynx.com/unix/")
+    ;; The following files are GPLv3+:
+    ;;   config.guess, config.sub, depcomp, ...
+    (license (list license:gpl2+ license:gpl3+))))
-- 
2.6.3


[-- Attachment #3: Type: text/plain, Size: 140 bytes --]


-- 
ng
irc://loupsycedyglgamf.onion:67/~NiAsterisk
https://psyced.org:34443/NiAsterisk/
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-03 12:03 [PATCH] gnu: Add powwow Nils Gillmann
@ 2016-03-03 13:55 ` Ricardo Wurmus
  2016-03-03 14:24   ` Nils Gillmann
  2016-03-03 16:49   ` Ludovic Courtès
  0 siblings, 2 replies; 10+ messages in thread
From: Ricardo Wurmus @ 2016-03-03 13:55 UTC (permalink / raw)
  To: Nils Gillmann; +Cc: guix-devel


Nils Gillmann <niasterisk@grrlz.net> writes:

> should be:
>
> +    ;; The following files are GPLv3+:
> +    ;;   config.guess, config.sub, depcomp
> +    (license (list license:gpl2+ license:gpl3+))))

What happened to the public domain stuff?

“config.guess” and the like are produced by autoconf, so I wonder if
they need to mentioned at all.  They are not exactly part of the
application.  Could someone else please confirm this?

~~ Ricardo

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-03 13:55 ` Ricardo Wurmus
@ 2016-03-03 14:24   ` Nils Gillmann
  2016-03-03 16:49   ` Ludovic Courtès
  1 sibling, 0 replies; 10+ messages in thread
From: Nils Gillmann @ 2016-03-03 14:24 UTC (permalink / raw)
  To: guix-devel

Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> writes:

> Nils Gillmann <niasterisk@grrlz.net> writes:
>
>> should be:
>>
>> +    ;; The following files are GPLv3+:
>> +    ;;   config.guess, config.sub, depcomp
>> +    (license (list license:gpl2+ license:gpl3+))))
>
> What happened to the public domain stuff?

It got re-licensed as GPL2+ with the additional note to the
original writers. I reference to another application version than
in the original question I had, the one I had was before the
apparent more or less rewrite and adoption which happened in 2010
and this version is from 2013, where what I started with had big
parts from 1998.

>
> “config.guess” and the like are produced by autoconf, so I wonder if
> they need to mentioned at all.  They are not exactly part of the
> application.  Could someone else please confirm this?
>
> ~~ Ricardo
>
>

-- 
ng
irc://loupsycedyglgamf.onion:67/~NiAsterisk
https://psyced.org:34443/NiAsterisk/
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-03 13:55 ` Ricardo Wurmus
  2016-03-03 14:24   ` Nils Gillmann
@ 2016-03-03 16:49   ` Ludovic Courtès
  2016-03-03 22:43     ` Nils Gillmann
                       ` (2 more replies)
  1 sibling, 3 replies; 10+ messages in thread
From: Ludovic Courtès @ 2016-03-03 16:49 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, Nils Gillmann

Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> skribis:

> Nils Gillmann <niasterisk@grrlz.net> writes:
>
>> should be:
>>
>> +    ;; The following files are GPLv3+:
>> +    ;;   config.guess, config.sub, depcomp
>> +    (license (list license:gpl2+ license:gpl3+))))
>
> What happened to the public domain stuff?
>
> “config.guess” and the like are produced by autoconf, so I wonder if
> they need to mentioned at all.  They are not exactly part of the
> application.  Could someone else please confirm this?

I agree, no need to mention them (they come from Automake,
to be precise.)

Ludo’.

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-03 16:49   ` Ludovic Courtès
@ 2016-03-03 22:43     ` Nils Gillmann
  2016-03-07  3:10     ` Nils Gillmann
  2016-03-07 16:10     ` Nils Gillmann
  2 siblings, 0 replies; 10+ messages in thread
From: Nils Gillmann @ 2016-03-03 22:43 UTC (permalink / raw)
  To: guix-devel

Okay.

Should I resubmit the patch, or can you work it out on the basis
of this patch?

thanks,
-- 
ng
irc://loupsycedyglgamf.onion:67/~NiAsterisk
https://psyced.org:34443/NiAsterisk/
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-03 16:49   ` Ludovic Courtès
  2016-03-03 22:43     ` Nils Gillmann
@ 2016-03-07  3:10     ` Nils Gillmann
  2016-03-07 16:10     ` Nils Gillmann
  2 siblings, 0 replies; 10+ messages in thread
From: Nils Gillmann @ 2016-03-07  3:10 UTC (permalink / raw)
  To: guix-devel

ludo@gnu.org (Ludovic Courtès) writes:

> Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> skribis:
>
>> Nils Gillmann <niasterisk@grrlz.net> writes:
>>
>>> should be:
>>>
>>> +    ;; The following files are GPLv3+:
>>> +    ;;   config.guess, config.sub, depcomp
>>> +    (license (list license:gpl2+ license:gpl3+))))
>>
>> What happened to the public domain stuff?
>>
>> “config.guess” and the like are produced by autoconf, so I wonder if
>> they need to mentioned at all.  They are not exactly part of the
>> application.  Could someone else please confirm this?
>
> I agree, no need to mention them (they come from Automake,
> to be precise.)
>
> Ludo’.

Okay, I will send in a new patch to the list (or this thread?
what's the recommended way?) in the next days with the changes.

-- 
ng
irc://loupsycedyglgamf.onion:67/~NiAsterisk
https://psyced.org:34443/NiAsterisk/
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-03 16:49   ` Ludovic Courtès
  2016-03-03 22:43     ` Nils Gillmann
  2016-03-07  3:10     ` Nils Gillmann
@ 2016-03-07 16:10     ` Nils Gillmann
  2016-03-10  0:46       ` 宋文武
  2 siblings, 1 reply; 10+ messages in thread
From: Nils Gillmann @ 2016-03-07 16:10 UTC (permalink / raw)
  To: guix-devel

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

I removed gplv3+ as addressed by ludo' and rekado,
corrected the url in "website" (added missing ".net").

Here's the new patch, rebased against current master.


[-- Attachment #2: 0001-gnu-Add-powwow.patch --]
[-- Type: text/x-patch, Size: 2034 bytes --]

From f59e5027d4fb9559e179fb4693617820f6680223 Mon Sep 17 00:00:00 2001
From: Nils Gillmann <niasterisk@grrlz.net>
Date: Thu, 3 Mar 2016 12:41:08 +0100
Subject: [PATCH] gnu: Add powwow.

* gnu/packages/admin.scm (powwow): New variable.
---
 gnu/packages/admin.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index b0b2046..1a26fa0 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
 ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2016 Nils Gillmann <niasterisk@grrlz.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1496,3 +1497,27 @@ for writing audit records to the disk.  Viewing the logs is done with the
 @code{ausearch} or @code{aureport} utilities.  Configuring the audit rules is
 done with the @code{auditctl} utility.")
     (license license:gpl2+)))
+
+(define-public powwow
+  (package
+    (name "powwow")
+    (version "1.2.17")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.hoopajoo.net/static/projects/powwow-"
+                                  version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1xmsg2y7qcvj67i9ilnih0mvfxcpni7fzrz343x9rdfnkkzf3pp8"))))
+    (inputs
+     `(("ncurses" ,ncurses)))
+    (build-system gnu-build-system)
+    (home-page "http://www.hoopajoo.net/projects/powwow.html")
+    (synopsis "POWWOW is a enhanced telnet client which can be used for MUD")
+    (description
+     "POWWOW is a client software which can be used for telnet as well as for
+@dfn{Multi-User Dungeon} (MUD).  Additionally it can serve as a nice client for
+the chat server psyced with the specific config located at
+http://lavachat.symlynx.com/unix/")
+    (license license:gpl2+)))
-- 
2.6.3


[-- Attachment #3: Type: text/plain, Size: 141 bytes --]



-- 
ng
irc://loupsycedyglgamf.onion:67/~NiAsterisk
https://psyced.org:34443/NiAsterisk/
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-07 16:10     ` Nils Gillmann
@ 2016-03-10  0:46       ` 宋文武
  2016-03-11  0:38         ` 宋文武
  0 siblings, 1 reply; 10+ messages in thread
From: 宋文武 @ 2016-03-10  0:46 UTC (permalink / raw)
  To: Nils Gillmann; +Cc: guix-devel

Nils Gillmann <niasterisk@grrlz.net> writes:

> I removed gplv3+ as addressed by ludo' and rekado,
> corrected the url in "website" (added missing ".net").
>
> Here's the new patch, rebased against current master.
Thanks!
>
> From f59e5027d4fb9559e179fb4693617820f6680223 Mon Sep 17 00:00:00 2001
> From: Nils Gillmann <niasterisk@grrlz.net>
> Date: Thu, 3 Mar 2016 12:41:08 +0100
> Subject: [PATCH] gnu: Add powwow.
>
> * gnu/packages/admin.scm (powwow): New variable.
> ---
>  gnu/packages/admin.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index b0b2046..1a26fa0 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
I think it isn’t for admin…  how about put it in games.scm?
> @@ -9,6 +9,7 @@
>  ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
>  ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
>  ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
> +;;; Copyright © 2016 Nils Gillmann <niasterisk@grrlz.net>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -1496,3 +1497,27 @@ for writing audit records to the disk.  Viewing the logs is done with the
>  @code{ausearch} or @code{aureport} utilities.  Configuring the audit rules is
>  done with the @code{auditctl} utility.")
>      (license license:gpl2+)))
> +
> +(define-public powwow
> +  (package
> +    (name "powwow")
> +    (version "1.2.17")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://www.hoopajoo.net/static/projects/powwow-"
Make it under 80 characters limit?
> +                                  version ".tar.gz"))
> +              (file-name (string-append name "-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "1xmsg2y7qcvj67i9ilnih0mvfxcpni7fzrz343x9rdfnkkzf3pp8"))))
> +    (inputs
> +     `(("ncurses" ,ncurses)))
> +    (build-system gnu-build-system)
> +    (home-page "http://www.hoopajoo.net/projects/powwow.html")
> +    (synopsis "POWWOW is a enhanced telnet client which can be used for MUD")
Don’t mention itself in synopsis, I think “MUD and telnet client” should do.
> +    (description
> +     "POWWOW is a client software which can be used for telnet as well as for
> +@dfn{Multi-User Dungeon} (MUD).  Additionally it can serve as a nice client for
> +the chat server psyced with the specific config located at
> +http://lavachat.symlynx.com/unix/")
> +    (license license:gpl2+)))
> -- 
> 2.6.3
Otherwise, look good to me!

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-10  0:46       ` 宋文武
@ 2016-03-11  0:38         ` 宋文武
  2016-03-11 15:53           ` Nils Gillmann
  0 siblings, 1 reply; 10+ messages in thread
From: 宋文武 @ 2016-03-11  0:38 UTC (permalink / raw)
  To: Nils Gillmann; +Cc: guix-devel

Thanks, pushed :-)

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

* Re: [PATCH] gnu: Add powwow.
  2016-03-11  0:38         ` 宋文武
@ 2016-03-11 15:53           ` Nils Gillmann
  0 siblings, 0 replies; 10+ messages in thread
From: Nils Gillmann @ 2016-03-11 15:53 UTC (permalink / raw)
  To: guix-devel

Thanks!

Also I will send in a patch on this soon with a patched
output to make it more useable for chat.


-- 
ng
personal contact: http://krosos.sdf.org
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

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

end of thread, other threads:[~2016-03-11 15:53 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-03 12:03 [PATCH] gnu: Add powwow Nils Gillmann
2016-03-03 13:55 ` Ricardo Wurmus
2016-03-03 14:24   ` Nils Gillmann
2016-03-03 16:49   ` Ludovic Courtès
2016-03-03 22:43     ` Nils Gillmann
2016-03-07  3:10     ` Nils Gillmann
2016-03-07 16:10     ` Nils Gillmann
2016-03-10  0:46       ` 宋文武
2016-03-11  0:38         ` 宋文武
2016-03-11 15:53           ` Nils Gillmann

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.