GNU bug report logs - #51109
[PATCH] gnu: Add gplates.

Previous Next

Package: guix-patches;

Reported by: Julien Lepiller <julien <at> lepiller.eu>

Date: Sat, 9 Oct 2021 13:26:02 UTC

Severity: normal

Tags: patch

Done: Julien Lepiller <julien <at> lepiller.eu>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 51109 in the body.
You can then email your comments to 51109 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#51109; Package guix-patches. (Sat, 09 Oct 2021 13:26:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Julien Lepiller <julien <at> lepiller.eu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 09 Oct 2021 13:26:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Julien Lepiller <julien <at> lepiller.eu>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add gplates.
Date: Sat,  9 Oct 2021 15:25:20 +0200
* gnu/packages/geo.scm (gplates): New variable.
---
 gnu/packages/geo.scm | 43 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 42 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
index 9d4a1a8955..c8388b1308 100644
--- a/gnu/packages/geo.scm
+++ b/gnu/packages/geo.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2018 Ricardo Wurmus <rekado <at> elephly.net>
 ;;; Copyright © 2018, 2019 Arun Isaac <arunisaac <at> systemreboot.net>
 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua <at> nextjournal.com>
-;;; Copyright © 2018, 2019, 2020 Julien Lepiller <julien <at> lepiller.eu>
+;;; Copyright © 2018, 2019, 2020, 2021 Julien Lepiller <julien <at> lepiller.eu>
 ;;; Copyright © 2019, 2020, 2021 Guillaume Le Vaillant <glv <at> posteo.net>
 ;;; Copyright © 2019, 2020, 2021 Efraim Flashner <efraim <at> flashner.co.il>
 ;;; Copyright © 2019, 2021 Wiktor Żelazny <wzelazny <at> vurv.cz>
@@ -75,6 +75,7 @@
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages gps)
+  #:use-module (gnu packages graphics)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages haskell-apps)
   #:use-module (gnu packages image)
@@ -84,6 +85,7 @@
   #:use-module (gnu packages kde)
   #:use-module (gnu packages lua)
   #:use-module (gnu packages maths)
+  #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages pdf)
   #:use-module (gnu packages perl)
@@ -2469,3 +2471,42 @@ becomes a world atlas, while OpenStreetMap takes the user to street level.  It
 supports searching for places of interest, viewing Wikipedia articles,
 creating routes by drag and drop and more.")
       (license license:gpl3))))
+
+(define-public gplates
+  (package
+    (name "gplates")
+    (version "2.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri "https://www.earthbyte.org/download/8421/")
+              (file-name (string-append name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "0lrcmcxc924ixddii8cyglqlwwxvk7f00g4yzbss5i3fgcbh8n96"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:configure-flags (list "-DBoost_NO_BOOST_CMAKE=ON")
+       #:tests? #f)) ;no test target
+    (inputs
+     `(("boost" ,boost)
+       ("cgal" ,cgal)
+       ("gdal" ,gdal)
+       ("glew" ,glew)
+       ("glu" ,glu)
+       ("gmp" ,gmp)
+       ("mesa" ,mesa)
+       ("mpfr" ,mpfr)
+       ("proj" ,proj)
+       ("python-3" ,python-3)
+       ("python-numpy" ,python-numpy)
+       ("qt" ,qtbase-5)
+       ("qtsvg" ,qtsvg)
+       ("qtxmlpatterns" ,qtxmlpatterns)
+       ("qwt" ,qwt)
+       ("zlib" ,zlib)))
+    (home-page "https://www.gplates.org")
+    (synopsis "Plate tectonics simulation program")
+    (description "GPlates is a plate tectonics program.  Manipulate
+reconstructions of geological and paleogeographic features through geological
+time.  Interactively visualize vector, raster and volume data.")
+    (license license:gpl2+)))
-- 
2.33.0





Reply sent to Julien Lepiller <julien <at> lepiller.eu>:
You have taken responsibility. (Thu, 18 Nov 2021 23:04:02 GMT) Full text and rfc822 format available.

Notification sent to Julien Lepiller <julien <at> lepiller.eu>:
bug acknowledged by developer. (Thu, 18 Nov 2021 23:04:02 GMT) Full text and rfc822 format available.

Message #10 received at 51109-done <at> debbugs.gnu.org (full text, mbox):

From: Julien Lepiller <julien <at> lepiller.eu>
To: 51109-done <at> debbugs.gnu.org
Subject: Re: [bug#51109] [PATCH] gnu: Add gplates.
Date: Fri, 19 Nov 2021 00:02:54 +0100
Finally pushed to master as 08326f3d62085795e4860dbb88d6bd4b52230774.

Le Sat,  9 Oct 2021 15:25:20 +0200,
Julien Lepiller <julien <at> lepiller.eu> a écrit :

> * gnu/packages/geo.scm (gplates): New variable.
> ---
>  gnu/packages/geo.scm | 43 ++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 42 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm
> index 9d4a1a8955..c8388b1308 100644
> --- a/gnu/packages/geo.scm
> +++ b/gnu/packages/geo.scm
> @@ -6,7 +6,7 @@
>  ;;; Copyright © 2018 Ricardo Wurmus <rekado <at> elephly.net>
>  ;;; Copyright © 2018, 2019 Arun Isaac <arunisaac <at> systemreboot.net>
>  ;;; Copyright © 2018 Joshua Sierles, Nextjournal
> <joshua <at> nextjournal.com> -;;; Copyright © 2018, 2019, 2020 Julien
> Lepiller <julien <at> lepiller.eu> +;;; Copyright © 2018, 2019, 2020, 2021
> Julien Lepiller <julien <at> lepiller.eu> ;;; Copyright © 2019, 2020, 2021
> Guillaume Le Vaillant <glv <at> posteo.net> ;;; Copyright © 2019, 2020,
> 2021 Efraim Flashner <efraim <at> flashner.co.il> ;;; Copyright © 2019,
> 2021 Wiktor Żelazny <wzelazny <at> vurv.cz> @@ -75,6 +75,7 @@
>    #:use-module (gnu packages glib)
>    #:use-module (gnu packages gnome)
>    #:use-module (gnu packages gps)
> +  #:use-module (gnu packages graphics)
>    #:use-module (gnu packages gtk)
>    #:use-module (gnu packages haskell-apps)
>    #:use-module (gnu packages image)
> @@ -84,6 +85,7 @@
>    #:use-module (gnu packages kde)
>    #:use-module (gnu packages lua)
>    #:use-module (gnu packages maths)
> +  #:use-module (gnu packages multiprecision)
>    #:use-module (gnu packages pcre)
>    #:use-module (gnu packages pdf)
>    #:use-module (gnu packages perl)
> @@ -2469,3 +2471,42 @@ becomes a world atlas, while OpenStreetMap
> takes the user to street level.  It supports searching for places of
> interest, viewing Wikipedia articles, creating routes by drag and
> drop and more.") (license license:gpl3))))
> +
> +(define-public gplates
> +  (package
> +    (name "gplates")
> +    (version "2.3.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri "https://www.earthbyte.org/download/8421/")
> +              (file-name (string-append name "-" version ".tar.bz2"))
> +              (sha256
> +               (base32
> +
> "0lrcmcxc924ixddii8cyglqlwwxvk7f00g4yzbss5i3fgcbh8n96"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     `(#:configure-flags (list "-DBoost_NO_BOOST_CMAKE=ON")
> +       #:tests? #f)) ;no test target
> +    (inputs
> +     `(("boost" ,boost)
> +       ("cgal" ,cgal)
> +       ("gdal" ,gdal)
> +       ("glew" ,glew)
> +       ("glu" ,glu)
> +       ("gmp" ,gmp)
> +       ("mesa" ,mesa)
> +       ("mpfr" ,mpfr)
> +       ("proj" ,proj)
> +       ("python-3" ,python-3)
> +       ("python-numpy" ,python-numpy)
> +       ("qt" ,qtbase-5)
> +       ("qtsvg" ,qtsvg)
> +       ("qtxmlpatterns" ,qtxmlpatterns)
> +       ("qwt" ,qwt)
> +       ("zlib" ,zlib)))
> +    (home-page "https://www.gplates.org")
> +    (synopsis "Plate tectonics simulation program")
> +    (description "GPlates is a plate tectonics program.  Manipulate
> +reconstructions of geological and paleogeographic features through
> geological +time.  Interactively visualize vector, raster and volume
> data.")
> +    (license license:gpl2+)))





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 17 Dec 2021 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 92 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.