Mon Feb 2 13:00:07 2015 UTC ()
Update ruby-rgl to 0.5.0.

2014-12 Release 0.5.0

This release mainly contains the contributions of Kirill, who added many algorithms to the library. Thank you Kirill!

 * @matiaskorhonen: Fixes the image paths in the README (#14)
 * @monora: Implicit graph example fails (#13)
 * @KL-7: Implement Graph#bipartite_sets. (#12)
 * @monora:  syntax error in dot file for undirected graph (#11)
 * @KL-7: Edmonds-Karp algorithm for maximum flow (#10)
 * @KL-7: Prim's algorithm for minimum spanning tree (#9)
 * @carlosantoniodasilva: Run tests on Ruby 2.0 and remove deprecation warning (#8)
 * @KL-7: Bellman-Ford shortest paths algorithm (#7)
 * @KL-7: Minor improvements (asserts) for Dijkstra algorithm (#6)
 * @KL-7: Add Dijkstra shortest path algorithm. (#5)
 * @KL-7: Indentation and whitespaces clean up of examples (#4)
 * @KL-7: Travis configuration and README updates (#3)
 * @KL-7: Code clean up and configuration updates (#2)
 * @aschoerk: Renamed test-directory, (includes Rakefile), fixed TestComponents (#1)


(taca)
diff -r1.4 -r1.5 pkgsrc/devel/ruby-rgl/Makefile
diff -r1.4 -r1.5 pkgsrc/devel/ruby-rgl/PLIST
diff -r1.3 -r1.4 pkgsrc/devel/ruby-rgl/distinfo

cvs diff -r1.4 -r1.5 pkgsrc/devel/ruby-rgl/Makefile (expand / switch to context diff)
--- pkgsrc/devel/ruby-rgl/Makefile 2010/09/10 06:21:16 1.4
+++ pkgsrc/devel/ruby-rgl/Makefile 2015/02/02 13:00:07 1.5
@@ -1,13 +1,16 @@
-# $NetBSD: Makefile,v 1.4 2010/09/10 06:21:16 taca Exp $
+# $NetBSD: Makefile,v 1.5 2015/02/02 13:00:07 taca Exp $
 
-DISTNAME=	rgl-0.4.0
+DISTNAME=	rgl-0.5.0
 CATEGORIES=	devel
 
 MAINTAINER=	minskim@NetBSD.org
 HOMEPAGE=	http://rgl.rubyforge.org/
 COMMENT=	Framework for graph data structures and algorithms
 
+DEPENDS+=	${RUBY_PKGPREFIX}-algorithms>=0.5.0:../../devel/ruby-stream
 DEPENDS+=	${RUBY_PKGPREFIX}-stream>=0.5:../../devel/ruby-stream
+
+OVERRIDE_GEMSPEC+= algorithms>=0.5.0
 
 .include "../../lang/ruby/gem.mk"
 .include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/devel/ruby-rgl/PLIST (expand / switch to context diff)
--- pkgsrc/devel/ruby-rgl/PLIST 2010/09/10 06:21:16 1.4
+++ pkgsrc/devel/ruby-rgl/PLIST 2015/02/02 13:00:07 1.5
@@ -1,13 +1,16 @@
-@comment $NetBSD: PLIST,v 1.4 2010/09/10 06:21:16 taca Exp $
+@comment $NetBSD: PLIST,v 1.5 2015/02/02 13:00:07 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/ChangeLog
-${GEM_LIBDIR}/README
+${GEM_LIBDIR}/Gemfile
+${GEM_LIBDIR}/README.rdoc
 ${GEM_LIBDIR}/Rakefile
 ${GEM_LIBDIR}/examples/canvas.rb
-${GEM_LIBDIR}/examples/example.jpg
 ${GEM_LIBDIR}/examples/examples.rb
-${GEM_LIBDIR}/examples/insel-der-tausend-gefahren.rb
-${GEM_LIBDIR}/examples/module_graph.jpg
+${GEM_LIBDIR}/examples/graph.dot
+${GEM_LIBDIR}/examples/images/example.jpg
+${GEM_LIBDIR}/examples/images/module_graph.jpg
+${GEM_LIBDIR}/examples/images/rgl_modules.png
+${GEM_LIBDIR}/examples/insel_der_tausend_gefahren.rb
 ${GEM_LIBDIR}/examples/north.rb
 ${GEM_LIBDIR}/examples/north/Graph.log
 ${GEM_LIBDIR}/examples/north/g.10.0.graphml
@@ -78,34 +81,50 @@
 ${GEM_LIBDIR}/examples/north/g.14.9.graphml
 ${GEM_LIBDIR}/examples/north2.rb
 ${GEM_LIBDIR}/examples/rdep-rgl.rb
-${GEM_LIBDIR}/install.rb
 ${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/bipartite.rb
 ${GEM_LIBDIR}/lib/rgl/condensation.rb
 ${GEM_LIBDIR}/lib/rgl/connected_components.rb
+${GEM_LIBDIR}/lib/rgl/dijkstra.rb
+${GEM_LIBDIR}/lib/rgl/dijkstra_visitor.rb
 ${GEM_LIBDIR}/lib/rgl/dot.rb
+${GEM_LIBDIR}/lib/rgl/edge_properties_map.rb
+${GEM_LIBDIR}/lib/rgl/edmonds_karp.rb
 ${GEM_LIBDIR}/lib/rgl/enumerable_ext.rb
+${GEM_LIBDIR}/lib/rgl/graph_iterator.rb
+${GEM_LIBDIR}/lib/rgl/graph_visitor.rb
+${GEM_LIBDIR}/lib/rgl/graph_wrapper.rb
 ${GEM_LIBDIR}/lib/rgl/graphxml.rb
 ${GEM_LIBDIR}/lib/rgl/implicit.rb
 ${GEM_LIBDIR}/lib/rgl/mutable.rb
+${GEM_LIBDIR}/lib/rgl/path_builder.rb
+${GEM_LIBDIR}/lib/rgl/prim.rb
 ${GEM_LIBDIR}/lib/rgl/rdot.rb
 ${GEM_LIBDIR}/lib/rgl/topsort.rb
 ${GEM_LIBDIR}/lib/rgl/transitiv_closure.rb
 ${GEM_LIBDIR}/lib/rgl/transitivity.rb
 ${GEM_LIBDIR}/lib/rgl/traversal.rb
 ${GEM_LIBDIR}/rakelib/dep_graph.rake
-${GEM_LIBDIR}/tests/TestComponents.rb
-${GEM_LIBDIR}/tests/TestCycles.rb
-${GEM_LIBDIR}/tests/TestDirectedGraph.rb
-${GEM_LIBDIR}/tests/TestDot.rb
-${GEM_LIBDIR}/tests/TestEdge.rb
-${GEM_LIBDIR}/tests/TestGraph.rb
-${GEM_LIBDIR}/tests/TestGraphXML.rb
-${GEM_LIBDIR}/tests/TestImplicit.rb
-${GEM_LIBDIR}/tests/TestRdot.rb
-${GEM_LIBDIR}/tests/TestTransitivity.rb
-${GEM_LIBDIR}/tests/TestTraversal.rb
-${GEM_LIBDIR}/tests/TestUnDirectedGraph.rb
-${GEM_LIBDIR}/tests/test_helper.rb
+${GEM_LIBDIR}/test/bellman_ford_test.rb
+${GEM_LIBDIR}/test/bipartite_test.rb
+${GEM_LIBDIR}/test/components_test.rb
+${GEM_LIBDIR}/test/cycles_test.rb
+${GEM_LIBDIR}/test/dijkstra_test.rb
+${GEM_LIBDIR}/test/directed_graph_test.rb
+${GEM_LIBDIR}/test/dot_test.rb
+${GEM_LIBDIR}/test/edge_properties_map_test.rb
+${GEM_LIBDIR}/test/edge_test.rb
+${GEM_LIBDIR}/test/edmonds_karp_test.rb
+${GEM_LIBDIR}/test/graph_test.rb
+${GEM_LIBDIR}/test/graph_xml_test.rb
+${GEM_LIBDIR}/test/implicit_test.rb
+${GEM_LIBDIR}/test/prim_test.rb
+${GEM_LIBDIR}/test/rdot_test.rb
+${GEM_LIBDIR}/test/test_helper.rb
+${GEM_LIBDIR}/test/transitivity_test.rb
+${GEM_LIBDIR}/test/traversal_test.rb
+${GEM_LIBDIR}/test/undirected_graph_test.rb
 ${GEM_HOME}/specifications/${GEM_NAME}.gemspec

cvs diff -r1.3 -r1.4 pkgsrc/devel/ruby-rgl/distinfo (expand / switch to context diff)
--- pkgsrc/devel/ruby-rgl/distinfo 2010/09/10 06:21:17 1.3
+++ pkgsrc/devel/ruby-rgl/distinfo 2015/02/02 13:00:07 1.4
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2010/09/10 06:21:17 taca Exp $
+$NetBSD: distinfo,v 1.4 2015/02/02 13:00:07 taca Exp $
 
-SHA1 (rgl-0.4.0.gem) = 658a061caf0b3ee9cc3687e7e6e59a40ee6d3fd1
+SHA1 (rgl-0.5.0.gem) = 4bd42d7dab7158b7f2ae9f83a9b51ab8e949793d
-RMD160 (rgl-0.4.0.gem) = 022921b4deb07bfc2f040dc9820e867e688a505b
+RMD160 (rgl-0.5.0.gem) = 7b02a70a87dd4c8ab92ff8336366b235de3421af
-Size (rgl-0.4.0.gem) = 74240 bytes
+Size (rgl-0.5.0.gem) = 235008 bytes