all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 61611@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#61611] [PATCH 07/10] gnu: Add julia-lightgraphs.
Date: Sun, 19 Feb 2023 00:04:50 +0000	[thread overview]
Message-ID: <20230219000453.20559-7-sharlatanus@gmail.com> (raw)
In-Reply-To: <20230219000453.20559-1-sharlatanus@gmail.com>

* gnu/packages/julia-xyz.scm (julia-lightgraphs): New variable.
---
 gnu/packages/julia-xyz.scm | 69 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 69 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index aaaa4afa0e..1d88c09647 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -3689,6 +3689,75 @@ (define-public julia-leapseconds
 is the number of leap seconds.")
     (license license:expat)))
 
+(define-public julia-lightgraphs
+  (package
+    (name "julia-lightgraphs")
+    (version "1.3.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/sbromberger/LightGraphs.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ygnbzx32b9ciwgg0rn5i0m33dvrb6dh3an6bnmzac1w67sy2vxq"))))
+    (build-system julia-build-system)
+    (arguments
+     (list
+       #:phases
+       #~(modify-phases %standard-phases
+           ;; FIXME: 8x tests fails adjusting for now.
+           ;; ERROR: LoadError: Some tests did not pass: 29548 passed, 0 failed,
+           ;; 8 errored, 0 broken.
+           (add-after 'unpack 'adjust-tests
+             (lambda _
+               (substitute* "test/runtests.jl"
+                 ;; Got exception outside of a @test BoundsError: attempt to
+                 ;; access 1-element Vector{SubString{String}} at index [2]
+                 ((".*degeneracy.*") "")
+                 ;; Got exception outside of a @test type DataType has no field
+                 ;; mutable
+                 ((".*shortestpaths.*") ""))
+               (substitute* "test/experimental/experimental.jl"
+                 ;; Got exception outside of a @test type DataType has no field mutable
+                 (("\"shortestpaths\",") ""))
+               (substitute* "test/linalg/runtests.jl"
+                 ;; ArgumentError: Illegal buffers for SparseMatrixCSC
+                 ;; construction 5 [1, 3, 5, 7, 9, 10] [1, 2, 1, 3, 2, 4, 3, 5,
+                 ;; 4] [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
+                 ;;
+                 ;;  ArgumentError: Illegal buffers for SparseMatrixCSC
+                 ;;  construction 5 UInt16[0x0001, 0x0003, 0x0005, 0x0007,
+                 ;;  0x0009, 0x000a] UInt16[0x0001, 0x0002, 0x0001, 0x0003,
+                 ;;  0x0002, 0x0004, 0x0003, 0x0005, 0x0004] [1, 1, 1, 1, 1, 1,
+                 ;;  1, 1, 1, 1]
+                 ;;
+                 ;;  ArgumentError: Illegal buffers for SparseMatrixCSC
+                 ;;  construction 5 Int32[1, 3, 5, 7, 9, 10] Int32[1, 2, 1, 3,
+                 ;;  2, 4, 3, 5, 4] [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
+                 ((".*spectral.*") ""))
+               (substitute* "test/parallel/runtests.jl"
+                 ;; Got exception outside of a @test type DataType has no field
+                 ;; mutable
+                 ((".*shortestpaths/johnson.*") "")
+                 ;; Got exception outside of a @test TaskFailedException nested
+                 ;; task error: On worker 2: UndefVarError: nv not defined
+                 ((".*utils.*") "")))))))
+    (propagated-inputs
+     (list julia-arnoldimethod
+           julia-datastructures
+           julia-inflate
+           julia-simpletraits))
+    (home-page "https://github.com/sbromberger/LightGraphs.jl")
+    (synopsis "Optimized graphs package for Julia")
+    (description
+     "LightGraphs offers both (a) a set of simple, concrete graph implementations --
+Graph (for undirected graphs) and DiGraph (for directed graphs), and (b) an API
+for the development of more sophisticated graph implementations under the
+AbstractGraph type.")
+    (license license:bsd-2)))
+
 (define-public julia-linesearches
   (package
     (name "julia-linesearches")
-- 
2.39.1





  parent reply	other threads:[~2023-02-19  0:07 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-19  0:03 [bug#61611] [PATCH 00/10]: gnu: Add julia-astrotime Sharlatan Hellseher
2023-02-19  0:04 ` [bug#61611] [PATCH 01/10] gnu: Add julia-leapseconds Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 02/10] gnu: Add julia-optionaldata Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 03/10] gnu: Add julia-remotefiles Sharlatan Hellseher
2023-03-08 17:37     ` Simon Tournier
2023-03-08 23:26       ` Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 04/10] gnu: Add julia-earthorientation Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 05/10] gnu: Add julia-inflate Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 06/10] gnu: Add julia-arnoldimethod Sharlatan Hellseher
2023-02-19  0:04   ` Sharlatan Hellseher [this message]
2023-02-19  0:04   ` [bug#61611] [PATCH 08/10] gnu: Add julia-itemgraphs Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 09/10] gnu: Add julia-muladdmacro Sharlatan Hellseher
2023-02-19  0:04   ` [bug#61611] [PATCH 10/10] gnu: Add julia-astrotime Sharlatan Hellseher
2023-03-03 13:24 ` bug#61611: [PATCH 00/10]: " Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230219000453.20559-7-sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=61611@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.