[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: guile-opengl: Update to 0.2.0.
From: |
guix-commits |
Subject: |
branch master updated: gnu: guile-opengl: Update to 0.2.0. |
Date: |
Sat, 13 May 2023 07:52:58 -0400 |
This is an automated email from the git hooks/post-receive script.
davexunit pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6af7a94446 gnu: guile-opengl: Update to 0.2.0.
6af7a94446 is described below
commit 6af7a94446239c63784ea08f245bf35b6a13f6e1
Author: David Thompson <dthompson2@worcester.edu>
AuthorDate: Sat May 13 07:42:21 2023 -0400
gnu: guile-opengl: Update to 0.2.0.
* gnu/packages/gl.scm (guile-opengl): Update to 0.2.0. Remove obsolete build
system hack.
(guile3.0-opengl): Remove obsolete build system hack.
---
gnu/packages/gl.scm | 20 ++------------------
1 file changed, 2 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 235b386dad..c89e434ed6 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -679,25 +679,19 @@ extension functionality is exposed in a single header
file.")
(define-public guile-opengl
(package
(name "guile-opengl")
- (version "0.1.0")
+ (version "0.2.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/guile-opengl/guile-opengl-"
version ".tar.gz"))
(sha256
(base32
- "13qfx4xh8baryxqrv986l848ygd0piqwm6s2s90pxk9c0m9vklim"))))
+ "0rbc2wf9x63ilj3n85h8wyllzc2b22abmhs2p2ghjgc253n8gw5q"))))
(build-system gnu-build-system)
(native-inputs (list pkg-config))
(inputs (list guile-2.2 mesa glu freeglut))
(arguments
'(#:phases (modify-phases %standard-phases
- (add-after 'configure 'patch-makefile
- (lambda _
- ;; Install compiled Guile files in the expected place.
- (substitute* '("Makefile")
- (("^godir = .*$")
- "godir = $(moddir)\n"))))
(add-before 'build 'patch-dynamic-link
(lambda* (#:key inputs outputs #:allow-other-keys)
(substitute* "gl/runtime.scm"
@@ -728,16 +722,6 @@ OpenGL graphics API.")
(package
(inherit guile-opengl)
(name "guile3.0-opengl")
- (arguments
- (substitute-keyword-arguments (package-arguments guile-opengl)
- ((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'build-with-guile-3.0
- (lambda _
- (substitute* "configure"
- (("_guile_versions_to_search=\"")
- "_guile_versions_to_search=\"3.0 "))
- #t))))))
(inputs
(list guile-3.0 mesa glu freeglut))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: guile-opengl: Update to 0.2.0.,
guix-commits <=