-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.py
82 lines (64 loc) · 1.87 KB
/
build.py
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
# vim: set nosmartindent et ts=4 sw=4 :
import os
import re
import sys
from contextlib import contextmanager as ctx
from glob import glob
from zipfile import ZipFile, ZIP_STORED, ZIP_DEFLATED
resources = [
"install.rdf",
"chrome.manifest",
"*.xhtml",
"*.dtd", "*/*.dtd",
"*.css",
"*.gif",
"about.js",
"LICENSE.txt"
]
destination = "about-addons-memory.xpi"
try:
from xpisign.context import ZipFileMinorCompression as Minor
except ImportError:
from warnings import warn
warn("No optimal compression available; install xpisign")
@ctx
def Minor():
yield
def get_js_requires(scripts):
known = set()
scripts = list(scripts)
for script in scripts:
with open(script) as sp:
for line in sp:
m = re.search(r"(?:r|lazyR)equire\((['\"])(.+?)\1", line)
if not m:
continue
m = m.group(2) + ".js"
if m in known:
continue
known.add(m)
scripts += m,
return set(scripts)
def get_files(resources):
for r in get_js_requires(("bootstrap.js", "loader.jsm")):
yield r
for r in resources:
if os.path.isfile(r):
yield r
continue
for g in glob(r):
yield g
class ZipOutFile(ZipFile):
def __init__(self, zfile):
ZipFile.__init__(self, zfile, "w", ZIP_DEFLATED)
def __enter__(self):
return self
def __exit__(self, type, value, traceback):
self.close()
if os.path.exists(destination):
print >>sys.stderr, destination, "is in the way"
sys.exit(1)
with Minor(), ZipOutFile(destination) as zp:
for f in sorted(get_files(resources), key=str.lower):
compress_type = ZIP_STORED if f.endswith(".png") else ZIP_DEFLATED
zp.write(f, compress_type=compress_type)