~ubuntu-branches/ubuntu/utopic/modules/utopic

« back to all changes in this revision

Viewing changes to debian/patches/fix_paths.patch

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2012-11-04 14:51:25 UTC
  • Revision ID: package-import@ubuntu.com-20121104145125-7rkfwhixbvmkuny9
Tags: 3.2.9c-3
Fix broken bash completion. Thanks to Alexy Brodkin for patch.
Closes: #691521 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Description: Hard-code debian-type paths, as otherwise strange Capitalised paths are used.
2
2
Author: Alastair McKinstry <mckinstry@debian.org>
3
 
Last-Updated: 2012-04-15
 
3
Last-Updated: 2012-11-04
4
4
Forwarded: not-needed
5
5
 
6
6
Index: modules-3.2.9c/init/bash.in
7
7
===================================================================
8
 
--- modules-3.2.9c.orig/init/bash.in    2012-04-13 22:37:40.000000000 +0100
9
 
+++ modules-3.2.9c/init/bash.in 2012-04-13 23:29:01.000000000 +0100
 
8
--- modules-3.2.9c.orig/init/bash.in    2012-05-05 20:00:44.000000000 +0100
 
9
+++ modules-3.2.9c/init/bash.in 2012-11-04 14:38:07.000000000 +0000
10
10
@@ -7,11 +7,11 @@
11
11
 @VERSIONING@fi
12
12
 @VERSIONING@export MODULE_VERSION_STACK
24
24
 if [ "${LOADEDMODULES:-}" = "" ]; then
25
25
Index: modules-3.2.9c/init/sh.in
26
26
===================================================================
27
 
--- modules-3.2.9c.orig/init/sh.in      2012-04-13 22:37:40.000000000 +0100
28
 
+++ modules-3.2.9c/init/sh.in   2012-04-13 23:29:01.000000000 +0100
 
27
--- modules-3.2.9c.orig/init/sh.in      2012-05-05 20:00:44.000000000 +0100
 
28
+++ modules-3.2.9c/init/sh.in   2012-11-04 14:38:07.000000000 +0000
29
29
@@ -7,10 +7,10 @@
30
30
 @VERSIONING@fi
31
31
 @VERSIONING@export MODULE_VERSION_STACK
42
42
 if [ "${LOADEDMODULES:-}" = "" ]; then
43
43
Index: modules-3.2.9c/init/csh.in
44
44
===================================================================
45
 
--- modules-3.2.9c.orig/init/csh.in     2012-04-13 22:37:40.000000000 +0100
46
 
+++ modules-3.2.9c/init/csh.in  2012-04-13 23:30:24.000000000 +0100
 
45
--- modules-3.2.9c.orig/init/csh.in     2012-05-05 20:00:44.000000000 +0100
 
46
+++ modules-3.2.9c/init/csh.in  2012-11-04 14:38:07.000000000 +0000
47
47
@@ -9,8 +9,8 @@
48
48
 @VERSIONING@   setenv MODULE_VERSION           "@VERSION@"
49
49
 @VERSIONING@   setenv MODULE_VERSION_STACK     "@VERSION@"
74
74
   setenv MODULEPATH `sed -n 's/[       #].*$//; /./H; $ { x; s/^\n//; s/\n/:/g; p; }' ${MODULESHOME}/init/.modulespath`
75
75
Index: modules-3.2.9c/init/zsh.in
76
76
===================================================================
77
 
--- modules-3.2.9c.orig/init/zsh.in     2012-04-13 22:37:40.000000000 +0100
78
 
+++ modules-3.2.9c/init/zsh.in  2012-04-13 23:29:01.000000000 +0100
 
77
--- modules-3.2.9c.orig/init/zsh.in     2012-05-05 20:00:44.000000000 +0100
 
78
+++ modules-3.2.9c/init/zsh.in  2012-11-04 14:38:07.000000000 +0000
79
79
@@ -7,10 +7,10 @@
80
80
 @VERSIONING@fi
81
81
 @VERSIONING@export MODULE_VERSION_STACK
92
92
 if [ "${LOADEDMODULES:-}" = "" ]; then
93
93
Index: modules-3.2.9c/init/cmake.in
94
94
===================================================================
95
 
--- modules-3.2.9c.orig/init/cmake.in   2012-04-13 22:37:40.000000000 +0100
96
 
+++ modules-3.2.9c/init/cmake.in        2012-04-13 23:29:01.000000000 +0100
 
