pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/ruby-rgl



Module Name:    pkgsrc
Committed By:   taca
Date:           Thu Feb 23 14:57:56 UTC 2023

Modified Files:
        pkgsrc/devel/ruby-rgl: Makefile PLIST distinfo

Log Message:
devel/ruby-rgl: update to 0.6.0

0.6.0 (2023-02-22)

What's Changed

* feat: implement bidirectional adjacency graph #78. New class
  BidirectionalAdjacencyGraph which implements the protocol defined in
  module BidirectionalGraph.

* Bump actions/configure-pages from 2 to 3 by @dependabot in #74

* Fix: codeclimate badge by @monora in #77

* fix(doc): #79 class comments in generated doc by @monora in #80


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/ruby-rgl/Makefile \
    pkgsrc/devel/ruby-rgl/distinfo
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/ruby-rgl/PLIST

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/ruby-rgl/Makefile
diff -u pkgsrc/devel/ruby-rgl/Makefile:1.16 pkgsrc/devel/ruby-rgl/Makefile:1.17
--- pkgsrc/devel/ruby-rgl/Makefile:1.16 Tue Jan  3 05:56:21 2023
+++ pkgsrc/devel/ruby-rgl/Makefile      Thu Feb 23 14:57:56 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2023/01/03 05:56:21 taca Exp $
+# $NetBSD: Makefile,v 1.17 2023/02/23 14:57:56 taca Exp $
 
-DISTNAME=      rgl-0.5.10
+DISTNAME=      rgl-0.6.0
 CATEGORIES=    devel
 
 MAINTAINER=    minskim%NetBSD.org@localhost
@@ -9,7 +9,7 @@ COMMENT=        Framework for graph data struct
 LICENSE=       ruby-license
 
 DEPENDS+=      ${RUBY_PKGPREFIX}-stream>=0.5.3:../../devel/ruby-stream
-DEPENDS+=      ${RUBY_PKGPREFIX}-lazy_priority_queue>0.1.0<0.2:../../devel/ruby-lazy_priority_queue
+DEPENDS+=      ${RUBY_PKGPREFIX}-pairing_heap>=0.3.0:../../devel/ruby-pairing_heap
 # Ruby 2.7 and later have rexml 3.2 or later.
 #DEPENDS+=     ${RUBY_PKGPREFIX}-rexml>=3.2<4:../../textproc/ruby-rexml
 
Index: pkgsrc/devel/ruby-rgl/distinfo
diff -u pkgsrc/devel/ruby-rgl/distinfo:1.16 pkgsrc/devel/ruby-rgl/distinfo:1.17
--- pkgsrc/devel/ruby-rgl/distinfo:1.16 Tue Jan  3 05:56:21 2023
+++ pkgsrc/devel/ruby-rgl/distinfo      Thu Feb 23 14:57:56 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.16 2023/01/03 05:56:21 taca Exp $
+$NetBSD: distinfo,v 1.17 2023/02/23 14:57:56 taca Exp $
 
-BLAKE2s (rgl-0.5.10.gem) = 76c55274e5431f06c7bf1f074b5b1703d087d018c4d5d015dab5c20390138339
-SHA512 (rgl-0.5.10.gem) = 6d3a76cac1322c97bc1989c8c50de4b4f3edf22f8a1604cafb5573bab8e43ad76ea8541f57554035148aa11e7aad418cd71325bec6dfe2e34d6632ea735e6e6f
-Size (rgl-0.5.10.gem) = 67072 bytes
+BLAKE2s (rgl-0.6.0.gem) = 0c6c26c9bc93afde356581e79182dfb37f5bad3cabbc2a83128c88062d9a54bf
+SHA512 (rgl-0.6.0.gem) = 7da90734597fd726251790edc34db4204f9aed40b694e5ce18676d7767d8676a8e32d8431d34d7ac71c8667067c568173c6029c99376e548b9497e618fdcb327
+Size (rgl-0.6.0.gem) = 68096 bytes

Index: pkgsrc/devel/ruby-rgl/PLIST
diff -u pkgsrc/devel/ruby-rgl/PLIST:1.11 pkgsrc/devel/ruby-rgl/PLIST:1.12
--- pkgsrc/devel/ruby-rgl/PLIST:1.11    Tue Jan  3 05:56:21 2023
+++ pkgsrc/devel/ruby-rgl/PLIST Thu Feb 23 14:57:56 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2023/01/03 05:56:21 taca Exp $
+@comment $NetBSD: PLIST,v 1.12 2023/02/23 14:57:56 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/ChangeLog
 ${GEM_LIBDIR}/Gemfile
@@ -83,6 +83,7 @@ ${GEM_LIBDIR}/lib/rgl/adjacency.rb
 ${GEM_LIBDIR}/lib/rgl/base.rb
 ${GEM_LIBDIR}/lib/rgl/bellman_ford.rb
 ${GEM_LIBDIR}/lib/rgl/bidirectional.rb
+${GEM_LIBDIR}/lib/rgl/bidirectional_adjacency.rb
 ${GEM_LIBDIR}/lib/rgl/bipartite.rb
 ${GEM_LIBDIR}/lib/rgl/condensation.rb
 ${GEM_LIBDIR}/lib/rgl/connected_components.rb
@@ -107,6 +108,7 @@ ${GEM_LIBDIR}/lib/rgl/transitivity.rb
 ${GEM_LIBDIR}/lib/rgl/traversal.rb
 ${GEM_LIBDIR}/rakelib/dep_graph.rake
 ${GEM_LIBDIR}/test/bellman_ford_test.rb
+${GEM_LIBDIR}/test/bidirectional_graph_test.rb
 ${GEM_LIBDIR}/test/bipartite_test.rb
 ${GEM_LIBDIR}/test/components_test.rb
 ${GEM_LIBDIR}/test/cycles_test.rb



Home | Main Index | Thread Index | Old Index