-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL_ALL.tcl
executable file
·154 lines (121 loc) · 3.46 KB
/
INSTALL_ALL.tcl
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/bin/bash
# Check and run with tclsh: \
if [[ -z "`type -p tclsh`" ]]; then echo You need tcl 8.5 to run this install and some of the tools.; exit 1; fi; exec tclsh "$0" "$@"
if { $argv == "" } {
puts "Usage: INSTALL_ALL.sh <bin_prefix>"
puts "(creates a symbolic link to all tools into the location of the repository)"
exit 1
}
proc prelocate {path {wd .}} {
if { $wd == "." } {
set wd [pwd]
} else {
set wd [file normalize $wd]
}
set norm [file normalize $path]
if { $norm == $wd } {
return .
}
set common 0
set norm_parts [file split $norm]
set b_parts [file split $wd]
set max [expr {max([llength $norm_parts],[llength $b_parts])}]
while { [lindex $norm_parts $common] == [lindex $b_parts $common] } {
incr common
if { $common == $max } {
break
}
}
set shift_norm_parts [lrange $norm_parts $common end]
set overhead [expr {[llength $b_parts]-$common}]
set uppath ""
#$mkv::debug "Adding up-dir overhead: $overhead"
if { $overhead > 0 } {
set uppath [lrepeat $overhead ..]
}
set rpath [file join {*}$uppath {*}$shift_norm_parts]
if { $rpath == "" } {
return .
}
#$mkv::debug "Norma-localize in '$wd' $norm: $rpath"
return $rpath
}
set prefix [lindex $argv 0]
if { ![file exists $prefix] } {
puts "Prefix directory doesn't exist: $prefix"
exit 1
}
set stack ""
while { [file type $prefix] == "link" } {
lappend stack $prefix
set WD [pwd]
cd [file dirname $prefix]
set fn [file tail $prefix]
set prefix [file normalize [file readlink $fn]]
cd $WD
if { $prefix in $stack } {
error "Prefix is a self-recursive link. Please supply a directory or a link to a directory."
}
}
if { ![file isdirectory $prefix] } {
puts "Prefix is not a directory: $prefix"
exit 1
}
set TOOLS [glob {[a-z]*}]
set WD [pwd]
cd $prefix
set ninstalled 0
set nuptodate 0
set noverwritten 0
set ndenied 0
foreach tool $TOOLS {
set path [file join $WD $tool]
set tarpath [prelocate $path [pwd]]
# This could be also a symbolic link to a nonexistent file.
# There's no way to check that in Tcl because [file exists] will
# always return 0 for such link, and there's also no [file islink].
# There's one method to check it: check if the file is a link, and
# catch the exception, which will be thrown when not even the link
# exists.
set notfound [catch {file type $tool} existtype]
set islink 0
set isdeadlink 0
if { !$notfound } {
# This will be set to true if the file is a symbolic link,
# which points to either EXISTING or NONEXIETING file.
set islink [expr {$existtype == "link"}]
}
#puts stderr "REPORT: '$tool' type '$existtype' failed:$notfound islink:$islink"
if { $islink || !$notfound } {
set type $existtype
# Check if this is a symbolic link that points to a correct location.
# If so, silently ignore it.
if { $type == "link" } {
set link [file readlink $tool]
if { $link == $tarpath } {
incr nuptodate
continue
}
set type "link->$link"
#puts "Link: $tool NOT TO $tarpath"
}
puts -nonewline "ERROR: the '$tool' tool ($type) already exists in the target directory. Overwrite? (y/N) "
flush stdout
set ans [gets stdin]
if { $ans == "" } {
set ans n
}
set ans [string tolower $ans]
if { [string index $ans 0] == "y" } {
file delete $tool
incr noverwritten
} else {
incr ndenied
}
} else {
incr ninstalled
}
file link -s $tool $tarpath
}
puts "INSTALLED $ninstalled files. $nuptodate were up-to-date, $noverwritten overwritten, $ndenied denied to overwrite."
# set ft=tcl