all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] Add gzochi game development framework
@ 2015-09-29  3:47 Julian Graham
  2015-09-29 22:01 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Julian Graham @ 2015-09-29  3:47 UTC (permalink / raw)
  To: guix-devel


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

Hi Guix people!

This patch adds a package definition for the gzochi game development
framework (http://www.nongnu.org/gzochi/). Tested on x86_64, should also
work just fine on i686. (Not sure about MIPS and ARM.) Depends only on
existing Guix packages.


Regards,
Julian

[-- Attachment #1.2: Type: text/html, Size: 455 bytes --]

[-- Attachment #2: 0001-gnu-Add-gzochi-game-development-framework.patch --]
[-- Type: text/x-patch, Size: 2527 bytes --]

From 875c1207eb15dbebc0fbb0d86dc312771c0461d3 Mon Sep 17 00:00:00 2001
From: Julian Graham <julian@rake>
Date: Mon, 28 Sep 2015 23:08:30 -0400
Subject: [PATCH] gnu: Add gzochi game development framework.

* gnu/packages/game-development.scm (gzochi): New variable.
---
 gnu/packages/game-development.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index c1757ac..e18711e 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -24,6 +24,12 @@
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages)
+  #:use-module (gnu packages databases)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnunet)
+  #:use-module (gnu packages guile)
+  #:use-module (gnu packages multiprecision)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages zip)
@@ -64,6 +70,39 @@
 is used in some video games and movies.")
     (license license:zlib)))
 
+(define-public gzochi
+  (package
+    (name "gzochi")
+    (version "0.9")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "http://savannah.nongnu.org/download/gzochi/gzochi-"
+                          version ".tar.gz"))
+      (sha256
+       (base32 "1nf8naqbc4hmhy99b8n70yswg9j71nh5mfpwwh6d8pdw5mp9b46a"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("pkgconfig" ,pkg-config)))
+    (inputs `(("bdb" ,bdb)
+              ("glib" ,glib)
+              ("gmp" ,gmp)
+              ("guile" ,guile-2.0)
+              ("libmicrohttpd" ,libmicrohttpd)
+              ("ncurses" ,ncurses)
+              ("sdl" ,sdl)
+              ("zlib" ,zlib)))
+
+    (home-page "http://www.nongnu.org/gzochi/")
+    (synopsis "Scalable middleware for MMOs")
+    (description
+     "gzochi is a framework for developing massively multiplayer online games. A
+server container provides services to deployed games, which are written in
+Guile Scheme, that abstract and simplify some of the most challenging and
+error-prone aspects of online game development: Concurrency, data persistence,
+and network communications. A very thin client library can be embedded to
+provide connectivity for client applications written in any language.")
+    (license license:gpl3+)))
+
 (define-public tiled
   (package
     (name "tiled")
-- 
2.1.4


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

* Re: [PATCH] Add gzochi game development framework
  2015-09-29  3:47 [PATCH] Add gzochi game development framework Julian Graham
@ 2015-09-29 22:01 ` Ludovic Courtès
  2015-09-29 22:12   ` Julian Graham
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2015-09-29 22:01 UTC (permalink / raw)
  To: Julian Graham; +Cc: guix-devel

Hi Julian!

Julian Graham <joolean@gmail.com> skribis:

> From 875c1207eb15dbebc0fbb0d86dc312771c0461d3 Mon Sep 17 00:00:00 2001
> From: Julian Graham <julian@rake>
> Date: Mon, 28 Sep 2015 23:08:30 -0400
> Subject: [PATCH] gnu: Add gzochi game development framework.
>
> * gnu/packages/game-development.scm (gzochi): New variable.

Pushed with some modifications: I changed the URL to use
mirror://savannah, added a build phase to remove -Werror since they were
triggered by the use of deprecated libmicrohttpd functions in current
master, added spaces after periods in the description (as reported by
‘guix lint’), added a copyright line for you, and fixed the email
address in the commit itself (you forgot ‘git config user.email’.)

I didn’t expect to change all this but while I was at it…  Let me know
if there’s any problem.

Thanks, and welcome aboard!  :-)

Ludo’.

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

* Re: [PATCH] Add gzochi game development framework
  2015-09-29 22:01 ` Ludovic Courtès
@ 2015-09-29 22:12   ` Julian Graham
  2015-09-30  8:49     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Julian Graham @ 2015-09-29 22:12 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

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

Hi Ludovic!

Wow, you did a lot of work on my behalf. Thank you!

I'll make sure any further patches are properly linted.


Regards,
Julian



On Tue, Sep 29, 2015 at 6:01 PM, Ludovic Courtès <ludo@gnu.org> wrote:

> Hi Julian!
>
> Julian Graham <joolean@gmail.com> skribis:
>
> > From 875c1207eb15dbebc0fbb0d86dc312771c0461d3 Mon Sep 17 00:00:00 2001
> > From: Julian Graham <julian@rake>
> > Date: Mon, 28 Sep 2015 23:08:30 -0400
> > Subject: [PATCH] gnu: Add gzochi game development framework.
> >
> > * gnu/packages/game-development.scm (gzochi): New variable.
>
> Pushed with some modifications: I changed the URL to use
> mirror://savannah, added a build phase to remove -Werror since they were
> triggered by the use of deprecated libmicrohttpd functions in current
> master, added spaces after periods in the description (as reported by
> ‘guix lint’), added a copyright line for you, and fixed the email
> address in the commit itself (you forgot ‘git config user.email’.)
>
> I didn’t expect to change all this but while I was at it…  Let me know
> if there’s any problem.
>
> Thanks, and welcome aboard!  :-)
>
> Ludo’.
>

[-- Attachment #2: Type: text/html, Size: 1714 bytes --]

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

* Re: [PATCH] Add gzochi game development framework
  2015-09-29 22:12   ` Julian Graham
@ 2015-09-30  8:49     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2015-09-30  8:49 UTC (permalink / raw)
  To: Julian Graham; +Cc: guix-devel

Julian Graham <joolean@gmail.com> skribis:

> Wow, you did a lot of work on my behalf. Thank you!

Think of it as a welcome gift.  ;-)

Thanks for helping out,
Ludo’.

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

end of thread, other threads:[~2015-09-30  8:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-29  3:47 [PATCH] Add gzochi game development framework Julian Graham
2015-09-29 22:01 ` Ludovic Courtès
2015-09-29 22:12   ` Julian Graham
2015-09-30  8:49     ` Ludovic Courtès

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.