95
--- modules-3.2.9c.orig/init/cmake.in   2012-05-05 20:00:44.000000000 +0100
 
96
+++ modules-3.2.9c/init/cmake.in        2012-11-04 14:38:07.000000000 +0000
97
97
@@ -6,9 +6,9 @@
98
98
 @VERSIONING@endif()
99
99
 
117
117
   file(STRINGS "$ENV{MODULESHOME}/init/.modulespath" cmi_mp1)
118
118
Index: modules-3.2.9c/init/perl.pm.in
119
119
===================================================================
120
 
--- modules-3.2.9c.orig/init/perl.pm.in 2012-04-13 22:37:40.000000000 +0100
121
 
+++ modules-3.2.9c/init/perl.pm.in      2012-04-13 23:29:01.000000000 +0100
 
120
--- modules-3.2.9c.orig/init/perl.pm.in 2012-05-05 20:00:44.000000000 +0100
 
121
+++ modules-3.2.9c/init/perl.pm.in      2012-11-04 14:38:07.000000000 +0000
122
122
@@ -7,14 +7,14 @@
123
123
 
124
124
 sub module {
139
139
        open(IN, "$ENV{'MODULESHOME'}/init/.modulespath") || die "cannot open '.modulespath' file: $!\n";
140
140
Index: modules-3.2.9c/init/python.py.in
141
141
===================================================================
142
 
--- modules-3.2.9c.orig/init/python.py.in       2012-04-13 22:37:40.000000000 +0100
143
 
+++ modules-3.2.9c/init/python.py.in    2012-04-13 23:29:01.000000000 +0100
 
142
--- modules-3.2.9c.orig/init/python.py.in       2012-05-05 20:00:44.000000000 +0100
 
143
+++ modules-3.2.9c/init/python.py.in    2012-11-04 14:38:07.000000000 +0000
144
144
@@ -5,7 +5,7 @@
145
145
 @VERSIONING@   os.environ['MODULE_VERSION'] = '@VERSION@'
146
146
 @VERSIONING@else:
163
163
 
164
164
Index: modules-3.2.9c/init/ruby.rb.in
165
165
===================================================================
166
 
--- modules-3.2.9c.orig/init/ruby.rb.in 2012-04-13 22:37:40.000000000 +0100
167
 
+++ modules-3.2.9c/init/ruby.rb.in      2012-04-13 23:29:01.000000000 +0100
 
166
--- modules-3.2.9c.orig/init/ruby.rb.in 2012-05-05 20:00:44.000000000 +0100
 
167
+++ modules-3.2.9c/init/ruby.rb.in      2012-11-04 14:38:07.000000000 +0000
168
168
@@ -4,7 +4,7 @@
169
169
 @VERSIONING@else
170
170
 @VERSIONING@  ENV['MODULE_VERSION_STACK'] = ENV['MODULE_VERSION']
190
190
   end
191
191
Index: modules-3.2.9c/init/bash_completion.in
192
192
===================================================================
193
 
--- modules-3.2.9c.orig/init/bash_completion.in 2012-04-13 22:31:52.000000000 +0100
194
 
+++ modules-3.2.9c/init/bash_completion.in      2012-04-13 23:31:01.000000000 +0100
 
193
--- modules-3.2.9c.orig/init/bash_completion.in 2012-05-05 20:00:44.000000000 +0100
 
194
+++ modules-3.2.9c/init/bash_completion.in      2012-11-04 14:50:49.000000000 +0000
195
195
@@ -2,8 +2,8 @@
196
196
 # Bash commandline completion (bash 3.0 and above) for Modules @VERSION@
197
197
 #
198
198
 _module_avail() {
199
199
-@VERSIONING@   @BASEPREFIX@/Modules/@VERSION@/bin/modulecmd bash -t avail 2>&1 | sed '
200
200
-@NOTVERSIONING@        @bindir@/modulecmd bash -t avail 2>&1 | sed '
201
 
+@VERSIONING@   /usr/share/modules/@VERSION@/bin/modulecmd bash -t avail 2>&1 | sed '
 
201
+@VERSIONING@   modulecmd bash -t avail 2>&1 | sed '
202
202
+@NOTVERSIONING@        /usr/bin/modulecmd bash -t avail 2>&1 | sed '
203
203
                /:$/d;
204
204
                /:ERROR:/d;