forked from godiard/help-activity
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·114 lines (83 loc) · 3.39 KB
/
setup.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env python
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import os
import zipfile
import tarfile
from fnmatch import fnmatch
from sugar3.activity import bundlebuilder
"""
We reimplement the packager, to add to the .xo file the html files
because they are not in git
"""
INCLUDE_DIRS = ['activity', 'html', 'images', 'source', 'locale']
IGNORE_FILES = ['.gitignore', '*.pyc', '*~', '*.patch', '*.diff']
IGNORE_DIRS = ['_images']
def list_files(base_dir, filter_directories=False):
if filter_directories:
include_dirs = INCLUDE_DIRS
else:
include_dirs = None
ignore_files = IGNORE_FILES
result = []
base_dir = os.path.abspath(base_dir)
for root, dirs, files in os.walk(base_dir):
if ignore_files:
for pattern in ignore_files:
files = [f for f in files if not fnmatch(f, pattern)]
rel_path = root[len(base_dir) + 1:]
for f in files:
result.append(os.path.join(rel_path, f))
if root == base_dir:
n = 0
while n < len(dirs):
directory = dirs[n]
if include_dirs is not None and \
directory not in include_dirs:
dirs.remove(directory)
else:
n = n + 1
else:
for directory in dirs:
if directory in IGNORE_DIRS:
dirs.remove(directory)
return result
class XOHelpPackager(bundlebuilder.Packager):
def __init__(self, builder):
bundlebuilder.Packager.__init__(self, builder.config)
self.builder = builder
self.builder.build_locale()
self.package_path = os.path.join(self.config.dist_dir,
self.config.xo_name)
def package(self):
bundle_zip = zipfile.ZipFile(self.package_path, 'w',
zipfile.ZIP_DEFLATED)
for f in list_files('./', True):
bundle_zip.write(os.path.join(self.config.source_dir, f),
os.path.join(self.config.bundle_root_dir, f))
bundle_zip.close()
class SourceHelpPackager(bundlebuilder.Packager):
def __init__(self, config):
bundlebuilder.Packager.__init__(self, config)
self.package_path = os.path.join(self.config.dist_dir,
self.config.tar_name)
def package(self):
tar = tarfile.open(self.package_path, 'w:bz2')
for f in list_files('./', True):
tar.add(os.path.join(self.config.source_dir, f),
os.path.join(self.config.tar_root_dir, f))
tar.close()
bundlebuilder.XOPackager = XOHelpPackager
bundlebuilder.SourcePackager = SourceHelpPackager
bundlebuilder.start()