[Pkg-ruby-extras-maintainers] r895 - in tools/ruby-pkg-tools/trunk: bin debian

Ari Pollak ari at costa.debian.org
Sat Oct 7 18:25:56 UTC 2006


Author: ari
Date: 2006-10-07 18:25:56 +0000 (Sat, 07 Oct 2006)
New Revision: 895

Modified:
   tools/ruby-pkg-tools/trunk/bin/dh_rdoc
   tools/ruby-pkg-tools/trunk/debian/changelog
Log:
* In dh_rdoc, read entire .rdoc file instead of just one line

Modified: tools/ruby-pkg-tools/trunk/bin/dh_rdoc
===================================================================
--- tools/ruby-pkg-tools/trunk/bin/dh_rdoc	2006-10-07 16:21:36 UTC (rev 894)
+++ tools/ruby-pkg-tools/trunk/bin/dh_rdoc	2006-10-07 18:25:56 UTC (rev 895)
@@ -34,7 +34,8 @@
     my @dirs = ('lib');
     if (-r $config) {
         open F, $config;
-        @dirs = split(/\s/, <F>);
+		local $/;
+        @dirs = split(/\s/s, <F>);
         close F;
     }
     doit(qw(rdoc --all --inline-source --diagram --fileboxes --line-numbers --fmt=html -o), $doc_dir, @dirs);

Modified: tools/ruby-pkg-tools/trunk/debian/changelog
===================================================================
--- tools/ruby-pkg-tools/trunk/debian/changelog	2006-10-07 16:21:36 UTC (rev 894)
+++ tools/ruby-pkg-tools/trunk/debian/changelog	2006-10-07 18:25:56 UTC (rev 895)
@@ -8,8 +8,9 @@
     have watch files.
   * Fix DEB_RUBY_ARCHDIR in ruby-common.mk to call the current ruby version
     instead of just ruby, so installing an extension will work with ruby 1.9.
+  * In dh_rdoc, read entire .rdoc file instead of just one line
 
- -- Ari Pollak <ari at debian.org>  Sat,  7 Oct 2006 11:51:41 -0400
+ -- Ari Pollak <ari at debian.org>  Sat,  7 Oct 2006 14:24:50 -0400
 
 ruby-pkg-tools (0.11.1) unstable; urgency=low
 




More information about the pkg-ruby-extras-maintainers mailing list