This repository has been archived by the owner on Oct 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpavement.py
191 lines (164 loc) · 5.51 KB
/
pavement.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import os
import subprocess
import sys
import shutil
import sphinx
import setuptools
#import distutils
import numpy.distutils
try:
from paver.tasks import VERSION as _PVER
if not _PVER >= '1.0':
raise RuntimeError("paver version >= 1.0 required (was %s)" % _PVER)
except ImportError, e:
raise RuntimeError("paver version >= 1.0 required")
import paver
import paver.doctools
from paver.easy import Bunch, options, task, needs, dry, sh
from paver.setuputils import setup
import common
setup(
name=common.DISTNAME,
namespace_packages=['scikits'],
packages=setuptools.find_packages(),
install_requires=common.INSTALL_REQUIRE,
version=common.VERSION,
include_package_data=True,
)
options(
sphinx=Bunch(builddir="build", sourcedir="src"),
virtualenv=Bunch(script_name="install/bootstrap.py")
)
def macosx_version():
st = subprocess.Popen(["sw_vers"], stdout=subprocess.PIPE)
out = st.stdout.readlines()
import re
ver = re.compile("ProductVersion:\s+([0-9]+)\.([0-9]+)\.([0-9]+)")
for i in out:
m = ver.match(i)
if m:
return m.groups()
def mpkg_name():
maj, min = macosx_version()[:2]
pyver = ".".join([str(i) for i in sys.version_info[:2]])
return "scikits.talkbox-%s-py%s-macosx%s.%s.mpkg" % (common.build_fverstring(),
pyver, maj, min)
def tarball_name():
pyver = ".".join([str(i) for i in sys.version_info[:2]])
return "scikits.talkbox-%s.tar.gz" % (common.build_fverstring())
VPYEXEC = "install/bin/python"
@task
@needs('paver.virtual.bootstrap')
def bootstrap():
"""create virtualenv in ./install"""
# XXX: fix the mkdir
sh('mkdir -p install')
sh('cd install; %s bootstrap.py' % sys.executable)
@task
@needs('bootstrap')
def test_install():
"""Install the package into the venv."""
sh('%s setup.py install' % VPYEXEC)
@task
def build_version_files(options):
from common import write_version
write_version(os.path.join("scikits", "talkbox", "version.py"))
if os.path.exists(os.path.join("docs", "src")):
write_version(os.path.join("docs", "src", "talkbox_version.py"))
@task
@needs('paver.sdist')
def test_sdist():
"""Test the tarball builds."""
sh('cd dist; tar -xzf %s' % tarball_name())
sh('cd dist/scikits.talkbox-%s; python setup.py build' % common.build_fverstring())
@task
def clean():
for d in ['scikits.talkbox.egg-info', 'build', 'dist', 'install']:
paver.path.path(d).rmtree()
@task
#@needs(['latex', 'html'])
def dmg():
builddir = path("build") / "dmg"
builddir.rmtree()
builddir.mkdir()
# Copy mpkg into image source
mpkg_n = mpkg_name()
mpkg = path("dist") / mpkg_n
mpkg.copytree(builddir / mpkg_n)
# Copy docs into image source
doc_root = path(builddir) / "docs"
html_docs = path("docs") / "html"
pdf_docs = path("docs") / "pdf" / "talkbox.pdf"
html_docs.copytree(doc_root / "html")
pdf_docs.copy(doc_root / "talkbox.pdf")
# Build the dmg
image_name = "talkbox-%s.dmg" % common.build_fverstring()
image = path(image_name)
image.remove()
cmd = ["hdiutil", "create", image_name, "-srcdir", str(builddir)]
subprocess.Popen(cmd)
#options.setup.package_data =
# setuputils.find_package_data("scikits/talkbox",
# package="scikits/talkbox",
# only_in_packages=False)
if paver.doctools.has_sphinx:
def _latex_paths():
"""look up the options that determine where all of the files are."""
opts = options
docroot = paver.path.path(opts.get('docroot', 'docs'))
if not docroot.exists():
raise BuildFailure("Sphinx documentation root (%s) does not exist."
% docroot)
builddir = docroot / opts.get("builddir", ".build")
builddir.mkdir()
srcdir = docroot / opts.get("sourcedir", "")
if not srcdir.exists():
raise BuildFailure("Sphinx source file dir (%s) does not exist"
% srcdir)
latexdir = builddir / "latex"
latexdir.mkdir()
return Bunch(locals())
@task
@needs('build_version_files')
def latex():
"""Build Audiolab's documentation and install it into
scikits/talkbox/docs"""
paths = _latex_paths()
sphinxopts = ['', '-b', 'latex', paths.srcdir, paths.latexdir]
dry("sphinx-build %s" % (" ".join(sphinxopts),), sphinx.main, sphinxopts)
def build_latex():
subprocess.call(["make", "all-pdf"], cwd=paths.latexdir)
dry("Build pdf doc", build_latex)
destdir = paver.path.path("docs") / "pdf"
destdir.rmtree()
destdir.makedirs()
pdf = paths.latexdir / "talkbox.pdf"
pdf.move(destdir)
@task
@needs('build_version_files', 'paver.doctools.html')
def html_build():
"""Build Audiolab's html documentation."""
pass
@task
@needs(['html_build'])
def html():
"""Build Audiolab's documentation and install it into
scikits/talkbox/docs"""
builtdocs = paver.path.path("docs") / options.sphinx.builddir / "html"
destdir = paver.path.path("docs") / "html"
destdir.rmtree()
builtdocs.move(destdir)
@task
@needs(['html', 'latex'])
def doc():
pass
@task
@needs('setuptools.command.sdist')
def sdist(options):
"""Build tarball."""
pass
@task
@needs(['doc', 'pavement.sdist'])
def release_sdist(options):
"""Build doc + tarball."""
pass