Dear maintainer,

I've prepared an NMU for xdotool (versioned as 1:3.20130111.1-3.1). The diff
is attached to this message.

As there wasn't any activity on the bug for over three weeks, I'm going to
upload this right away.

Regards.

diff -Nru xdotool-3.20130111.1/debian/changelog 
xdotool-3.20130111.1/debian/changelog
--- xdotool-3.20130111.1/debian/changelog       2013-05-05 19:27:43.000000000 
+0200
+++ xdotool-3.20130111.1/debian/changelog       2014-02-13 02:14:17.000000000 
+0100
@@ -1,3 +1,11 @@
+xdotool (1:3.20130111.1-3.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Use any available Ruby interpreter to run the tests.
+    (Closes: #723648)
+
+ -- Christian Hofstaedtler <z...@debian.org>  Thu, 13 Feb 2014 02:13:46 +0100
+
 xdotool (1:3.20130111.1-3) unstable; urgency=low
 
   * libxdo-dev now Depends: libx11-dev
diff -Nru xdotool-3.20130111.1/debian/control 
xdotool-3.20130111.1/debian/control
--- xdotool-3.20130111.1/debian/control 2013-05-05 19:20:30.000000000 +0200
+++ xdotool-3.20130111.1/debian/control 2014-02-13 02:12:39.000000000 +0100
@@ -18,9 +18,9 @@
  openbox,
  xfonts-base,
  procps,
- ruby1.8,
+ ruby,
+ ruby-test-unit,
  doxygen
-Build-Conflicts: ruby1.9.1
 Standards-Version: 3.9.4
 Homepage: http://www.semicomplete.com/blog/projects/xdotool/
 Vcs-Git: git://lair.fifthhorseman.net/~dkg/xdotool
diff -Nru 
xdotool-3.20130111.1/debian/patches/02_use_relative_path_in_ruby_require.patch 
xdotool-3.20130111.1/debian/patches/02_use_relative_path_in_ruby_require.patch
--- 
xdotool-3.20130111.1/debian/patches/02_use_relative_path_in_ruby_require.patch  
    1970-01-01 01:00:00.000000000 +0100
+++ 
xdotool-3.20130111.1/debian/patches/02_use_relative_path_in_ruby_require.patch  
    2014-02-13 02:12:13.000000000 +0100
@@ -0,0 +1,195 @@
+Description: use relative paths when requiring xdo_test_helper.rb
+ The current directory is not in the $LOAD_PATH of more recent versions of the
+ Ruby interpreter (ruby1.9.1 and ruby2.0). So the location of the file must be
+ indicated.
+Author: Cédric Boutillier <bou...@debian.org>
+Origin: vendor
+Last-Update: 2013-09-18
+
+--- a/t/test_basic.rb
++++ b/t/test_basic.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolBasicTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_chaining.rb
++++ b/t/test_chaining.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolChainingTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_behave_screen_edge.rb
++++ b/t/test_cmd_behave_screen_edge.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandBehaveScreenEdgeTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_exec.rb
++++ b/t/test_cmd_exec.rb
+@@ -3,7 +3,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandExecTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_getwindowname.rb
++++ b/t/test_cmd_getwindowname.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandGetWindowPidTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_getwindowpid.rb
++++ b/t/test_cmd_getwindowpid.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandGetWindowPidTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_key.rb
++++ b/t/test_cmd_key.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandKeyTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_windowfocus.rb
++++ b/t/test_cmd_windowfocus.rb
+@@ -3,7 +3,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandWindowFocusTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_windowmap.rb
++++ b/t/test_cmd_windowmap.rb
+@@ -3,7 +3,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandWindowMapTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_windowminimize.rb
++++ b/t/test_cmd_windowminimize.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandWindowMinimizeTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_windowmove.rb
++++ b/t/test_cmd_windowmove.rb
+@@ -3,7 +3,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandWindowMoveTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_cmd_windowsize.rb
++++ b/t/test_cmd_windowsize.rb
+@@ -3,7 +3,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolCommandWindowSizeTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_mousemove.rb
++++ b/t/test_mousemove.rb
+@@ -1,7 +1,7 @@
+ #!/usr/bin/env ruby
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolMouseMoveTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_script.rb
++++ b/t/test_script.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ require "tempfile"
+ 
+ class XdotoolScriptTests < Test::Unit::TestCase
+--- a/t/test_search.rb
++++ b/t/test_search.rb
+@@ -2,7 +2,7 @@
+ #
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolSearchTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_typing.rb
++++ b/t/test_typing.rb
+@@ -3,7 +3,7 @@
+ 
+ require "test/unit"
+ require "tempfile"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolTypingTests < Test::Unit::TestCase
+   include XdoTestHelper
+--- a/t/test_window.rb
++++ b/t/test_window.rb
+@@ -1,7 +1,7 @@
+ #!/usr/bin/env ruby
+ 
+ require "test/unit"
+-require "xdo_test_helper"
++require "./xdo_test_helper"
+ 
+ class XdotoolWindowTests < Test::Unit::TestCase
+   include XdoTestHelper
diff -Nru xdotool-3.20130111.1/debian/patches/series 
xdotool-3.20130111.1/debian/patches/series
--- xdotool-3.20130111.1/debian/patches/series  2013-05-05 19:26:53.000000000 
+0200
+++ xdotool-3.20130111.1/debian/patches/series  2014-02-13 02:12:56.000000000 
+0100
@@ -1 +1,2 @@
 01_fix_xdotool_segfault.patch
+02_use_relative_path_in_ruby_require.patch


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to