[DRE-commits] r5770 - trunk/libsexp-processor-ruby/debian
Tobias Grimm
tiber-guest at alioth.debian.org
Sun Aug 15 20:59:27 UTC 2010
Author: tiber-guest
Date: 2010-08-15 20:59:27 +0000 (Sun, 15 Aug 2010)
New Revision: 5770
Modified:
trunk/libsexp-processor-ruby/debian/changelog
trunk/libsexp-processor-ruby/debian/control
trunk/libsexp-processor-ruby/debian/rules
Log:
* Load tests with absolute path - Ruby 1.9.2 doesn't include '.' in it's
load path anymore (Closes: #593026)
* Standards-Version: 3.9.1
* Fixed package description
Modified: trunk/libsexp-processor-ruby/debian/changelog
===================================================================
--- trunk/libsexp-processor-ruby/debian/changelog 2010-08-15 20:41:03 UTC (rev 5769)
+++ trunk/libsexp-processor-ruby/debian/changelog 2010-08-15 20:59:27 UTC (rev 5770)
@@ -1,3 +1,12 @@
+libsexp-processor-ruby (3.0.4-2) unstable; urgency=low
+
+ * Load tests with absolute path - Ruby 1.9.2 doesn't include '.' in it's
+ load path anymore (Closes: #593026)
+ * Standards-Version: 3.9.1
+ * Fixed package description
+
+ -- Tobias Grimm <etobi at debian.org> Sun, 15 Aug 2010 22:59:11 +0200
+
libsexp-processor-ruby (3.0.4-1) unstable; urgency=low
* New upstream release
Modified: trunk/libsexp-processor-ruby/debian/control
===================================================================
--- trunk/libsexp-processor-ruby/debian/control 2010-08-15 20:41:03 UTC (rev 5769)
+++ trunk/libsexp-processor-ruby/debian/control 2010-08-15 20:59:27 UTC (rev 5770)
@@ -5,7 +5,7 @@
Uploaders: Tobias Grimm <etobi at debian.org>
Build-Depends: debhelper (>> 6.0.0), ruby-pkg-tools (>= 0.17), cdbs, libsetup-ruby1.8
Build-Depends-Indep: ruby1.8, ruby1.9.1
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
Homepage: http://rubyforge.org/forum/forum.php?forum_id=34209
Package: libsexp-processor-ruby1.8
@@ -35,5 +35,5 @@
sexp_processor branches from ParseTree bringing all the generic sexp
processing tools with it. Sexp, SexpProcessor, Environment, etc.
.
- This package provide documentation and depends on the package
- containing the actual library for the default Ruby version.
+ This is a dummy package depending on the library for the current default
+ version of Ruby.
Modified: trunk/libsexp-processor-ruby/debian/rules
===================================================================
--- trunk/libsexp-processor-ruby/debian/rules 2010-08-15 20:41:03 UTC (rev 5769)
+++ trunk/libsexp-processor-ruby/debian/rules 2010-08-15 20:59:27 UTC (rev 5770)
@@ -16,7 +16,7 @@
build-stamp-1.9.1:
# Run unit tests:
- /usr/bin/ruby1.9.1 -w -I lib:test -e 'Dir["test/test_*.rb"].each{|test| require test}'
+ /usr/bin/ruby1.9.1 -w -I lib:test -e 'Dir["test/test_*.rb"].each{|test| require File.expand_path(test)}'
touch build-stamp-1.9.1
clean::
More information about the Pkg-ruby-extras-commits
mailing list