|
15 | 15 | # remove build dir, and everything generated by previous paver calls |
16 | 16 | # (included generated installers). Use with care ! |
17 | 17 | paver nuke |
18 | | - paver bootstrap && source boostrap/bin/activate |
| 18 | + paver bootstrap && source bootstrap/bin/activate |
19 | 19 | # Installing numpy is necessary to build the correct documentation (because |
20 | 20 | # of autodoc) |
21 | 21 | python setupegg.py install |
|
93 | 93 | superpack=Bunch(builddir="build-superpack"), |
94 | 94 | installers=Bunch(releasedir="release", |
95 | 95 | installersdir=os.path.join("release", "installers")), |
96 | | - doc=Bunch(doc_root="doc", |
| 96 | + doc=Bunch(doc_root="doc", |
97 | 97 | sdir=os.path.join("doc", "source"), |
98 | 98 | bdir=os.path.join("doc", "build"), |
99 | 99 | bdir_latex=os.path.join("doc", "build", "latex"), |
|
117 | 117 |
|
118 | 118 | if sys.platform =="darwin": |
119 | 119 | WINDOWS_PYTHON = { |
120 | | - "2.6": ["wine", "/Users/david/.wine/drive_c/Python26/python.exe"], |
121 | | - "2.5": ["wine", "/Users/david/.wine/drive_c/Python25/python.exe"] |
| 120 | + "2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"], |
| 121 | + "2.5": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python25/python.exe"] |
122 | 122 | } |
123 | 123 | WINDOWS_ENV = os.environ |
124 | 124 | WINDOWS_ENV["DYLD_FALLBACK_LIBRARY_PATH"] = "/usr/X11/lib:/usr/lib" |
|
134 | 134 | MAKENSIS = ["makensis"] |
135 | 135 | else: |
136 | 136 | WINDOWS_PYTHON = { |
137 | | - "2.6": ["wine", "/home/david/.wine/drive_c/Python26/python.exe"], |
138 | | - "2.5": ["wine", "/home/david/.wine/drive_c/Python25/python.exe"] |
| 137 | + "2.6": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python26/python.exe"], |
| 138 | + "2.5": ["wine", os.environ['HOME'] + "/.wine/drive_c/Python25/python.exe"] |
139 | 139 | } |
140 | 140 | WINDOWS_ENV = os.environ |
141 | 141 | MAKENSIS = ["wine", "makensis"] |
142 | 142 |
|
143 | 143 | # Start/end of the log (from git) |
144 | | -LOG_START = 'svn/tags/1.3.0' |
| 144 | +LOG_START = 'svn/tags/1.4.0' |
145 | 145 | LOG_END = 'master' |
146 | | -RELEASE_NOTES = 'doc/release/1.4.0-notes.rst' |
| 146 | +RELEASE_NOTES = 'doc/release/1.5.0-notes.rst' |
147 | 147 |
|
148 | 148 | #------------------- |
149 | 149 | # Windows installers |
@@ -208,7 +208,7 @@ def copy_bdist(arch): |
208 | 208 | copy_bdist("sse2") |
209 | 209 | bdist_wininst_arch(pyver, 'sse3') |
210 | 210 | copy_bdist("sse3") |
211 | | - |
| 211 | + |
212 | 212 | idirs = options.installers.installersdir |
213 | 213 | pyver = options.python_version |
214 | 214 | prepare_nsis_script(pyver, FULLVERSION) |
@@ -275,8 +275,8 @@ def bootstrap(options): |
275 | 275 |
|
276 | 276 | options.virtualenv.script_name = os.path.join(options.bootstrap_dir, |
277 | 277 | bscript) |
278 | | - options.virtualenv.no_site_packages = True |
279 | | - options.bootstrap.no_site_packages = True |
| 278 | + options.virtualenv.no_site_packages = False |
| 279 | + options.bootstrap.no_site_packages = False |
280 | 280 | call_task('paver.virtual.bootstrap') |
281 | 281 | sh('cd %s; %s %s' % (bdir, sys.executable, bscript)) |
282 | 282 |
|
|
0 commit comments