Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/listen/files/
Date: Sat, 15 Aug 2020 06:19:24
Message-Id: 1597472356.6707bb69775530f985a6bd48d9867fe83fa6efb9.graaff@gentoo
1 commit: 6707bb69775530f985a6bd48d9867fe83fa6efb9
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Aug 11 18:36:00 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 15 06:19:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6707bb69
7
8 dev-ruby/listen: remove unused patch(es)
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
13
14 dev-ruby/listen/files/listen-3.1.5-ruby26.patch | 33 -------------------------
15 1 file changed, 33 deletions(-)
16
17 diff --git a/dev-ruby/listen/files/listen-3.1.5-ruby26.patch b/dev-ruby/listen/files/listen-3.1.5-ruby26.patch
18 deleted file mode 100644
19 index f90ab1ed213..00000000000
20 --- a/dev-ruby/listen/files/listen-3.1.5-ruby26.patch
21 +++ /dev/null
22 @@ -1,33 +0,0 @@
23 -From 2908365366792ac3ba010fa32bc3be2beaed451a Mon Sep 17 00:00:00 2001
24 -From: Samuel Williams <samuel.williams@××××××××××××××××.nz>
25 -Date: Sun, 16 Dec 2018 11:32:45 +1300
26 -Subject: [PATCH] Use raw Pathname to fix Linux specs.
27 -
28 ----
29 - lib/listen/adapter/linux.rb | 2 +-
30 - spec/lib/listen/adapter/linux_spec.rb | 12 +-----------
31 - 2 files changed, 2 insertions(+), 12 deletions(-)
32 -
33 -diff --git a/spec/lib/listen/adapter/linux_spec.rb b/spec/lib/listen/adapter/linux_spec.rb
34 -index d77f0c0..da48319 100644
35 ---- a/spec/lib/listen/adapter/linux_spec.rb
36 -+++ b/spec/lib/listen/adapter/linux_spec.rb
37 -@@ -10,17 +10,7 @@
38 - end
39 -
40 - if linux?
41 -- let(:dir1) do
42 -- instance_double(
43 -- Pathname,
44 -- 'dir1',
45 -- to_s: '/foo/dir1',
46 -- cleanpath: real_dir1
47 -- )
48 -- end
49 --
50 -- # just so cleanpath works in above double
51 -- let(:real_dir1) { instance_double(Pathname, 'dir1', to_s: '/foo/dir1') }
52 -+ let(:dir1) {Pathname.new("/foo/dir1")}
53 -
54 - let(:config) { instance_double(Listen::Adapter::Config) }
55 - let(:queue) { instance_double(Queue) }