Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/launchy/files/
Date: Mon, 31 Oct 2016 12:10:00
Message-Id: 1477915154.9abe53391ea4f24219ac50e80ae68f0dd18e05f4.monsieurp@gentoo
1 commit: 9abe53391ea4f24219ac50e80ae68f0dd18e05f4
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 26 16:18:58 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 11:59:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9abe5339
7
8 dev-ruby/launchy: remove unused patch.
9
10 Closes: https://github.com/gentoo/gentoo/pull/2416
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 .../files/launchy-2.3.0-drop-failing-test.patch | 24 ----------------------
15 1 file changed, 24 deletions(-)
16
17 diff --git a/dev-ruby/launchy/files/launchy-2.3.0-drop-failing-test.patch b/dev-ruby/launchy/files/launchy-2.3.0-drop-failing-test.patch
18 deleted file mode 100644
19 index 3304a0a..00000000
20 --- a/dev-ruby/launchy/files/launchy-2.3.0-drop-failing-test.patch
21 +++ /dev/null
22 @@ -1,24 +0,0 @@
23 -diff --git a/spec/applications/browser_spec.rb b/spec/applications/browser_spec.rb
24 -index 8cfa8e7..3886ce3 100644
25 ---- a/spec/applications/browser_spec.rb
26 -+++ b/spec/applications/browser_spec.rb
27 -@@ -12,19 +12,6 @@ describe Launchy::Application::Browser do
28 - ENV.delete( 'KDE_FULL_SESSION' )
29 - end
30 -
31 -- { 'windows' => 'start /b' ,
32 -- 'darwin' => '/usr/bin/open',
33 -- 'cygwin' => 'cmd /C start /b',
34 --
35 -- # when running these tests on a linux box, this test will fail
36 -- 'linux' => nil }.each do |host_os, cmdline|
37 -- it "when host_os is '#{host_os}' the appropriate 'app_list' method is called" do
38 -- Launchy.host_os = host_os
39 -- browser = Launchy::Application::Browser.new
40 -- browser.app_list.first.must_equal cmdline
41 -- end
42 -- end
43 --
44 - %w[ linux windows darwin cygwin ].each do |host_os|
45 - it "the BROWSER environment variable overrides any host defaults on '#{host_os}'" do
46 - ENV['BROWSER'] = "my_special_browser --new-tab '%s'"