]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - check-unused-files.py
Merge rpm-build.sh file moved from rpm-build-macros
[packages/rpm-build-tools.git] / check-unused-files.py
1 #!/usr/bin/python
2
3 import subprocess
4 import sys
5 import os
6 import fnmatch
7
8 if len(sys.argv) == 2:
9     spec = sys.argv[1]
10 else:
11     # try autodetecting
12     spec = "%s.spec" % os.path.basename(os.getcwd())
13
14 if not os.path.isfile(spec):
15     print >> sys.stderr, "%s: %s doesn't exist!" % (sys.argv[0], spec)
16     sys.exit(1)
17
18 dir = os.path.dirname(spec)
19 if dir == '':
20     dir = '.'
21
22 p = subprocess.Popen(['rpm-specdump', spec], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
23 (out, err) = p.communicate(None)
24 p.wait()
25 if err:
26     print >> sys.stderr, "%s: %s" % (sys.argv[0], err)
27     sys.exit(1)
28
29 files = []
30
31 for 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
38 obsolete = []
39
40 # files to exclude
41 exclude = ['log.*', '.#*', '*~', '*.orig', '*.sw?']
42
43 # read .cvsignore, distfiles files are filled there
44 if 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
49 def cvs_entries(file):
50     f = open('%s/CVS/Entries' % dir , 'r')
51     files = []
52     for l in f.readlines():
53         if l[0] != '/':
54             continue
55         parts = l.split('/')
56         files.append(parts[1])
57     return files
58 cvsfiles = cvs_entries(dir)
59
60 def blacklisted(file):
61     if file == os.path.basename(spec):
62         return True
63
64     if file in [ '.', '..', 'CVS', 'TODO']:
65         return True
66
67     if os.path.isdir(file):
68         return True
69
70     for pat in exclude:
71         if fnmatch.fnmatch(file, pat):
72             return True
73
74     return False
75
76 for file in os.listdir(dir):
77     file = os.path.basename(file)
78     if blacklisted(file):
79         continue
80
81     if not file in cvsfiles:
82         print "Not in cvs: %s" % file
83         continue
84
85     if file not in files:
86         print "Obsolete file: %s" % file
87         obsolete.append(file)
88
89 if obsolete:
90     print
91     print "cvs rm -f %s" % " ".join(obsolete)
92     print "cvs commit -m '- drop obsolete files' %s" % " ".join(obsolete)
This page took 0.037771 seconds and 4 git commands to generate.