Codebase list i3-gaps / b2c56f0
Use the correct shebang for perl scripts Fixes lintian warnings. Raphaël Hertzog 3 years ago
3 changed file(s) with 87 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
22 Subject: Disable a failing test due to source package not being git
33 controlled
44
5 Forwarded: not-needed
56 ---
67 testcases/t/193-ipc-version.t | 4 +++-
78 1 file changed, 3 insertions(+), 1 deletion(-)
0 From: =?utf-8?q?Rapha=C3=ABl_Hertzog?= <[email protected]>
1 Date: Wed, 22 Jul 2020 12:26:10 +0200
2 Subject: Use correct shebang for perl scripts
3
4 Forwarded: not-needed
5 ---
6 contrib/dump-asy.pl | 2 +-
7 contrib/gtk-tree-watch.pl | 2 +-
8 contrib/i3-wsbar | 2 +-
9 contrib/per-workspace-layout.pl | 2 +-
10 i3-dmenu-desktop | 2 +-
11 i3-migrate-config-to-v4 | 2 +-
12 i3-save-tree | 2 +-
13 7 files changed, 7 insertions(+), 7 deletions(-)
14
15 diff --git a/contrib/dump-asy.pl b/contrib/dump-asy.pl
16 index 5af4c72..b1af5b8 100755
17 --- a/contrib/dump-asy.pl
18 +++ b/contrib/dump-asy.pl
19 @@ -1,4 +1,4 @@
20 -#!/usr/bin/env perl
21 +#!/usr/bin/perl
22 # vim:ts=4:sw=4:expandtab
23
24 use strict;
25 diff --git a/contrib/gtk-tree-watch.pl b/contrib/gtk-tree-watch.pl
26 index 30cc64f..8e8ed09 100755
27 --- a/contrib/gtk-tree-watch.pl
28 +++ b/contrib/gtk-tree-watch.pl
29 @@ -1,4 +1,4 @@
30 -#!/usr/bin/env perl
31 +#!/usr/bin/perl
32 # vim:ts=4:sw=4:expandtab
33 # renders the layout tree using asymptote
34
35 diff --git a/contrib/i3-wsbar b/contrib/i3-wsbar
36 index a485c15..6b99b93 100755
37 --- a/contrib/i3-wsbar
38 +++ b/contrib/i3-wsbar
39 @@ -1,4 +1,4 @@
40 -#!/usr/bin/env perl
41 +#!/usr/bin/perl
42 # vim:ts=4:sw=4:expandtab:ft=perl
43 # © 2010 Michael Stapelberg, see LICENSE for license information
44
45 diff --git a/contrib/per-workspace-layout.pl b/contrib/per-workspace-layout.pl
46 index 4a2b4b9..90b1343 100644
47 --- a/contrib/per-workspace-layout.pl
48 +++ b/contrib/per-workspace-layout.pl
49 @@ -1,4 +1,4 @@
50 -#!/usr/bin/env perl
51 +#!/usr/bin/perl
52 # vim:ts=4:sw=4:expandtab
53 # © 2012 Michael Stapelberg
54 # Licensed under BSD license, see https://github.com/i3/i3/blob/next/LICENSE
55 diff --git a/i3-dmenu-desktop b/i3-dmenu-desktop
56 index 5c34b2b..920e3c5 100755
57 --- a/i3-dmenu-desktop
58 +++ b/i3-dmenu-desktop
59 @@ -1,4 +1,4 @@
60 -#!/usr/bin/env perl
61 +#!/usr/bin/perl
62 # vim:ts=4:sw=4:expandtab
63 #
64 # © 2012 Michael Stapelberg
65 diff --git a/i3-migrate-config-to-v4 b/i3-migrate-config-to-v4
66 index 5da4e26..4a90558 100755
67 --- a/i3-migrate-config-to-v4
68 +++ b/i3-migrate-config-to-v4
69 @@ -1,4 +1,4 @@
70 -#!/usr/bin/env perl
71 +#!/usr/bin/perl
72 # vim:ts=4:sw=4:expandtab
73 #
74 # script to migrate an old config file (i3 < 4.0) to the new format (>= 4.0)
75 diff --git a/i3-save-tree b/i3-save-tree
76 index da5e6de..7f41fa0 100755
77 --- a/i3-save-tree
78 +++ b/i3-save-tree
79 @@ -1,4 +1,4 @@
80 -#!/usr/bin/env perl
81 +#!/usr/bin/perl
82 # vim:ts=4:sw=4:expandtab
83 #
84 # © 2013 Michael Stapelberg
00 Disable-a-failing-test-due-to-source-package-not-being-gi.patch
1 Use-correct-shebang-for-perl-scripts.patch