summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaca <taca>2010-09-10 06:21:16 +0000
committertaca <taca>2010-09-10 06:21:16 +0000
commitb6bc59d662ff4182fcb63c9645288848ddb8bbda (patch)
tree86fef872ab741214ff3d35dd4ab6b7f795dfa3ce
parentb7b8649520bc94249a5af71238f40cc0226445f1 (diff)
downloadpkgsrc-b6bc59d662ff4182fcb63c9645288848ddb8bbda.tar.gz
Update devel/ruby-rgl pacakge to 0.4.0.
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2008-08-28 01:36 javanthropus * ChangeLog (tags: REL_0_4_0): pre-tag commit 2008-08-28 01:36 javanthropus * Rakefile (tags: REL_0_4_0): Update rdoc2rf task to use rsync and more generic remote path specification 2008-08-27 23:30 javanthropus * lib/rgl/base.rb (tags: REL_0_4_0): Preparing for 0.4.0 release 2008-08-26 20:07 javanthropus * lib/rgl/dot.rb, lib/rgl/rdot.rb, tests/TestRdot.rb: Move the DOT module into the RGL module * This eliminates a class conflict with the DOT module from rdoc when building RGL's documentation * Also remove the superfluous DOT prefixes from class names in the DOT module 2008-08-24 06:16 javanthropus * Rakefile: Remove some comments I accidentally left in while testing rdoc functionality 2008-08-24 06:03 javanthropus * Rakefile, lib/rgl/transitiv_closure.rb, lib/rgl/transitivity.rb, tests/TestTransitiveClosure.rb, tests/TestTransitivity.rb: Feature 21641: Added transitive reduction functionality * Updated the gem description to announce this functionality * Moved the transitive closure functionality into the transitivity.rb file along with the transitive reduction funtionality * Modifed the transitiv_closure.rb file to simply load the transitivity.rb file for backward compatibility * Moved all transitivity tests into TestTransitivity.rb 2008-08-23 15:45 javanthropus * lib/rgl/condensation.rb, lib/rgl/transitiv_closure.rb, tests/TestTransitiveClosure.rb: Defect 21630: Fixed transitive closure * The fix is based on the algorithm described in the documentation for the implementation of transitive closure in Boost * Along with the fix, performance is improved to O(|V||E|) * This implementation needs graph condensation, so that function was added as well * More tests were added to cover more corner cases 2008-08-23 05:40 javanthropus * tests/TestGraph.rb: Update basic graph tests to account for graphs with edgeless vertices Also clean up some minor formatting and assertion issues 2008-08-23 05:37 javanthropus * lib/rgl/adjacency.rb: Defect 21609: Fix the to_adjacency method to preserve edgeless vertices 2008-03-18 15:03 javanthropus * lib/rgl/rdot.rb, tests/TestRdot.rb: More reliably detect and handle newlines embedded within IDs and labels
-rw-r--r--devel/ruby-rgl/Makefile7
-rw-r--r--devel/ruby-rgl/PLIST10
-rw-r--r--devel/ruby-rgl/distinfo8
3 files changed, 13 insertions, 12 deletions
diff --git a/devel/ruby-rgl/Makefile b/devel/ruby-rgl/Makefile
index 24f628f47b9..5592ea34891 100644
--- a/devel/ruby-rgl/Makefile
+++ b/devel/ruby-rgl/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2008/04/04 15:18:28 jlam Exp $
+# $NetBSD: Makefile,v 1.4 2010/09/10 06:21:16 taca Exp $
-DISTNAME= rgl-0.3.1
-PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
+DISTNAME= rgl-0.4.0
CATEGORIES= devel
MAINTAINER= minskim@NetBSD.org
@@ -10,5 +9,5 @@ COMMENT= Framework for graph data structures and algorithms
DEPENDS+= ${RUBY_PKGPREFIX}-stream>=0.5:../../devel/ruby-stream
-.include "../../misc/rubygems/rubygem.mk"
+.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/ruby-rgl/PLIST b/devel/ruby-rgl/PLIST
index b48831d1619..2b5258317bf 100644
--- a/devel/ruby-rgl/PLIST
+++ b/devel/ruby-rgl/PLIST
@@ -1,5 +1,5 @@
-@comment $NetBSD: PLIST,v 1.3 2009/06/14 17:49:12 joerg Exp $
-${GEM_HOME}/cache/rgl-${PKGVERSION}.gem
+@comment $NetBSD: PLIST,v 1.4 2010/09/10 06:21:16 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/ChangeLog
${GEM_LIBDIR}/README
${GEM_LIBDIR}/Rakefile
@@ -82,6 +82,7 @@ ${GEM_LIBDIR}/install.rb
${GEM_LIBDIR}/lib/rgl/adjacency.rb
${GEM_LIBDIR}/lib/rgl/base.rb
${GEM_LIBDIR}/lib/rgl/bidirectional.rb
+${GEM_LIBDIR}/lib/rgl/condensation.rb
${GEM_LIBDIR}/lib/rgl/connected_components.rb
${GEM_LIBDIR}/lib/rgl/dot.rb
${GEM_LIBDIR}/lib/rgl/enumerable_ext.rb
@@ -91,6 +92,7 @@ ${GEM_LIBDIR}/lib/rgl/mutable.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
@@ -102,8 +104,8 @@ ${GEM_LIBDIR}/tests/TestGraph.rb
${GEM_LIBDIR}/tests/TestGraphXML.rb
${GEM_LIBDIR}/tests/TestImplicit.rb
${GEM_LIBDIR}/tests/TestRdot.rb
-${GEM_LIBDIR}/tests/TestTransitiveClosure.rb
+${GEM_LIBDIR}/tests/TestTransitivity.rb
${GEM_LIBDIR}/tests/TestTraversal.rb
${GEM_LIBDIR}/tests/TestUnDirectedGraph.rb
${GEM_LIBDIR}/tests/test_helper.rb
-${GEM_HOME}/specifications/rgl-${PKGVERSION}.gemspec
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff --git a/devel/ruby-rgl/distinfo b/devel/ruby-rgl/distinfo
index d2f333b1fe8..861ed58e12e 100644
--- a/devel/ruby-rgl/distinfo
+++ b/devel/ruby-rgl/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2008/04/04 15:18:28 jlam Exp $
+$NetBSD: distinfo,v 1.3 2010/09/10 06:21:17 taca Exp $
-SHA1 (rgl-0.3.1.gem) = cbdb140e2e537f5fd983c7285661727afd496ac6
-RMD160 (rgl-0.3.1.gem) = 477123460a68463c0179a7ab8866610897b92e42
-Size (rgl-0.3.1.gem) = 70656 bytes
+SHA1 (rgl-0.4.0.gem) = 658a061caf0b3ee9cc3687e7e6e59a40ee6d3fd1
+RMD160 (rgl-0.4.0.gem) = 022921b4deb07bfc2f040dc9820e867e688a505b
+Size (rgl-0.4.0.gem) = 74240 bytes