Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2102885

Browse files
committed
more fixes for osx
svn path=/branches/v0_99_maint/; revision=7330
1 parent 100ad8b commit 2102885

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

doc/faq/installing_faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ Installer.app, or an binary OSX egg, which you can install via
298298
setuptools easy_install.
299299

300300
The mkpg installer will have a "zip" extension, and will have a name
301-
like file:`matplotlib-0.99.0.rc1-py2.5-macosx10.5.zip` depending on
301+
like file:`matplotlib-0.99.0.rc1-py2.5-macosx10.5_mpkg.zip` depending on
302302
the python, matplotlib, and OSX versions. You need to unzip this file
303303
using either the "unzip" command on OSX, or simply double clicking on
304304
it to run StuffIt Expander. When you double click on the resultant

release/osx/Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
PYTHON=python2.6
1+
PYVERSION=2.6
2+
PYTHON=python${PYVERSION}
23
SRCDIR=${PWD}
34
ZLIBVERSION=1.2.3
45
PNGVERSION=1.2.33
@@ -90,14 +91,14 @@ installers:
9091
bdist_mpkg &&\
9192
${PYTHON} setupegg.py bdist_egg &&\
9293
cd dist && \
93-
zip -ro matplotlib-${MPLVERSION}-py2.5-macosx10.5.zip matplotlib-${MPLVERSION}-py2.5-macosx10.5.mpkg
94+
zip -ro matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5_mpkg.zip matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.mpkg
9495

9596
upload:
9697
rm -rf upload &&\
9798
mkdir upload &&\
9899
cp matplotlib-${MPLVERSION}.tar.gz upload/ &&\
99-
cp matplotlib-${MPLVERSION}/dist/matplotlib-${MPLVERSION}_r0-py2.5-macosx-10.3-fat.egg upload/matplotlib-${MPLVERSION}-macosx-py2.5.egg &&\
100-
cp matplotlib-${MPLVERSION}/dist/matplotlib-${MPLVERSION}-py2.5-macosx10.5.zip upload/matplotlib-${MPLVERSION}-py2.5-mpkg.zip&&\
100+
cp matplotlib-${MPLVERSION}/dist/matplotlib-${MPLVERSION}_r0-py${PYVERSION}-macosx-10.3-fat.egg upload/matplotlib-${MPLVERSION}-macosx-py${PYVERSION}.egg &&\
101+
cp matplotlib-${MPLVERSION}/dist/matplotlib-${MPLVERSION}-py${PYVERSION}-macosx10.5.zip upload/matplotlib-${MPLVERSION}-py${PYVERSION}-mpkg.zip&&\
101102
scp upload/* [email protected]:uploads/
102103

103104
all:

0 commit comments

Comments
 (0)