[DRE-commits] r4831 - trunk/libsexp-processor-ruby/debian

Tobias Grimm tiber-guest at alioth.debian.org
Sat Feb 27 19:54:14 UTC 2010


Author: tiber-guest
Date: 2010-02-27 19:54:11 +0000 (Sat, 27 Feb 2010)
New Revision: 4831

Modified:
   trunk/libsexp-processor-ruby/debian/changelog
   trunk/libsexp-processor-ruby/debian/control
   trunk/libsexp-processor-ruby/debian/rules
Log:
* Re-enabled Ruby 1.9.1 support (fixed the test runner)
* Install upstream changelog

Modified: trunk/libsexp-processor-ruby/debian/changelog
===================================================================
--- trunk/libsexp-processor-ruby/debian/changelog	2010-02-25 16:58:51 UTC (rev 4830)
+++ trunk/libsexp-processor-ruby/debian/changelog	2010-02-27 19:54:11 UTC (rev 4831)
@@ -1,3 +1,10 @@
+libsexp-processor-ruby (3.0.3-6) unstable; urgency=low
+
+  * Re-enabled Ruby 1.9.1 support (fixed the test runner)
+  * Install upstream changelog
+
+ -- Tobias Grimm <etobi at debian.org>  Sat, 27 Feb 2010 20:48:47 +0100
+
 libsexp-processor-ruby (3.0.3-5) unstable; urgency=low
 
   * Remove Sebastien Delafond from maintainer. Many thanks for all the

Modified: trunk/libsexp-processor-ruby/debian/control
===================================================================
--- trunk/libsexp-processor-ruby/debian/control	2010-02-25 16:58:51 UTC (rev 4830)
+++ trunk/libsexp-processor-ruby/debian/control	2010-02-27 19:54:11 UTC (rev 4831)
@@ -4,7 +4,7 @@
 Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 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
+Build-Depends-Indep: ruby1.8, ruby1.9.1
 Standards-Version: 3.8.4
 Homepage: http://rubyforge.org/forum/forum.php?forum_id=34209
 
@@ -19,6 +19,15 @@
  .
  This is the package for ruby 1.8
 
+Package: libsexp-processor-ruby1.9.1
+Architecture: all
+Depends: ruby1.9.1, ${misc:Depends}
+Description: brings all the generic sexp processing tools to ruby (ruby 1.9.1) 
+ sexp_processor branches from ParseTree bringing all the generic sexp
+ processing tools with it. Sexp, SexpProcessor, Environment, etc.
+ .
+ This is the package for ruby 1.9.1
+
 Package: libsexp-processor-ruby
 Architecture: all
 Depends: libsexp-processor-ruby1.8, ${misc:Depends}

Modified: trunk/libsexp-processor-ruby/debian/rules
===================================================================
--- trunk/libsexp-processor-ruby/debian/rules	2010-02-25 16:58:51 UTC (rev 4830)
+++ trunk/libsexp-processor-ruby/debian/rules	2010-02-27 19:54:11 UTC (rev 4831)
@@ -3,15 +3,21 @@
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
 
+DEB_INSTALL_CHANGELOGS_ALL = History.txt
+
 build/libsexp-processor-ruby1.8:: build-stamp-1.8
+build/libsexp-processor-ruby1.9.1:: build-stamp-1.9.1
 
-TEST_RUNNER = -w -I lib:test:debian -r minitest/unit \
-              -e 'Dir["test/test_*.rb"].each{|test| require test}'
-
 build-stamp-1.8:
 	# Run unit tests:
-	/usr/bin/ruby1.8 $(TEST_RUNNER)
+	/usr/bin/ruby1.8 -w -I lib:test:debian -r minitest/unit \
+	  -e 'Dir["test/test_*.rb"].each{|test| require test}'
 	touch build-stamp-1.8
 
+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}'
+	touch build-stamp-1.9.1
+
 clean::
 	rm -f build-stamp-*




More information about the Pkg-ruby-extras-commits mailing list