blob: b95c08e23e7eaf7ff23d36d8a1185f3138f9449d (
plain)
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
|
#!/usr/bin/env python
# Ultra-optimized Meta-Manifest writing.
# (c) 2017 Michał Górny
# Licensed under the terms of 2-clause BSD license
import datetime
import glob
import io
import os
import os.path
import subprocess
import sys
sys.path.insert(0, os.path.dirname(__file__))
import gen_fast_manifest
def manifest_dir_generator():
with io.open('profiles/categories', 'r') as f:
categories = [x.strip() for x in f]
for c in categories:
# all package directories
for d in glob.glob(os.path.join(c, '*/')):
yield d
# category directory
yield c
# md5-cache for the category
yield os.path.join('metadata/md5-cache', c)
# few special metadata directories
yield 'metadata/glsa'
yield 'metadata/md5-cache'
yield 'metadata/news'
# top-level dirs
yield 'metadata'
yield 'eclass'
yield 'licenses'
yield 'profiles'
# finally, the whole repo
yield '.'
def gen_metamanifest(top_dir):
os.chdir(top_dir)
alldirs = manifest_dir_generator()
# pre-populate IGNORE entries
with io.open('metadata/Manifest', 'wb') as f:
f.write(b'''IGNORE timestamp
IGNORE timestamp.chk
IGNORE timestamp.commit
IGNORE timestamp.x
''')
with io.open('Manifest', 'wb') as f:
f.write(b'''IGNORE distfiles
IGNORE local
IGNORE packages
''')
# call the fast-gen routine
for path in alldirs:
gen_fast_manifest.gen_manifest(path)
# write timestamp
with io.open('Manifest', 'ab') as f:
f.write(datetime.datetime.utcnow().strftime('TIMESTAMP %Y-%m-%dT%H:%M:%SZ\n').encode('ascii'))
if __name__ == '__main__':
if len(sys.argv) != 2:
print('Usage: {} <top-directory>'.format(sys.argv[0]))
sys.exit(1)
gen_metamanifest(sys.argv[1])
|