unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Add glfw 3.1.2 to GNU Guix
@ 2016-05-26 20:02 Dennis Mungai
  2016-05-27  8:26 ` Ricardo Wurmus
  0 siblings, 1 reply; 2+ messages in thread
From: Dennis Mungai @ 2016-05-26 20:02 UTC (permalink / raw)
  To: guix-devel

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

Hello,

This patch adds glfw 3.1.2 to GNU Guix.

Thanks and regards,

Dennis Mungai.

[-- Attachment #2: add-glfw-3.1.2-to-guix.patch --]
[-- Type: text/x-patch, Size: 2236 bytes --]

From 6d93bf068efe283940952cb31da1f0c1ba82a0cd Mon Sep 17 00:00:00 2001
From: brainiarc7 <dmngaie@gmail.com>
Date: Thu, 26 May 2016 22:49:25 +0300
Subject: [PATCH] Add glfw to GNU Guix

---
 gnu/packages/gl.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 907e3bf..8b7a39d 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -545,3 +545,46 @@ OpenGL graphics API.")
      "SOIL is a tiny C library used primarily for uploading textures into
 OpenGL.")
     (license l:public-domain)))
+    
+(define-public glfw
+  (package
+    (name "glfw")
+    (version "3.1.2")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "https://github.com/glfw/glfw/archive/"
+                                 version ".tar.gz"))
+             (sha256
+              (base32
+               "08pixv8hd5xsccf7l8cqcijjqaq4k4da8qbp77wggal2fq445ika"))))
+    (build-system cmake-build-system)
+    (arguments `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON") 
+                 #:tests? #f))
+    (native-inputs `(("autoconf" ,autoconf)
+        ("automake" ,automake)
+        ("cmake" ,cmake)
+        ("git" ,git)
+        ("libtool" ,libtool)
+        ("libpthread-stubs" ,libpthread-stubs)
+        ("pkg-config" ,pkg-config)))
+    (inputs `(("curl" ,curl)
+       ("dbus" ,dbus)
+       ("enca" ,enca)
+       ("eudev" ,eudev)
+       ("glew" ,glew)
+       ("libcap" ,libcap)
+       ("libjpeg" ,libjpeg)
+       ("libltdl" ,libltdl)
+       ("libtiff" ,libtiff)
+       ("mesa-utils" ,mesa-utils)
+       ("randrproto" ,randrproto)
+       ("libxrandr" ,libxrandr)
+       ("xineramaproto" ,xineramaproto)
+       ("libxinerama" ,libxinerama)
+       ("libxcursor" ,libxcursor)
+       ("python" ,python-2)))       
+    (home-page "http://www.glfw.org/")
+    (synopsis "glfw is an Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events.")
+    (description "glfw is an Open Source, multi-platform library for creating windows with OpenGL contexts and receiving input and events.")
+    (license (list l:gpl2
+                   l:zlib))))
-- 
2.7.4


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

* Re: Add glfw 3.1.2 to GNU Guix
  2016-05-26 20:02 Add glfw 3.1.2 to GNU Guix Dennis Mungai
@ 2016-05-27  8:26 ` Ricardo Wurmus
  0 siblings, 0 replies; 2+ messages in thread
From: Ricardo Wurmus @ 2016-05-27  8:26 UTC (permalink / raw)
  To: Dennis Mungai; +Cc: guix-devel


Hi Dennis,

> This patch adds glfw 3.1.2 to GNU Guix.

Thank you for your patch!

> From 6d93bf068efe283940952cb31da1f0c1ba82a0cd Mon Sep 17 00:00:00 2001
> From: brainiarc7 <dmngaie@gmail.com>
> Date: Thu, 26 May 2016 22:49:25 +0300
> Subject: [PATCH] Add glfw to GNU Guix

> ---
>  gnu/packages/gl.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)

The commits should have a summar in a conventional format.  In this case
it should be something like this:

~~~~~~~~~~~~~~~~
gnu: Add glfw.

* gnu/packages/gl.scm (glfw): New variable.
~~~~~~~~~~~~~~~~


> +(define-public glfw
> +  (package
> +    (name "glfw")
> +    (version "3.1.2")
> +    (source (origin
> +             (method url-fetch)
> +             (uri (string-append "https://github.com/glfw/glfw/archive/"
> +                                 version ".tar.gz"))

Since the tarball doesn’t contain the name of the package, we usually
override its name by adding this:

    (file-name (string-append name "-" version ".tar.gz"))

> +             (sha256
> +              (base32
> +               "08pixv8hd5xsccf7l8cqcijjqaq4k4da8qbp77wggal2fq445ika"))))
> +    (build-system cmake-build-system)
> +    (arguments `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON") 
> +                 #:tests? #f))

Could you please add a comment explaining why the tests are disabled?
If there are no tests it is enough to add “; no tests” on the same line.

> +    (native-inputs `(("autoconf" ,autoconf)
> +        ("automake" ,automake)

The indentation here is off.  When we have input lists with more than
one item we usually start them on the next line.

    (native-inputs
     `(("autoconf" ,autoconf)
       ("automake" ,automake)
       ...))

> +        ("cmake" ,cmake)

As you are using the “cmake-build-system” you don’t need to add “cmake”
explicitly.

> +        ("git" ,git)

Why is git needed?  This is not a git checkout.  Does the build fail
without git?

> +        ("libtool" ,libtool)
> +        ("libpthread-stubs" ,libpthread-stubs)
> +        ("pkg-config" ,pkg-config)))
> +    (inputs `(("curl" ,curl)

The above comment on indenting lists applies here too.

> +       ("dbus" ,dbus)
> +       ("enca" ,enca)
> +       ("eudev" ,eudev)
> +       ("glew" ,glew)
> +       ("libcap" ,libcap)
> +       ("libjpeg" ,libjpeg)
> +       ("libltdl" ,libltdl)
> +       ("libtiff" ,libtiff)
> +       ("mesa-utils" ,mesa-utils)
> +       ("randrproto" ,randrproto)
> +       ("libxrandr" ,libxrandr)
> +       ("xineramaproto" ,xineramaproto)
> +       ("libxinerama" ,libxinerama)
> +       ("libxcursor" ,libxcursor)
> +       ("python" ,python-2)))

That’s a long list of inputs and I haven’t checked if all of them are
necessary.  Python is a pretty big input, though.  Is it really
necessary?  Or is this for additional Python bindings?  If so, could we
move the Python bindings to a separate output?

> +    (home-page "http://www.glfw.org/")
> +    (synopsis "glfw is an Open Source, multi-platform library for
> creating windows with OpenGL contexts and receiving input and
> events.")

The synopsis is too long.  How about:

   “Library for windows with OpenGL contexts and event handling”

> +    (description "glfw is an Open Source, multi-platform library for
> creating windows with OpenGL contexts and receiving input and
> events.")

We don’t use the term “Open Source”.  All packages in Guix are free
software, so we don’t explicitly mention this.

> +    (license (list l:gpl2
> +                   l:zlib))))

Is it GPLv2 only or is it GPLv2+?  What part of this package is under
the zlib license?  Whenever lists are used it is good to add a comment
explaining what it means.

Could you please send an updated patch?

Thanks!

~~ Ricardo

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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-26 20:02 Add glfw 3.1.2 to GNU Guix Dennis Mungai
2016-05-27  8:26 ` Ricardo Wurmus

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