Subject: Collected Debian patches for roodi
Author: David Suarez <david.sephirot@gmail.com>

The roodi package is maintained in Git rather than maintaining
patches as separate files, and separating the patches doesn't seem to
be worth the effort.  They are therefore all included in this single
Debian patch.

For full commit history and separated commits, see the packaging Git
repository.

--- roodi-5.0.0.orig/bin/roodi
+++ roodi-5.0.0/bin/roodi
@@ -1,7 +1,5 @@
 #!/usr/bin/env ruby
 
-$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
-
 require 'roodi'
 
 
--- roodi-5.0.0.orig/bin/roodi-describe
+++ roodi-5.0.0/bin/roodi-describe
@@ -1,6 +1,5 @@
 #!/usr/bin/env ruby
 
-$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
 require 'roodi'
 
 roodi = Roodi::Core::Runner.new
--- roodi-5.0.0.orig/lib/roodi/core/runner.rb
+++ roodi-5.0.0/lib/roodi/core/runner.rb
@@ -8,6 +8,7 @@ require 'roodi/core/sexp'
 module Roodi
   module Core
     class Runner
+
       attr_writer :config
       attr_reader :files_checked
 
@@ -21,7 +22,7 @@ module Roodi
       end
 
       def roodi_gem_config
-        File.join(File.dirname(__FILE__), "..", "..", "..", "roodi.yml")
+        File.join("/etc", "roodi.yml")
       end
 
       def project_config
--- roodi-5.0.0.orig/spec/spec_helper.rb
+++ roodi-5.0.0/spec/spec_helper.rb
@@ -1,6 +1,6 @@
 $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
 require 'roodi'
 require 'rspec'
-require 'coveralls'
-Coveralls.wear!
+#require 'coveralls'
+#Coveralls.wear!
 
