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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
#!/bin/sh
#
# Copyright (c) 2009
# Dominic Fandrey <kamikaze@bsdforen.de>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
readonly name=distviper
readonly version=1.1
verbose=
demo=
quiet=
interactive=
# Determine portsdir
portsdir="$(make -V PORTSDIR -f /usr/share/mk/bsd.port.mk)"
if [ ! -d "$portsdir" ]; then
echo "The PORTSDIR '$portsdir' is missing."
exit 1
fi
# Determine distdir
distdir="$(make -V DISTDIR -f /usr/share/mk/bsd.port.mk)"
if [ ! -d "$distdir" ]; then
echo "The DISTDIR '$distdir' is missing."
exit 2
fi
# Extract file from distinfo.
extractFileCmd="sed -E -e 's/^[^(]*\(//1' -e 's/\).*$//1'"
# Display help.
printHelp() {
echo "$name v$version
usage: $name [-d] [-h] [-i] [-q] [-v] [fast|thorough]"
}
#
# Handle parameters.
#
# @param $1
# The parameter to handle.
# @param $verbose
# Is set to create verbose output.
# @param $demo
# Is set to only print the output that would occur.
# @param $quiet
# Is set to act without creating any output.
# @return
# Returns 0 if the processed parameter was a valid parameter,
# returns 1 if not.
#
readParams() {
case "$1" in
"-d" | "--demo")
demo=1
return 0
;;
"-h" | "--help")
printHelp
exit 0
;;
"-i" | "--interactive")
interactive=-i
return 0
;;
"-q" | "--quiet")
quiet=1
return 0
;;
"-v" | "--verbose")
verbose=1
return 0
;;
-? | --*)
return 1
;;
-*)
# Split parameters.
# first parameter
readParams "${1%${1#-?}}" || return $?
# remaining parameters
readParams "-${1#-?}"
return $?
;;
*)
return 1
;;
esac
}
#
# This algorithm outputs the distfiles of installed ports. If a port downloads
# a distfile through depending on the fetch target of another port, it
# is missed, in case that other port is not installed as well.
#
# @param $portsdir
# The direcotry holding the ports tree.
#
getDistFiles_fast() {
for port in $(pkg_info -qoa); {
if [ -e "$portsdir/$port/distinfo" ]; then
eval "$extractFileCmd '$portsdir/$port/distinfo'" | uniq
fi
}
}
#
# This algorithm outputs the distfiles of all ports.
#
# @param $portsdir
# The direcotry holding the ports tree.
#
getDistFiles_thorough() {
find -H "$portsdir" -type f -name distinfo | \
eval "xargs $extractFileCmd" | uniq
}
# The current parameter processing stage.
stage=params
# The selected algorithm for finding distfiles to keep.
algorithm=thorough
# Parse the command line parameters.
for command; {
# Read parameters until an unknown one is encountered.
# In that case switch into command stage.
if [ "$stage" = "params" ]; then
if ! readParams "$command"; then
stage=command
fi
fi
# All parameters have been read, now either nothing or a mode
# command should occur.
if [ "$stage" = "command" ]; then
stage=end
case "$command" in
thorough | fast)
algorithm="$command"
;;
-*)
echo "$name: Unknown parameter '$command'" \
"encountered, exiting." 1>&2
return 1
;;
*)
echo "$name: Unknown command '$command'" \
"encountered, exiting." 1>&2
return 2
;;
esac
# Skip everything following and continue with the next
# argument.
continue
fi
# Still being in the loop at this stage means unexpected parameters
# have been encountered.
if [ "$stage" = "end" ]; then
echo "$name: The command '$command' is not allowed here, only" \
"one command at a time is permitted." 1>&2
return 3
fi
}
# Check for inprobable options.
if [ -n "$interactive" -a -n "$demo" ]; then
echo "$name: Interactive mode is ignored in demo mode." 1>&2
fi
test -n "$verbose" && echo "Create a list of up to date distfiles to keep" \
"using a $algorithm algorithm:"
# Create the list of files to keep, using the selected algorithm.
keepFiles="$(eval "getDistFiles_$algorithm" | sort -u)"
if [ -n "$verbose" ]; then
echo "$(($(echo "$keepFiles" | wc -l))) files recorded for keeping."
echo "Search and delete outdated distfiles:"
fi
# Files before deletion.
filesCount="$(($(find -H "$distdir" -type f|wc -l)))"
filesDelete=0
# Seek and destroy files not in the $keepFiles list.
for file in $(find -H "$distdir" -type f); {
file="${file#$distdir/}"
if (echo "$keepFiles" | grep -qx "$file"); then
test -n "$verbose" && echo "keep $file"
else
test -z "$quiet" && echo "delete $file"
test -z "$demo" && rm $interactive "$distdir/$file"
filesDelete=$(($filesDelete + 1))
fi
}
# The number of deleted files
filesDeleted="$(($filesCount - $(find -H "$distdir" -type f|wc -l)))"
test -z "$demo" && find -H -d "$distdir" -type d -exec rmdir \{} \; 2> /dev/null
if [ -n "$verbose" ]; then
echo "$filesDelete files were suggested for deletion."
echo "$filesDeleted files of $filesCount have been removed."
fi
return 0
|