2011-04-01 16:16:56 by Takahiro Kambe | Files touched by this commit (2) |
Log message: Fix more gemspec format. Fix build problem with ruby19-base. |
2010-09-26 14:14:22 by Takahiro Kambe | Files touched by this commit (2) |
Log message: Fix gemspec syntax to fix build problem with ruby19. Ruby 1.8's gem (misc/rubygems) contains a patch to allow such a wrong syntax of gemspec. (I don't think this patch is a good idea now.) Noted by joerg@ via private mail. |
2010-09-10 08:28:44 by Takahiro Kambe | Files touched by this commit (4) |
Log message: * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. * Ajust new ruby package's framework. |
2009-07-12 21:51:16 by Min Sik Kim | Files touched by this commit (1) |
Log message: Make sure that a .orig file is not installed. Noted by Hasso Tepper. |
2009-06-14 19:49:18 by Joerg Sonnenberger | Files touched by this commit (454) |
Log message: Remove @dirrm entries from PLISTs |
2009-06-12 15:26:02 by Takahiro Kambe | Files touched by this commit (2) |
Log message: Add a comment to last patch. |
2009-06-12 13:52:51 by Takahiro Kambe | Files touched by this commit (3) |
Log message: * Add LICENSE. * Fix homepage in gemspec file to pass newer Rubygems. No PKGREVISION bump since there is no change with built package. |
2008-04-04 17:30:02 by Johnny C. Lam | Files touched by this commit (98) |
Log message: Install as a gem using the pkgsrc rubygem.mk framework instead of directly into site_ruby. |
2006-05-04 03:29:57 by Min Sik Kim | Files touched by this commit (5) | ![]() |
Log message: Import ruby-stream. Module Stream defines an interface for external iterators. A stream can be seen as an iterator on a sequence of objects x1, ..., xn. The state of the stream is uniquely determined by the following methods: at_beginning?, at_end?, current, and peek. State changes are done with the following operations: set_to_begin, set_to_end, forward, and backward. |