From unknown Sat Jun 21 10:44:58 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#51033] [PATCH] gnu: Add gr-framework. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 05 Oct 2021 12:38:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 51033 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 51033@debbugs.gnu.org Cc: Efraim Flashner X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.163343745227026 (code B ref -1); Tue, 05 Oct 2021 12:38:01 +0000 Received: (at submit) by debbugs.gnu.org; 5 Oct 2021 12:37:32 +0000 Received: from localhost ([127.0.0.1]:39300 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXjhL-00071q-Nb for submit@debbugs.gnu.org; Tue, 05 Oct 2021 08:37:31 -0400 Received: from lists.gnu.org ([209.51.188.17]:41912) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXjhJ-00071g-Eg for submit@debbugs.gnu.org; Tue, 05 Oct 2021 08:37:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50382) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mXjhH-0006NY-Rq for guix-patches@gnu.org; Tue, 05 Oct 2021 08:37:29 -0400 Received: from flashner.co.il ([178.62.234.194]:55446) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mXjhF-0000Ip-Vf for guix-patches@gnu.org; Tue, 05 Oct 2021 08:37:27 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id E6D2240417; Tue, 5 Oct 2021 12:37:24 +0000 (UTC) From: Efraim Flashner Date: Tue, 5 Oct 2021 15:34:43 +0300 Message-Id: X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/graphics.scm (gr-framework): New variable. --- gnu/packages/graphics.scm | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 3f2be5766c..9a5e2f2195 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1254,6 +1254,56 @@ (define-public openscenegraph-3.4 `(("libjpeg" ,libjpeg-turbo) ,@(package-inputs openscenegraph))))) +(define-public gr-framework + (package + (name "gr-framework") + (version "0.58.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sciapp/gr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q1rz4iyxbh0dc22y4w28ry3hr0yypdwdm6pw2zlwgjya7wkbvsw")) + (modules '((guix build utils))) + (snippet + '(begin + (delete-file-recursively "3rdparty") + #t)))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ; no test target + (inputs + `(("bzip2" ,bzip2) + ("cairo" ,cairo) + ("fontconfig" ,fontconfig) + ("ffmpeg" ,ffmpeg) + ("freetype" ,freetype) + ("ghostscript" ,ghostscript) + ("glfw" ,glfw) + ("libjpeg-turbo" ,libjpeg-turbo) + ("libpng" ,libpng) + ("libtiff" ,libtiff) + ("libx11" ,libx11) + ("libxft" ,libxft) + ("libxt" ,libxt) + ("pixman" ,pixman) + ("qtbase" ,qtbase-5) + ("qhull" ,qhull) + ("zlib" ,zlib))) + (home-page "https://gr-framework.org/") + (synopsis "Graphics library for visualisation applications") + (description "GR is a universal framework for cross-platform visualization +applications. It offers developers a compact, portable and consistent graphics +library for their programs. Applications range from publication quality 2D +graphs to the representation of complex 3D scenes. GR is essentially based on +an implementation of a @acronym{GKS, Graphical Kernel System}. As a +self-contained system it can quickly and easily be integrated into existing +applications (i.e. using the @code{ctypes} mechanism in Python or @code{ccall} +in Julia).") + (license license:expat))) (define-public openmw-openscenegraph ;; OpenMW prefers its own fork of openscenegraph: base-commit: b54bf075c577b9f78041362035383dbbfb456617 -- 2.33.0 From unknown Sat Jun 21 10:44:58 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Efraim Flashner Subject: bug#51033: closed (Re: bug#51033: Acknowledgement ([PATCH] gnu: Add gr-framework.)) Message-ID: References: X-Gnu-PR-Message: they-closed 51033 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 51033@debbugs.gnu.org Date: Tue, 19 Oct 2021 08:19:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1634631542-8311-1" This is a multi-part message in MIME format... ------------=_1634631542-8311-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #51033: [PATCH] gnu: Add gr-framework. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 51033@debbugs.gnu.org. --=20 51033: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D51033 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1634631542-8311-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 51033-done) by debbugs.gnu.org; 19 Oct 2021 08:19:00 +0000 Received: from localhost ([127.0.0.1]:49335 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mckKq-00029h-9p for submit@debbugs.gnu.org; Tue, 19 Oct 2021 04:19:00 -0400 Received: from flashner.co.il ([178.62.234.194]:48450) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mckKp-00029V-3z for 51033-done@debbugs.gnu.org; Tue, 19 Oct 2021 04:18:59 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id 13EB040277 for <51033-done@debbugs.gnu.org>; Tue, 19 Oct 2021 08:18:52 +0000 (UTC) Date: Tue, 19 Oct 2021 11:18:20 +0300 From: Efraim Flashner To: 51033-done@debbugs.gnu.org Subject: Re: bug#51033: Acknowledgement ([PATCH] gnu: Add gr-framework.) Message-ID: Mail-Followup-To: Efraim Flashner , 51033-done@debbugs.gnu.org References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="1V3VARPqgLyrj19Y" Content-Disposition: inline In-Reply-To: X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 51033-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --1V3VARPqgLyrj19Y Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Patch pushed. --=20 Efraim Flashner =D7=A8=D7=A0=D7=A9=D7=9C=D7=A4 = =D7=9D=D7=99=D7=A8=D7=A4=D7=90 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --1V3VARPqgLyrj19Y Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmFuf0wACgkQQarn3Mo9 g1FQwRAAh4q8eIEOoU6MKcWOnC/wgqT1T72nwlZ/P+2XC1APGGSuBYlKOi+CLIl8 tHrkkrn18jgNZiPFniEJ26QIC8eFKgiOR6xQ2qWjh4s/9UzJ6pBiiiHQeSyJ8nF9 qb+xjBwf0MIv75ToRtqdtaSDPl1OEq+deSHz830bW6BywUHBQYu5LZeNBXebs9A4 +4laC0Nu3Wx4sEtIlx4aalysDHAIdl7snvY6YGK65c0jPitT5cj4p4g7BBMFy3O7 X8dXSVuQhInYmIwZWYU39vVs05kV1BUBCJgpr6oiCrDqX619BqrOOBPKd4Cq/YXF xdVntAZYVBKzXoM7kEg7niLSb4QdGx3ExCj1yjxQRwWGWn837Y977eCv5ICI8skM aoTR+Fdcm7k/ixrI/WJjwpxagKKQSmv6TcygsO4ERSLPB2H/KenwmhyYZ+34zZWj gbOj1/DgXD538/gfSO85C5aLk4pNSFVHDZGMjWicdeqnA8U8wGV9jLOU6eFXWNGi bmDHRNY2b/r4o6TMam8M+tQytSl83o4hsShhCp0giPmeP9p2UlXaIeyzVwVONW/l Wy7VYkcMXhaaI742vD+wBFo2UJeWIuJK2T3QjFiOAeiuJP+cehMeOncR2SPJ4Acx PONCnfdQ7GVMe75vdwEi9WbeC7rmSKlDtZFFViRUdWOgH0Gp0cI= =qQAt -----END PGP SIGNATURE----- --1V3VARPqgLyrj19Y-- ------------=_1634631542-8311-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 5 Oct 2021 12:37:32 +0000 Received: from localhost ([127.0.0.1]:39300 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXjhL-00071q-Nb for submit@debbugs.gnu.org; Tue, 05 Oct 2021 08:37:31 -0400 Received: from lists.gnu.org ([209.51.188.17]:41912) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mXjhJ-00071g-Eg for submit@debbugs.gnu.org; Tue, 05 Oct 2021 08:37:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50382) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mXjhH-0006NY-Rq for guix-patches@gnu.org; Tue, 05 Oct 2021 08:37:29 -0400 Received: from flashner.co.il ([178.62.234.194]:55446) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mXjhF-0000Ip-Vf for guix-patches@gnu.org; Tue, 05 Oct 2021 08:37:27 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id E6D2240417; Tue, 5 Oct 2021 12:37:24 +0000 (UTC) From: Efraim Flashner To: guix-patches@gnu.org Subject: [PATCH] gnu: Add gr-framework. Date: Tue, 5 Oct 2021 15:34:43 +0300 Message-Id: X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.62.234.194; envelope-from=efraim@flashner.co.il; helo=flashner.co.il X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Efraim Flashner X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/graphics.scm (gr-framework): New variable. --- gnu/packages/graphics.scm | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 3f2be5766c..9a5e2f2195 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1254,6 +1254,56 @@ (define-public openscenegraph-3.4 `(("libjpeg" ,libjpeg-turbo) ,@(package-inputs openscenegraph))))) +(define-public gr-framework + (package + (name "gr-framework") + (version "0.58.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sciapp/gr") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q1rz4iyxbh0dc22y4w28ry3hr0yypdwdm6pw2zlwgjya7wkbvsw")) + (modules '((guix build utils))) + (snippet + '(begin + (delete-file-recursively "3rdparty") + #t)))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ; no test target + (inputs + `(("bzip2" ,bzip2) + ("cairo" ,cairo) + ("fontconfig" ,fontconfig) + ("ffmpeg" ,ffmpeg) + ("freetype" ,freetype) + ("ghostscript" ,ghostscript) + ("glfw" ,glfw) + ("libjpeg-turbo" ,libjpeg-turbo) + ("libpng" ,libpng) + ("libtiff" ,libtiff) + ("libx11" ,libx11) + ("libxft" ,libxft) + ("libxt" ,libxt) + ("pixman" ,pixman) + ("qtbase" ,qtbase-5) + ("qhull" ,qhull) + ("zlib" ,zlib))) + (home-page "https://gr-framework.org/") + (synopsis "Graphics library for visualisation applications") + (description "GR is a universal framework for cross-platform visualization +applications. It offers developers a compact, portable and consistent graphics +library for their programs. Applications range from publication quality 2D +graphs to the representation of complex 3D scenes. GR is essentially based on +an implementation of a @acronym{GKS, Graphical Kernel System}. As a +self-contained system it can quickly and easily be integrated into existing +applications (i.e. using the @code{ctypes} mechanism in Python or @code{ccall} +in Julia).") + (license license:expat))) (define-public openmw-openscenegraph ;; OpenMW prefers its own fork of openscenegraph: base-commit: b54bf075c577b9f78041362035383dbbfb456617 -- 2.33.0 ------------=_1634631542-8311-1--