forked from storaged-project/blivet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
96 lines (75 loc) · 3.11 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
#!/usr/bin/python3
from distutils.core import setup
from distutils import filelist
from distutils.command.sdist import sdist
import subprocess
import sys
import glob
import os
import re
# this is copied straight from distutils.filelist.findall , but with os.stat()
# replaced with os.lstat(), so S_ISLNK() can actually tell us something.
def findall(dirname=os.curdir):
from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK
file_list = []
stack = [dirname]
pop = stack.pop
push = stack.append
while stack:
dirname = pop()
names = os.listdir(dirname)
for name in names:
if dirname != os.curdir: # avoid the dreaded "./" syndrome
fullname = os.path.join(dirname, name)
else:
fullname = name
# Avoid excess stat calls -- just one will do, thank you!
stat = os.lstat(fullname)
mode = stat[ST_MODE]
if S_ISREG(mode):
file_list.append(fullname)
elif S_ISDIR(mode) and not S_ISLNK(mode):
push(fullname)
return file_list
filelist.findall = findall
AM_RE = r'(^.. automodule::.+?(?P<mo>^\s+?:member-order:.+?\n)?.+?:\n)\n(?(mo)NEVER)'
def generate_api_docs():
if subprocess.call(["sphinx-apidoc", "-o", "doc", "blivet"]):
sys.stderr.write("failed to generate API docs")
def add_member_order_option(files):
""" Add an automodule option to preserve source code member order. """
for fn in files:
buf = open(fn).read()
amended = re.sub(AM_RE,
r'\1 :member-order: bysource\n\n',
buf,
flags=re.DOTALL | re.MULTILINE) # pylint: disable=no-member
open(fn, "w").write(amended)
# Extend the sdist command
class blivet_sdist(sdist):
def run(self):
# Build the .mo files
subprocess.check_call(['make', '-C', 'po'])
# Run the parent command
sdist.run(self)
def make_release_tree(self, base_dir, files):
# Run the parent command first
sdist.make_release_tree(self, base_dir, files)
# Run translation-canary in release mode to remove any bad translations
sys.path.append('translation-canary')
from translation_canary.translated import testSourceTree # pylint: disable=import-error
testSourceTree(base_dir, releaseMode=True)
data_files = []
if os.environ.get("READTHEDOCS", False):
generate_api_docs()
rst_files = glob.glob("doc/*.rst")
add_member_order_option(rst_files)
api_doc_files = rst_files + ["doc/conf.py"]
data_files.append(("docs/blivet", api_doc_files))
setup(name='blivet', version='2.0.2',
cmdclass={"sdist": blivet_sdist},
description='Python module for system storage configuration',
author='David Lehman', author_email='[email protected]',
url='http://github.com/storaged-project/blivet',
data_files=data_files,
packages=['blivet', 'blivet.devices', 'blivet.devicelibs', 'blivet.events', 'blivet.formats', 'blivet.populator', 'blivet.static_data', 'blivet.tasks', 'blivet.populator.helpers'])