dl_cleanup: Add linux and gcc to blacklist
SVN-Revision: 19082
This commit is contained in:
parent
4a2465a295
commit
274e372e4c
1 changed files with 17 additions and 10 deletions
|
@ -81,12 +81,14 @@ versionRegex = (
|
||||||
)
|
)
|
||||||
|
|
||||||
blacklist = (
|
blacklist = (
|
||||||
re.compile(r"wl_apsta.*"),
|
("linux", re.compile(r"linux-.*")),
|
||||||
re.compile(r"boost.*"),
|
("gcc", re.compile(r"gcc-.*")),
|
||||||
re.compile(r".*\.fw"),
|
("boost", re.compile(r"boost.*")),
|
||||||
re.compile(r".*\.arm"),
|
("wl_apsta", re.compile(r"wl_apsta.*")),
|
||||||
re.compile(r".*\.bin"),
|
(".fw", re.compile(r".*\.fw")),
|
||||||
re.compile(r"RT\d+_Firmware.*"),
|
(".arm", re.compile(r".*\.arm")),
|
||||||
|
(".bin", re.compile(r".*\.bin")),
|
||||||
|
("rt-firmware", re.compile(r"RT\d+_Firmware.*")),
|
||||||
)
|
)
|
||||||
|
|
||||||
class EntryParseError(Exception): pass
|
class EntryParseError(Exception): pass
|
||||||
|
@ -132,14 +134,15 @@ def usage():
|
||||||
print "Usage: " + sys.argv[0] + " [OPTIONS] <path/to/dl>"
|
print "Usage: " + sys.argv[0] + " [OPTIONS] <path/to/dl>"
|
||||||
print ""
|
print ""
|
||||||
print " -d|--dry-run Do a dry-run. Don't delete any files"
|
print " -d|--dry-run Do a dry-run. Don't delete any files"
|
||||||
|
print " -B|--show-blacklist Show the blacklist and exit"
|
||||||
|
|
||||||
def main(argv):
|
def main(argv):
|
||||||
global opt_dryrun
|
global opt_dryrun
|
||||||
|
|
||||||
try:
|
try:
|
||||||
(opts, args) = getopt.getopt(argv[1:],
|
(opts, args) = getopt.getopt(argv[1:],
|
||||||
"hd",
|
"hdB",
|
||||||
[ "help", "dry-run", ])
|
[ "help", "dry-run", "show-blacklist", ])
|
||||||
if len(args) != 1:
|
if len(args) != 1:
|
||||||
raise getopt.GetoptError()
|
raise getopt.GetoptError()
|
||||||
except getopt.GetoptError:
|
except getopt.GetoptError:
|
||||||
|
@ -152,14 +155,18 @@ def main(argv):
|
||||||
return 0
|
return 0
|
||||||
if o in ("-d", "--dry-run"):
|
if o in ("-d", "--dry-run"):
|
||||||
opt_dryrun = True
|
opt_dryrun = True
|
||||||
|
if o in ("-B", "--show-blacklist"):
|
||||||
|
for (name, regex) in blacklist:
|
||||||
|
print name
|
||||||
|
return 0
|
||||||
|
|
||||||
# Create a directory listing and parse the file names.
|
# Create a directory listing and parse the file names.
|
||||||
entries = []
|
entries = []
|
||||||
for filename in os.listdir(directory):
|
for filename in os.listdir(directory):
|
||||||
if filename == "." or filename == "..":
|
if filename == "." or filename == "..":
|
||||||
continue
|
continue
|
||||||
for black in blacklist:
|
for (name, regex) in blacklist:
|
||||||
if black.match(filename):
|
if regex.match(filename):
|
||||||
if opt_dryrun:
|
if opt_dryrun:
|
||||||
print filename, "is blacklisted"
|
print filename, "is blacklisted"
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue