File tree Expand file tree Collapse file tree 3 files changed +4
-12
lines changed
tools/numpy-macosx-installer Expand file tree Collapse file tree 3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 24
24
Building a simple (no-superpack) windows installer from wine
25
25
============================================================
26
26
27
- It assumes that blas/lapack are in c:\local\lib inside drive_c. Build python
28
- 2.5 and python 2.6 installers.
27
+ It assumes that blas/lapack are in c:\local\lib inside drive_c.
29
28
30
29
paver bdist_wininst_simple
31
30
@@ -437,12 +436,9 @@ def _build_mpkg(pyver):
437
436
ldflags = "-undefined dynamic_lookup -bundle -arch i386 -arch x86_64 -Wl,-search_paths_first"
438
437
else :
439
438
ldflags = "-undefined dynamic_lookup -bundle -arch i386 -arch ppc -Wl,-search_paths_first"
440
- ldflags += " -L%s" % os .path .join (os .path .dirname (__file__ ), "build" )
441
439
442
- if pyver == "2.5" :
443
- sh ("CC=gcc-4.0 LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags , " " .join (MPKG_PYTHON [pyver ])))
444
- else :
445
- sh ("LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags , " " .join (MPKG_PYTHON [pyver ])))
440
+ ldflags += " -L%s" % os .path .join (os .path .dirname (__file__ ), "build" )
441
+ sh ("LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags , " " .join (MPKG_PYTHON [pyver ])))
446
442
447
443
@task
448
444
def simple_dmg ():
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ paver bdist_superpack -p 3.2
51
51
paver bdist_superpack -p 3.1
52
52
paver bdist_superpack -p 2.7
53
53
paver bdist_superpack -p 2.6
54
- paver bdist_superpack -p 2.5
55
54
56
55
57
56
# --------------------------------------------
@@ -60,8 +59,6 @@ paver bdist_superpack -p 2.5
60
59
# export MACOSX_DEPLOYMENT_TARGET=10.3
61
60
# paver dmg -p 2.6
62
61
# paver dmg -p 2.7 # 32-bit version
63
- # export CC=/usr/bin/gcc-4.0 # necessary on 10.6, not sure about 10.5
64
- # paver dmg -p 2.5
65
62
66
63
67
64
paver write_release_and_log
@@ -70,7 +67,6 @@ paver write_release_and_log
70
67
# -------------------------------------------------------
71
68
# Build basic (no SSE) Windows installers to put on PyPi
72
69
# -------------------------------------------------------
73
- paver bdist_wininst_simple -p 2.5
74
70
paver bdist_wininst_simple -p 2.6
75
71
paver bdist_wininst_simple -p 2.7
76
72
paver bdist_wininst_simple -p 3.1
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ DMG_DIR="$(cd $DMG_DIRNAME > /dev/null; pwd)"
58
58
DMG_NAME=" $( basename " $DMG_PATH " ) "
59
59
DMG_TEMP_NAME=" $DMG_DIR /rw.${DMG_NAME} "
60
60
SRC_FOLDER=" $( cd " $2 " > /dev/null; pwd) "
61
- DMG_SIZE=12m
61
+ DMG_SIZE=16m
62
62
test -z " $VOLUME_NAME " && VOLUME_NAME=" $( basename " $DMG_PATH " .dmg) "
63
63
64
64
# AUX_PATH="$(cd "$(dirname $0)"; pwd)/support"
You can’t perform that action at this time.
0 commit comments