unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#56959] [PATCH] gnu: packages: Add glad2.
@ 2022-08-03 19:46 ( via Guix-patches via
  2022-08-11 14:19 ` Jean Pierre De Jesus DIAZ via Guix-patches via
  2022-08-12  6:59 ` [bug#56959] [PATCH v2] " ( via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: ( via Guix-patches via @ 2022-08-03 19:46 UTC (permalink / raw)
  To: 56959; +Cc: (

* gnu/packages/gl.scm (glad2): New variable.
---
 gnu/packages/gl.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index c740c087dd..3539b66a2a 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
 ;;; Copyright © 2021 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2022 ( <paren@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -66,6 +67,7 @@ (define-module (gnu packages gl)
   #:use-module (guix build-system meson)
   #:use-module (guix build-system python)
   #:use-module (guix build-system waf)
+  #:use-module (guix gexp)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix utils)
@@ -215,6 +217,50 @@ (define-public glad
 generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.")
     (license license:expat)))
 
+(define-public glad2
+  (let ((commit "b1051403cf81b984f9fc11cc5916adb5afd34766")
+	(revision "2"))
+    (package
+      (name "glad2")
+      (version (git-version "0.1.36" revision commit))
+      (source (origin
+	       (method git-fetch)
+	       (uri (git-reference
+		     (url "https://github.com/Dav1dde/glad")
+		     (commit commit)))
+	       (sha256
+	        (base32
+                 "03q3gxg2z9lpx7hqac2fd3ld94avhkg4mdxjfjgrgh97kyx9knpm"))))
+      (build-system python-build-system)
+      (arguments
+       (list #:phases
+             #~(modify-phases %standard-phases
+                 (add-after 'install 'install-cmake-plugin
+                   (lambda* (#:key outputs #:allow-other-keys)
+                     (let* ((out (assoc-ref outputs "out"))
+                            (cmake-dir (string-append
+                                        out "/share/cmake/glad")))
+                       (mkdir-p cmake-dir)
+                       (copy-file "cmake/CMakeLists.txt"
+                                  (string-append cmake-dir
+                                                 "/glad.cmake"))))))))
+      (inputs (list python-jinja2))
+      (home-page "https://glad.sh")
+      (synopsis "Multi-language OpenGL/Vulkan loader generator")
+      (description
+       "GLAD 2 is an improved iteration of the GLAD graphics API loader
+generator. It generates bindings to Vulkan and GL-related APIs from the
+official Khronos specifications. Among the improvements are:
+@enumerate
+@item Better EGL, GLX, and WGL support
+@item Support for generating Vulkan bindings
+@item A Rust frontend
+@item More generator options (such as an option to make GLAD header-only)
+@item Improvements to CMake support
+@item Better API
+@end enumerate")
+      (license license:expat))))
+
 (define-public s2tc
   (package
     (name "s2tc")
-- 
2.37.1





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

* [bug#56959] [PATCH] gnu: packages: Add glad2.
  2022-08-03 19:46 [bug#56959] [PATCH] gnu: packages: Add glad2 ( via Guix-patches via
@ 2022-08-11 14:19 ` Jean Pierre De Jesus DIAZ via Guix-patches via
  2022-08-12  6:50   ` ( via Guix-patches via
  2022-08-12  6:59 ` [bug#56959] [PATCH v2] " ( via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Jean Pierre De Jesus DIAZ via Guix-patches via @ 2022-08-11 14:19 UTC (permalink / raw)
  To: 56959@debbugs.gnu.org; +Cc: paren@disroot.org

Hello,

Small review:

>+                   (lambda* (#:key outputs #:allow-other-keys)
>+                     (let* ((out (assoc-ref outputs "out"))
>+                            (cmake-dir (string-append
>+                                        out "/share/cmake/glad")))

--8<---------------cut here---------------start------------->8---
                   (lambda _
                     (let ((cmake-dir (string-append
                                        #$output "/share/cmake/glad")))
--8<---------------cut here---------------start------------->8---

>+generator. It generates bindings to Vulkan and GL-related APIs from the
>+official Khronos specifications. Among the improvements are:

Missing the additional space after the dots.

—
Jean-Pierre De Jesus DIAZ




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

* [bug#56959] [PATCH] gnu: packages: Add glad2.
  2022-08-11 14:19 ` Jean Pierre De Jesus DIAZ via Guix-patches via
@ 2022-08-12  6:50   ` ( via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: ( via Guix-patches via @ 2022-08-12  6:50 UTC (permalink / raw)
  To: Jean Pierre De Jesus DIAZ, 56959@debbugs.gnu.org

Thanks for the mini-review! I'll send a second patch with those corrections
shortly.

    -- (




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

* [bug#56959] [PATCH v2] gnu: packages: Add glad2.
  2022-08-03 19:46 [bug#56959] [PATCH] gnu: packages: Add glad2 ( via Guix-patches via
  2022-08-11 14:19 ` Jean Pierre De Jesus DIAZ via Guix-patches via
@ 2022-08-12  6:59 ` ( via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: ( via Guix-patches via @ 2022-08-12  6:59 UTC (permalink / raw)
  To: 56959; +Cc: (

* gnu/packages/gl.scm (glad2): New variable.
---
 gnu/packages/gl.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index c740c087dd..50c7b91526 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
 ;;; Copyright © 2021 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2022 ( <paren@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -66,6 +67,7 @@ (define-module (gnu packages gl)
   #:use-module (guix build-system meson)
   #:use-module (guix build-system python)
   #:use-module (guix build-system waf)
+  #:use-module (guix gexp)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix utils)
@@ -215,6 +217,50 @@ (define-public glad
 generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.")
     (license license:expat)))
 
+(define-public glad2
+  (let ((commit "b1051403cf81b984f9fc11cc5916adb5afd34766")
+	(revision "2"))
+    (package
+      (name "glad2")
+      (version (git-version "0.1.36" revision commit))
+      (source (origin
+	       (method git-fetch)
+	       (uri (git-reference
+		     (url "https://github.com/Dav1dde/glad")
+		     (commit commit)))
+	       (sha256
+	        (base32
+                 "03q3gxg2z9lpx7hqac2fd3ld94avhkg4mdxjfjgrgh97kyx9knpm"))))
+      (build-system python-build-system)
+      (arguments
+       (list #:phases
+             #~(modify-phases %standard-phases
+                 (add-after 'install 'install-cmake-plugin
+                   (lambda _
+                     (let ((cmake-dir (string-append #$output
+                                                     "/share/cmake/glad")))
+                       (mkdir-p cmake-dir)
+                       (copy-file "cmake/CMakeLists.txt"
+                                  (string-append cmake-dir
+                                                 "/glad.cmake"))))))))
+      (inputs (list python-jinja2))
+      (home-page "https://glad.sh")
+      (synopsis "Multi-language OpenGL/Vulkan loader generator")
+      (description
+       "GLAD 2 is a graphics library binding generator.  It generates code
+for calling into Vulkan and GL-related APIs from the official Khronos XML
+specifications.  Among the improvements are:
+@enumerate
+@item Better EGL, GLX, and WGL support
+@item Support for generating Vulkan bindings
+@item A Rust frontend
+@item More generator options for enabling features such as the generation
+of header-only C bindings
+@item Improvements for CMake support
+@item Better API
+@end enumerate")
+      (license license:expat))))
+
 (define-public s2tc
   (package
     (name "s2tc")
-- 
2.37.1





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

end of thread, other threads:[~2022-08-12  7:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-03 19:46 [bug#56959] [PATCH] gnu: packages: Add glad2 ( via Guix-patches via
2022-08-11 14:19 ` Jean Pierre De Jesus DIAZ via Guix-patches via
2022-08-12  6:50   ` ( via Guix-patches via
2022-08-12  6:59 ` [bug#56959] [PATCH v2] " ( via Guix-patches via

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