File: script-shebang-line.patch

package info (click to toggle)
gromacs 2025.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 287,228 kB
  • sloc: xml: 3,718,478; cpp: 654,796; ansic: 75,282; python: 20,471; sh: 3,471; perl: 2,218; yacc: 644; fortran: 397; lisp: 265; makefile: 171; lex: 125; awk: 68; csh: 39
file content (27 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Description: Replace "#!/usr/bin/env perl" with "/usr/bin/perl"
 Adjust script shebang lines in compliance with Policy 10.4.
Author: Nicholas Breen
Forwarded: not-needed
Last-Update: 2023-11-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: gromacs/scripts/demux.pl
===================================================================
--- gromacs.orig/scripts/demux.pl
+++ gromacs/scripts/demux.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 use warnings;
 # in: input filename
Index: gromacs/scripts/xplor2gmx.pl
===================================================================
--- gromacs.orig/scripts/xplor2gmx.pl
+++ gromacs/scripts/xplor2gmx.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 use strict;
 use warnings;