]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame_incremental - check-unused-files.py
- keep parallel downloads to 1; reset release to 1
[packages/rpm-build-tools.git] / check-unused-files.py
... / ...
CommitLineData
1#!/usr/bin/python
2
3import subprocess
4import sys
5import os
6import fnmatch
7
8if len(sys.argv) == 2:
9 spec = sys.argv[1]
10else:
11 # try autodetecting
12 spec = "%s.spec" % os.path.basename(os.getcwd())
13
14if not os.path.isfile(spec):
15 print >> sys.stderr, "%s: %s doesn't exist!" % (sys.argv[0], spec)
16 sys.exit(1)
17
18dir = os.path.dirname(spec)
19if dir == '':
20 dir = '.'
21
22p = subprocess.Popen(['rpm-specdump', spec], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
23(out, err) = p.communicate(None)
24p.wait()
25if err:
26 print >> sys.stderr, "%s: %s" % (sys.argv[0], err)
27 sys.exit(1)
28
29files = []
30
31for l in out.split('\n'):
32 data = l.split()
33 if len(data) != 3 or data[0] != 's':
34 continue
35 file = os.path.basename(data[2])
36 files.append(file)
37
38obsolete = []
39
40# files to exclude
41exclude = ['log.*', '.#*', '*~', '*.orig', '*.sw?']
42
43# read .cvsignore, distfiles files are filled there
44if os.path.isfile('%s/.cvsignore' % dir):
45 f = open('%s/.cvsignore' % dir , 'r')
46 for l in f.readlines():
47 exclude.append(l.rstrip())
48
49def blacklisted(file):
50 if file == os.path.basename(spec):
51 return True
52
53 if file in [ '.', '..', 'CVS', 'TODO']:
54 return True
55
56 if os.path.isdir(file):
57 return True
58
59 for pat in exclude:
60 if fnmatch.fnmatch(file, pat):
61 return True
62
63 return False
64
65
66for file in os.listdir(dir):
67 file = os.path.basename(file)
68 if blacklisted(file):
69 continue
70
71 if file not in files:
72 print "Obsolete file: %s" % file
73 obsolete.append(file)
74
75if obsolete:
76 print
77 print "cvs rm -f %s" % " ".join(obsolete)
78 print "cvs commit -m '- drop obsolete files' %s" % " ".join(obsolete)
This page took 0.047583 seconds and 4 git commands to generate.