guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: Add JUBE.


From: guix-commits
Subject: 03/03: gnu: Add JUBE.
Date: Fri, 23 Aug 2019 12:42:08 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9dd5f4752844c1445fd1b1dd3927ca8e9e4f8abd
Author: Ludovic Courtès <address@hidden>
Date:   Fri Aug 23 18:41:05 2019 +0200

    gnu: Add JUBE.
    
    * gnu/packages/python-xyz.scm (jube): New variable.
    
    Co-authored-by: Florent Pruvost <address@hidden>
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6f4c3b7..135ff05 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16089,3 +16089,28 @@ The library has a number of built-in tilesets from 
OpenStreetMap, Mapbox, and
 Stamen, and supports custom tilesets with Mapbox or Cloudmade API keys.  It
 supports Image, Video, GeoJSON and TopoJSON overlays.")
     (license license:expat)))
+
+(define-public jube
+  (package
+    ;; This is a command-line tool, so no "python-" prefix.
+    (name "jube")
+    (version "2.2.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    
"http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version=";
+                    version))
+              (sha256
+               (base32
+                "0xq4k1q63s1p6swgyp61vahlrd1fqmgbm0gm5kpj8ikwy0yc0nqk"))
+              (file-name (string-append "jube-" version ".tar.gz"))))
+    (build-system python-build-system)
+    (home-page "https://apps.fz-juelich.de/jsc/jube/jube2/docu/index.html";)
+    (synopsis "Benchmarking environment")
+    (description
+     "JUBE helps perform and analyze benchmarks in a systematic way.  For each
+benchmarked application, benchmark data is stored in a format that allows JUBE
+to deduct the desired information.  This data can be parsed by automatic pre-
+and post-processing scripts that draw information and store it more densely
+for manual interpretation.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]