[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65131] [PATCH 07/32] gnu: Add ruby-pairing-heap.
From: |
Hartmut Goebel |
Subject: |
[bug#65131] [PATCH 07/32] gnu: Add ruby-pairing-heap. |
Date: |
Mon, 7 Aug 2023 20:26:11 +0200 |
* gnu/packages/ruby.scm (ruby-pairing-heap): New variable.
---
gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index e80b1dbaf2..6988cb40a2 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12012,6 +12012,32 @@ dependency, @code{pg}.")
(home-page "https://github.com/QueueClassic/queue_classic")
(license license:expat)))
+(define-public ruby-pairing-heap
+ (package
+ (name "ruby-pairing-heap")
+ (version "3.0.1")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "pairing_heap" version))
+ (sha256
+ (base32
+ "15c97yvzkfhy7glsdza48sswidjyjphdx62yjapbrs5fzf0089id"))))
+ (build-system ruby-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch
+ (lambda _
+ (substitute* "Rakefile"
+ (("require \"standard/rake\"") "")
+ ((":\"standard:fix\",") "")))))))
+ (synopsis "Priority queue in pure Ruby")
+ (description "This package provides a performant priority queue in pure
+ruby with support for changing priority using pairing heap data structure")
+ (home-page "https://github.com/mhib/pairing_heap")
+ (license license:expat)))
+
(define-public ruby-ae
(package
(name "ruby-ae")
--
2.30.9
- [bug#65131] [PATCH 00/32] Add vagrant, some vagrant plugins and required ruby modules, Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 01/32] gnu: Add ruby-excon., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 02/32] gnu: Add ruby-ipaddr., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 04/32] gnu: Add ruby-fake-ftp., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 06/32] gnu: Add ruby-net-telnet., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 07/32] gnu: Add ruby-pairing-heap.,
Hartmut Goebel <=
- [bug#65131] [PATCH 03/32] gnu: Add ruby-net-ftp., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 05/32] gnu: Add ruby-net-sftp., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 09/32] gnu: Add ruby-stream., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 08/32] gnu: Add ruby-stringio., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 10/32] gnu: Add ruby-rgl., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 11/32] gnu: Add ruby-sfl., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 12/32] gnu: Add ruby-specinfra., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 16/32] gnu: Add ruby-googleapis-common-protos-types., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 18/32] gnu: Add ruby-vagrant-cloud., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 13/32] gnu: Add ruby-serverspec., Hartmut Goebel, 2023/08/07